:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #ed8936;
    --accent: #38b2ac;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-dark: #1a202c;
    --border: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.1);
    --fallback-img: #cbd5e0;
}

* {
    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: var(--bg-white);
}

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

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

/* Header */
.site-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);
    text-decoration: none;
}

.ad-disclosure {
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 12px;
}

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

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
}

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

.main-nav a.active {
    background: var(--primary);
    color: var(--bg-white);
}

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

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

/* Split Screen Layouts */
.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 48px;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 137, 54, 0.4);
}

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

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

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

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

/* Section Styles */
.section {
    padding: 80px 0;
}

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

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Service Cards */
.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.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 16px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.service-card-image {
    height: 180px;
    background-color: var(--fallback-img);
    overflow: hidden;
}

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

.service-card-content {
    padding: 24px;
}

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

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

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

/* Features */
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
}

.feature-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 260px;
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--bg-white);
    fill: none;
    stroke-width: 2;
}

.feature-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

/* Testimonials */
.testimonial-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow);
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1.125rem;
    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;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 600;
}

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

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

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
}

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

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

.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, box-shadow 0.2s;
    background: var(--bg-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.form-submit:hover {
    background: var(--primary-light);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--bg-white);
    fill: none;
    stroke-width: 2;
}

.contact-detail h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

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

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

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

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

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

.footer-col a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s;
}

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

.footer-col p {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 20px;
}

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

/* Disclaimer */
.disclaimer {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
    font-size: 0.875rem;
    color: var(--text-light);
    border-left: 4px solid var(--accent);
}

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

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

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

.cookie-text {
    flex: 1;
    min-width: 280px;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

.cookie-reject {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
}

.cookie-btn:hover {
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Content Pages */
.content-section {
    padding: 60px 0;
}

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

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

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

.content-section ul {
    margin: 16px 0 16px 24px;
}

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

/* Team Grid */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.team-member {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 250px;
    text-align: center;
}

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

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

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

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

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

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

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

.thanks-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

/* Inline CTA */
.inline-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

.inline-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.inline-cta p {
    margin-bottom: 24px;
    opacity: 0.95;
}

/* Stats Section */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    padding: 40px 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--text-light);
    margin-top: 8px;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.process-step {
    flex: 1 1 calc(25% - 24px);
    min-width: 220px;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h4 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

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

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

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

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

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

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

    .nav-toggle {
        display: block;
    }

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

    .feature-item {
        flex: 1 1 100%;
    }

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

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

    .footer-legal a {
        margin: 8px 10px;
    }

    .contact-form {
        padding: 24px;
    }

    .page-title {
        font-size: 1.75rem;
    }

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

    .process-step {
        flex: 1 1 100%;
    }
}
