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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --dark: #1a1a1a;
    --border-color: #dee2e6;
}

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

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

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    gap: 2rem;
}

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

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

.hero-left {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-right {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.hero-right img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.split-intro {
    display: flex;
}

.split-intro-left {
    flex: 1;
    padding: 5rem 8%;
}

.split-intro-right {
    flex: 1;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    padding: 3rem;
}

.split-intro-right img {
    width: 100%;
}

.split-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.split-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cta-inline {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
}

.cta-inline:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

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

.section-header-center h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--gray);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

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

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: var(--secondary-color);
}

.btn-select-service.primary {
    background: var(--accent-color);
}

.btn-select-service.primary:hover {
    background: var(--primary-color);
}

.testimonial-split {
    display: flex;
    min-height: 50vh;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.testimonial-right {
    background: var(--secondary-color);
    color: var(--white);
}

.quote-mark {
    font-size: 5rem;
    line-height: 1;
    opacity: 0.3;
    margin-bottom: 1rem;
}

blockquote p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

cite {
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
}

.process-split {
    display: flex;
}

.process-left {
    flex: 1;
    padding: 5rem 8%;
    background: var(--light-bg);
}

.process-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem;
}

.process-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

.step h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--gray);
}

.cta-highlight {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.form-section-split {
    display: flex;
    padding: 6rem 5%;
}

.form-split-left {
    flex: 1;
    padding-right: 5%;
}

.form-split-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-split-left p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: var(--text-color);
}

.form-split-right {
    flex: 1;
}

.contact-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #aaa;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #aaa;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #aaa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie.reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cookie:hover {
    transform: scale(1.05);
}

.page-hero-split {
    display: flex;
    min-height: 50vh;
    align-items: center;
}

.page-hero-left {
    flex: 1;
    padding: 4rem 8%;
    background: var(--light-bg);
}

.page-hero-left h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-hero-left p {
    font-size: 1.2rem;
    color: var(--gray);
}

.page-hero-right {
    flex: 1;
    background: var(--primary-color);
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 3rem;
}

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

.page-hero-centered h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-hero-centered p {
    font-size: 1.3rem;
    color: var(--gray);
}

.about-content-split {
    display: flex;
}

.about-split-left {
    flex: 1;
    padding: 5rem 8%;
}

.about-split-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem;
    background: var(--light-bg);
}

.about-split-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-split-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.values-section {
    padding: 6rem 5%;
    background: var(--white);
}

.section-title-center {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
}

.team-split {
    display: flex;
}

.team-left {
    flex: 1;
    padding: 5rem 8%;
    background: var(--secondary-color);
    color: var(--white);
}

.team-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.team-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem;
}

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

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray);
}

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

.cta-bottom h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-bottom p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-detail-split {
    display: flex;
    padding: 6rem 5%;
}

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

.service-detail-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem;
}

.service-detail-right {
    flex: 1;
    padding: 3rem 5%;
}

.service-detail-right h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-right p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.service-highlight {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.service-highlight-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-highlight-content h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-highlight-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.package-includes {
    display: flex;
    gap: 3rem;
    text-align: left;
    margin: 3rem 0;
    justify-content: center;
}

.package-col h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.package-col ul li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.service-price-huge {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 2rem 0;
}

.price-note {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

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

.contact-info-left {
    flex: 1;
    padding-right: 5%;
}

.contact-info-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info-left p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray);
}

.contact-details a {
    color: var(--secondary-color);
}

.contact-note {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.contact-map-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem;
    background: var(--light-bg);
}

.faq-section {
    padding: 6rem 5%;
    background: var(--white);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray);
}

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

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

.thanks-icon {
    font-size: 5rem;
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.service-selected {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.step-card {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
}

.step-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--gray);
}

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

.btn-primary {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    font-weight: 600;
}

.testimonial-thanks {
    padding: 6rem 5%;
    background: var(--white);
}

.testimonial-thanks h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--gray);
}

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

.legal-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--primary-color);
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

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

@media (max-width: 968px) {
    .hero-split,
    .split-intro,
    .process-split,
    .testimonial-split,
    .form-section-split,
    .about-content-split,
    .team-split,
    .service-detail-split,
    .contact-split,
    .page-hero-split {
        flex-direction: column;
    }

    .hero-left h1,
    .page-hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-right {
        min-height: 50vh;
    }

    .nav-right {
        gap: 1rem;
    }

    .services-grid-split,
    .values-split-grid {
        flex-direction: column;
    }

    .service-card,
    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .steps-grid,
    .testimonial-grid,
    .package-includes,
    .stats-grid {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

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

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-header-center h2,
    .section-title-center {
        font-size: 2rem;
    }
}
