:root {
    --color-primary: #1a3a5c;
    --color-secondary: #2d6a9f;
    --color-accent: #e8a54b;
    --color-dark: #0f1c2e;
    --color-light: #f7f9fc;
    --color-muted: #6b7c93;
    --color-border: #d4dce8;
    --color-success: #2e7d5a;
    --color-bg-alt: #eef2f7;
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --max-width: 1280px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.ad-disclosure {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-align: center;
    padding: 8px 16px;
}

.site-header {
    background-color: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--color-secondary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color var(--transition);
}

.nav-cta:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    margin: 6px 0;
    transition: var(--transition);
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
    background-color: var(--color-primary);
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-dark);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary:hover {
    background-color: #d4942f;
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-secondary);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--color-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: #fff;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--color-bg-alt);
}

.section-dark {
    background-color: var(--color-dark);
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-dark .section-header h2 {
    color: #fff;
}

.section-header p {
    font-size: 18px;
    color: var(--color-muted);
    max-width: 640px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.split-section {
    display: flex;
    align-items: stretch;
}

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

.split-content {
    flex: 1;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    background-color: var(--color-muted);
    min-height: 500px;
    position: relative;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.split-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.split-content p {
    font-size: 17px;
    color: var(--color-muted);
    margin-bottom: 24px;
}

.split-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.split-content ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-dark);
}

.split-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

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

.service-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px 32px;
    flex: 1 1 calc(33.333% - 32px);
    max-width: 400px;
    min-width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    height: 180px;
    margin: -40px -32px 24px -32px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

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

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

.service-card p {
    font-size: 15px;
    color: var(--color-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-muted);
}

.testimonials-wrapper {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    flex: 1 1 calc(50% - 32px);
    max-width: 560px;
    min-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    overflow: hidden;
}

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

.testimonial-author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.testimonial-author-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 24px;
    background-color: var(--color-secondary);
    color: #fff;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.85;
}

.contact-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background-color: #fff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    transition: border-color var(--transition);
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn-primary {
    min-width: 200px;
}

.cta-section {
    text-align: center;
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #fff;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.site-footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 24px 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto 48px;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

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

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-col ul a:hover {
    color: var(--color-accent);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    font-size: 13px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
    background-color: var(--color-bg-alt);
    padding: 32px;
    border-radius: 8px;
    margin-top: 48px;
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: #fff;
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content p a {
    color: var(--color-accent);
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.cookie-accept {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.cookie-accept:hover {
    background-color: #d4942f;
}

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background-color: var(--color-primary);
    color: #fff;
    padding: 100px 24px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.content-page {
    padding: 80px 24px;
}

.content-page .container {
    max-width: 800px;
}

.content-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 48px;
    margin-bottom: 20px;
}

.content-page h2:first-of-type {
    margin-top: 0;
}

.content-page h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-page p {
    margin-bottom: 20px;
    color: var(--color-muted);
}

.content-page ul,
.content-page ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-page li {
    margin-bottom: 8px;
    color: var(--color-muted);
}

.thanks-container {
    text-align: center;
    padding: 120px 24px;
    max-width: 640px;
    margin: 0 auto;
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.thanks-container h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.thanks-container p {
    font-size: 18px;
    color: var(--color-muted);
    margin-bottom: 32px;
}

.contact-info-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 48px;
}

.contact-info-item {
    text-align: center;
    flex: 1 1 250px;
    max-width: 320px;
}

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

.contact-info-item p {
    font-size: 15px;
    color: var(--color-muted);
}

.about-values {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.value-item {
    flex: 1 1 280px;
    text-align: center;
    padding: 32px;
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-secondary);
}

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

.value-item p {
    font-size: 15px;
    color: var(--color-muted);
}

.service-details {
    margin-top: 80px;
}

.service-detail-item {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
    align-items: center;
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-detail-image {
    flex: 1;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

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

.service-detail-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--color-muted);
    margin-bottom: 16px;
}

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

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

    .hero-content {
        padding: 60px 32px;
    }

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

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

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

    .split-content {
        padding: 48px 24px;
    }

    .split-image {
        min-height: 350px;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 40px;
    }

    .service-detail-item,
    .service-detail-item:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--color-border);
        gap: 16px;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

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

    .contact-form-wrapper {
        padding: 32px 24px;
    }

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