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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-light: #ffffff;
    --text-dark: #2d3436;
    --gray-light: #f5f6fa;
    --gray-medium: #dfe6e9;
    --gray-dark: #636e72;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

ul {
    list-style: none;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--primary-color);
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

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

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

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

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background: var(--secondary-color);
    color: var(--text-light);
}

.hero-text {
    max-width: 600px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

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

.page-hero-split .hero-left {
    min-height: auto;
}

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-left {
    flex: 1;
    overflow: hidden;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.value-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.value-card h3 {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
}

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

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.service-item {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-content {
    flex: 2;
    padding: 3rem;
}

.service-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-content ul {
    margin-top: 1.5rem;
}

.service-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
}

.service-price {
    flex: 1;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1.5rem;
}

.testimonials-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: white;
}

.testimonials-left {
    flex: 1;
}

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

.testimonial {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 500;
}

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

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-benefits {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
}

.contact-form textarea {
    resize: vertical;
}

.trust-split {
    display: flex;
    align-items: stretch;
}

.trust-left {
    flex: 1;
    overflow: hidden;
}

.trust-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-right {
    flex: 1;
    padding: 4rem 5%;
    background: var(--gray-light);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-point h4 {
    color: var(--secondary-color);
}

.final-cta-split {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

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

.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--highlight-color);
}

.cta-primary:hover,
.cta-large:hover {
    background: transparent;
    border-color: var(--highlight-color);
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--highlight-color);
}

.cta-secondary:hover {
    background: var(--highlight-color);
}

.cta-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    margin-top: 2rem;
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--highlight-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d63651;
    transform: translateY(-2px);
}

.select-service {
    padding: 0.75rem 2rem;
    background: var(--highlight-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #d63651;
    transform: translateY(-2px);
}

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

.footer-left {
    flex: 2;
}

.footer-brand h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.footer-center,
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-center h4,
.footer-right h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-center a,
.footer-right a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-center a:hover,
.footer-right a:hover {
    color: var(--highlight-color);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--highlight-color);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(233, 69, 96, 0.6);
}

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

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--highlight-color);
    color: var(--text-light);
}

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

.btn-cookie-accept:hover {
    background: #d63651;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.story-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.story-left {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.story-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-right {
    flex: 1;
}

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

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

.mission-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-right {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.mission-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-box {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
}

.team-split {
    padding: 5rem 5%;
    background: white;
}

.team-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.team-member {
    flex: 1 1 calc(50% - 1rem);
    background: var(--gray-light);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.approach-left {
    flex: 1;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight-color);
    flex-shrink: 0;
}

.step h4 {
    color: var(--text-light);
}

.step p {
    color: rgba(255, 255, 255, 0.85);
}

.approach-right {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.approach-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-about {
    padding: 5rem 5%;
    background: var(--accent-color);
    color: var(--text-light);
    text-align: center;
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: center;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background: var(--gray-light);
}

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

.service-detail-left img {
    width: 100%;
    border-radius: 12px;
}

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

.service-features {
    margin: 2rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
}

.service-pricing-box {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.service-detail-split.reverse .service-pricing-box {
    background: white;
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
    text-transform: uppercase;
    font-weight: 600;
}

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

.why-choose-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: var(--accent-color);
    color: var(--text-light);
}

.why-left {
    flex: 1;
}

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

.why-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.why-item h4 {
    color: var(--text-light);
}

.why-item p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-services {
    padding: 5rem 5%;
    background: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

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

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.info-block a {
    color: var(--highlight-color);
    font-weight: 500;
}

.info-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 8px;
}

.contact-map {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-split {
    padding: 5rem 5%;
    background: white;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

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

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

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

.legal-page {
    padding: 5rem 5%;
    background: var(--gray-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 12px;
}

.legal-container h1 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.update-date {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-container h2 {
    color: var(--secondary-color);
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    color: var(--accent-color);
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-container ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

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

.thanks-container {
    max-width: 800px;
    background: white;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--highlight-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-subtitle {
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 3rem;
}

.thanks-info {
    margin-bottom: 3rem;
}

.thanks-info h2 {
    color: var(--secondary-color);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.thanks-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.thanks-step p {
    margin: 0;
    padding-top: 0.5rem;
}

.service-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 8px;
}

.service-info strong {
    color: var(--highlight-color);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--highlight-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #d63651;
    transform: translateY(-2px);
}

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

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

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-medium);
}

.thanks-contact p {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.email-link {
    color: var(--highlight-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.email-link:hover {
    text-decoration: underline;
}

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

    h2 {
        font-size: 2rem;
    }

    .hero-split,
    .page-hero-split,
    .intro-split,
    .value-split,
    .testimonials-split,
    .form-split,
    .trust-split,
    .story-split,
    .mission-split,
    .approach-split,
    .service-detail-split,
    .why-choose-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .mission-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

    .nav-right {
        gap: 1rem;
    }

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

    .team-member,
    .faq-item {
        flex: 1 1 100%;
    }

    .service-item {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

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

    h2 {
        font-size: 1.75rem;
    }

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

    .hero-split,
    .page-hero-split {
        min-height: auto;
    }

    .legal-container {
        padding: 2rem;
    }

    .thanks-container {
        padding: 2rem;
    }

    .service-price .price {
        font-size: 2rem;
    }

    .price-value {
        font-size: 2rem;
    }
}
