:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #ed8936;
    --secondary-dark: #dd6b20;
    --text-dark: #1a202c;
    --text-muted: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-dark: #1a365d;
    --border: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.1);
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

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

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

/* Header */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.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);
}

.ad-disclosure {
    background: var(--bg-light);
    padding: 8px 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    gap: 32px;
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Split */
.hero-split {
    display: flex;
    min-height: 70vh;
}

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

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

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

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

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

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

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

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

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Split Sections */
.split-section {
    display: flex;
    min-height: 500px;
}

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

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

.split-image {
    flex: 1;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-text {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Services Grid */
.services-section {
    padding: 80px 24px;
    background: var(--bg-light);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-image {
    height: 180px;
    background-color: var(--primary-light);
    overflow: hidden;
}

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

.service-body {
    padding: 24px;
}

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

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

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

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

/* Stats Section */
.stats-section {
    background: var(--primary);
    padding: 60px 24px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
    position: relative;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    overflow: hidden;
}

.author-info h4 {
    color: var(--text-dark);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 24px;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 16px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.cta-section .btn-primary {
    background: var(--secondary);
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* Form Styles */
.form-section {
    padding: 80px 24px;
    background: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow);
}

.form-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: var(--bg-white);
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Contact Info */
.contact-split {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.contact-form-wrap {
    flex: 1;
    min-width: 300px;
}

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

.info-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-text {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 24px 30px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

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

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

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

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    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;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.cookie-accept {
    background: var(--secondary);
    color: white;
}

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

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
}

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

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 3;
    fill: none;
}

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

.thanks-text {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* Legal Pages */
.legal-section {
    padding: 80px 24px;
}

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

.legal-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.legal-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.legal-content ul {
    color: var(--text-muted);
    margin: 16px 0 16px 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* About Page */
.about-hero {
    background: var(--bg-light);
    padding: 80px 24px;
}

.about-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.team-section {
    padding: 80px 24px;
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    flex: 0 1 280px;
    text-align: center;
}

.team-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--primary-light);
    margin: 0 auto 20px;
    overflow: hidden;
}

.team-name {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

/* Disclaimer */
.disclaimer {
    background: var(--bg-light);
    padding: 24px;
    border-left: 4px solid var(--secondary);
    margin: 40px 0;
}

.disclaimer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-split,
    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

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

    .hero-image,
    .split-image {
        min-height: 300px;
        position: relative;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav {
        display: none;
    }

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

    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 20px;
        border-bottom: 1px solid var(--border);
        gap: 0;
    }

    .nav.open a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .stats-grid {
        gap: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .form-container {
        padding: 32px 24px;
    }

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

    .footer-grid {
        gap: 32px;
    }

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

@media (max-width: 600px) {
    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
    }
}
