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

:root {
    --primary-color: #1a4d7a;
    --primary-dark: #0f3554;
    --accent-color: #2980b9;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.main-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.ad-label {
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-light);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background: var(--primary-color);
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background: var(--primary-dark);
}

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

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.split-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.insight-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 220px;
    background: var(--bg-light);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: var(--primary-dark);
}

.service-card p {
    padding: 0 24px;
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 24px 16px;
}

.btn-service {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 14px 24px;
    margin: 0 24px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 15px;
}

.btn-service:hover {
    background: var(--primary-color);
}

.trust-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.testimonial-section {
    padding: 80px 0;
    background: var(--primary-dark);
    color: white;
}

.testimonial {
    text-align: center;
}

.testimonial p {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

.form-section {
    padding: 100px 0;
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
}

.contact-form {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.service-display {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-color);
}

.service-display p {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.disclaimer-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.disclaimer {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-col a:hover {
    color: white;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 122, 0.98);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    font-size: 14px;
}

.btn-accept {
    background: white;
    color: var(--primary-color);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.9;
}

.page-hero {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.lead {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 100px 0;
}

.values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-dark);
}

.value-item {
    margin-bottom: 50px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.team-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-dark);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 17px;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.team-member {
    flex: 1;
    min-width: 260px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.role {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: var(--accent-color);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.services-detail-section {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-price {
    margin-bottom: 24px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.info-item {
    margin-bottom: 36px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    text-align: center;
    padding: 40px;
}

.map-overlay p {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-dark);
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 32px;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.service-confirmation {
    margin: 40px 0;
}

.selected-service-box {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.selected-service-box h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-dark);
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.step-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.update-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-page li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-dark);
}

.cookie-table td {
    font-size: 15px;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-text {
        padding: 60px 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-image {
        min-height: 400px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .main-nav {
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .section-header-center h2,
    .values-section h2,
    .team-section h2,
    .faq-section h2 {
        font-size: 28px;
    }

    .split-content h2 {
        font-size: 28px;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 24px;
    }
}