* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 20px 24px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-cookie {
    background: #2ecc71;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #27ae60;
}

.btn-cookie-alt {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-alt:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e8ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-split {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 13px;
    color: #7f8c8d;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    flex-direction: row;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    background: #dfe6ed;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
}

.intro-section {
    padding: 100px 0;
    background: #ffffff;
}

.split-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.split-layout-reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 60px;
}

.content-block {
    flex: 1;
}

.content-block h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.content-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.image-block {
    flex: 1;
    background: #f0f3f6;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.features-asymmetric {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-card.offset-left {
    margin-right: 80px;
}

.feature-card.offset-right {
    margin-left: 80px;
}

.feature-card img {
    width: 320px;
    height: 240px;
    object-fit: cover;
    border-radius: 6px;
    background: #e8ecef;
}

.feature-card h4 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-preview {
    padding: 100px 0;
    background: #ffffff;
}

.split-content {
    display: flex;
    flex-direction: row;
    gap: 80px;
}

.text-side {
    flex: 1.2;
}

.text-side h3 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.text-side p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.link-arrow {
    display: inline-block;
    margin-top: 16px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.2s;
}

.link-arrow:hover {
    color: #2980b9;
    transform: translateX(4px);
}

.stats-side {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.stat-number {
    font-size: 44px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #7f8c8d;
}

.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h3 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
}

.form-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
}

.recruitment-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.form-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-bottom: 24px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #dfe6ed;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
}

.trust-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.trust-section h3 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-layout {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 0 32px;
}

.footer-layout {
    display: flex;
    flex-direction: row;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p,
.footer-col a {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 900px;
    margin: 16px auto 0;
}

.page-hero {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.page-hero h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 19px;
    color: #5a6c7d;
}

.services-detailed {
    padding: 80px 0;
    background: #ffffff;
}

.service-item-split {
    display: flex;
    flex-direction: row;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-item-split.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background: #f0f3f6;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-details p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 18px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-top: 20px;
}

.cta-section {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-section h3 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.about-content {
    padding: 80px 0;
    background: #ffffff;
}

.values-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.values-section h3 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.value-item {
    flex: 1;
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-item h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.method-section {
    padding: 100px 0;
    background: #ffffff;
}

.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-section h3 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-stats {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 48px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.stat-block .number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-block .label {
    font-size: 15px;
    color: #7f8c8d;
    text-align: center;
}

.commitment-section {
    padding: 100px 0;
    background: #ffffff;
}

.commitment-section h3 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.commitment-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.contact-content {
    padding: 80px 0;
    background: #ffffff;
}

.contact-split {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.info-note {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-top: 32px;
}

.info-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
}

.contact-visual {
    flex: 1;
    background: #f0f3f6;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.directions-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.directions-section h3 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.directions-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.direction-item {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.direction-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.direction-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-hero {
    padding: 100px 0;
    background: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 24px;
}

.next-steps {
    margin: 48px 0;
    text-align: left;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.next-steps h3 {
    font-size: 26px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
}

.steps-list li {
    counter-increment: steps;
    padding: 16px 0 16px 48px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    border-left: 2px solid #e8ecef;
}

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: -16px;
    top: 12px;
    width: 32px;
    height: 32px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.thanks-cta {
    margin: 48px 0;
}

.thanks-cta p {
    font-size: 17px;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: #ffffff;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

.back-link {
    display: inline-block;
    margin-top: 32px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.back-link:hover {
    color: #2980b9;
    transform: translateX(-4px);
}

.legal-page {
    padding: 80px 0;
    background: #ffffff;
}

.legal-page h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.update-date {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 48px;
}

.legal-page h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-split,
    .split-layout,
    .split-layout-reverse,
    .split-content,
    .contact-split,
    .service-item-split,
    .testimonials-layout,
    .values-grid,
    .directions-content,
    .team-stats,
    .footer-layout {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        padding: 60px 32px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .section-title,
    .page-hero h2 {
        font-size: 32px;
    }

    .feature-card {
        flex-direction: column;
    }

    .feature-card.offset-left,
    .feature-card.offset-right {
        margin: 0;
    }

    .feature-card img {
        width: 100%;
        height: 200px;
    }

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }
}