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

:root {
    --primary: #2d3436;
    --secondary: #0984e3;
    --accent: #00b894;
    --light: #f8f9fa;
    --dark: #1a1a2e;
    --text: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.ad-disclosure {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background: var(--light);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

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

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.35);
}

.cta-secondary {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    padding: 0.75rem 0;
    border-bottom: 2px solid var(--secondary);
    transition: padding-left 0.3s ease;
}

.cta-secondary:hover {
    padding-left: 0.5rem;
}

.cta-light {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-light:hover {
    transform: translateY(-2px);
}

.features-alternate {
    padding: 6rem 5%;
}

.feature-row {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

.feature-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    color: var(--dark);
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.services-preview {
    padding: 6rem 5%;
    background: var(--light);
}

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

.section-header-left p {
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 3rem;
}

.services-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.card-image {
    height: 180px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0;
    color: var(--dark);
}

.service-card p {
    padding: 0.5rem 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-card .price {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

.services-cta {
    text-align: center;
}

.split-testimonial {
    display: flex;
    min-height: 450px;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background: var(--dark);
    color: var(--white);
}

.testimonial-content blockquote {
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

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

.contact-strip {
    background: var(--secondary);
    padding: 4rem 5%;
}

.contact-strip-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.contact-strip-content h2 {
    margin-bottom: 1rem;
}

.contact-strip-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer-split {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 2;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links,
.footer-legal {
    flex: 1;
}

.footer-links h4,
.footer-legal h4 {
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.footer-links a,
.footer-legal a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

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

.disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    line-height: 1.6;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 5%;
    background: var(--light);
}

.page-hero-content h1 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.page-hero-content p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.page-hero-image {
    flex: 1;
    overflow: hidden;
}

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

.about-story {
    padding: 5rem 5%;
}

.story-block {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.values-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    background: var(--light);
}

.values-left {
    flex: 1;
}

.values-left h2 {
    color: var(--dark);
}

.values-left p {
    color: var(--text-light);
}

.values-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item h3 {
    color: var(--dark);
}

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

.team-section {
    padding: 5rem 5%;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

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

.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.member-image {
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.team-member h3 {
    color: var(--dark);
}

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

.stats-strip {
    display: flex;
    justify-content: center;
    gap: 6rem;
    padding: 4rem 5%;
    background: var(--secondary);
    color: var(--white);
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.cta-split {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background: var(--light);
}

.cta-content {
    flex: 2;
}

.cta-content h2 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--text-light);
}

.cta-action {
    flex: 1;
    text-align: right;
}

.services-hero {
    padding: 5rem 5%;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.services-hero h1 {
    margin-bottom: 1rem;
}

.services-hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
}

.services-list {
    padding: 4rem 5%;
}

.service-detail-row {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    color: var(--dark);
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 1.5rem;
}

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

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

.process-section {
    padding: 5rem 5%;
    background: var(--light);
}

.process-steps {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

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

.process-step h3 {
    color: var(--dark);
}

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

.cta-full {
    text-align: center;
    padding: 5rem 5%;
    background: var(--dark);
    color: var(--white);
}

.cta-full h2 {
    margin-bottom: 0.5rem;
}

.cta-full p {
    opacity: 0.85;
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 5rem 5%;
    background: var(--light);
    text-align: center;
}

.contact-hero h1 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-hero p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
}

.contact-form-wrapper {
    flex: 1.5;
}

.contact-form-wrapper h2 {
    color: var(--dark);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    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(--secondary);
}

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

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

.contact-info-block {
    margin-bottom: 2rem;
}

.contact-info-block h3 {
    color: var(--dark);
    font-size: 1.1rem;
}

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

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: var(--light);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    color: var(--accent);
    margin-bottom: 2rem;
}

.thanks-content h1 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.selected-service {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.selected-service p {
    margin: 0;
    color: var(--text);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.legal-content h1 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    color: var(--dark);
    margin-top: 2.5rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--dark);
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 1.5rem;
    list-style: disc;
}

.legal-content li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

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

.cookie-table td {
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

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

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

@media (max-width: 992px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-split,
    .page-hero-split,
    .split-testimonial {
        flex-direction: column;
    }

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

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

    .services-cards {
        flex-direction: column;
    }

    .values-split {
        flex-direction: column;
        gap: 2rem;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .stats-strip {
        flex-wrap: wrap;
        gap: 3rem;
    }

    .cta-split {
        flex-direction: column;
        text-align: center;
    }

    .cta-action {
        text-align: center;
    }

    .process-steps {
        flex-direction: column;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 576px) {
    h1 {
        font-size: 1.85rem;
    }

    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
