:root {
    --primary: #1a5f7a;
    --primary-dark: #0d3d4d;
    --secondary: #e8a838;
    --accent: #c23a3a;
    --bg-light: #f9f7f4;
    --bg-dark: #1e2a32;
    --text-dark: #2c3e50;
    --text-light: #6b7c8a;
    --white: #ffffff;
    --border: #d4d8dc;
    --shadow: rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

.header {
    background: var(--white);
    box-shadow: 0 2px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.ad-disclosure {
    background: var(--bg-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px;
    background: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 480px;
}

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

.btn-secondary {
    background: var(--secondary);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #d4922e;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.section {
    padding: 80px 0;
}

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

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

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

.section-header h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.split-row {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.split-row:last-child {
    margin-bottom: 0;
}

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

.split-col {
    flex: 1;
}

.split-image {
    background-color: var(--border);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.split-image img {
    width: 100%;
    height: 100%;
}

.split-text h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 200px;
    background-color: var(--border);
    overflow: hidden;
}

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

.service-body {
    padding: 24px;
}

.service-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
}

.feature-item {
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
    padding: 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.testimonial-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px var(--shadow);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 64px 48px;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    margin: 40px 0;
}

.cta-banner h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-banner p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 24px var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 64px 0 24px;
}

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 20px 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin-bottom: 0;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.page-header {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.content-page h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.content-page h3 {
    font-size: 1.25rem;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.content-page p {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.content-page ul {
    margin: 16px 0;
    padding-left: 24px;
}

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

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

.contact-info {
    flex: 1 1 300px;
}

.contact-info-item {
    margin-bottom: 24px;
}

.contact-info-item h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info-item p {
    color: var(--text-light);
}

.contact-form-wrap {
    flex: 1 1 400px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.thanks-content {
    max-width: 500px;
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.disclaimer {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    margin: 32px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

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

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

    .hero-content h1 {
        font-size: 2.25rem;
    }

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

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

    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 4px 12px var(--shadow);
    }

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

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

    .footer-grid {
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 600px) {
    .section {
        padding: 48px 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .hero-content h1 {
        font-size: 1.85rem;
    }

    .form-container {
        padding: 24px;
    }

    .cta-banner {
        padding: 40px 24px;
    }

    .cta-banner h3 {
        font-size: 1.5rem;
    }
}
