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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --light-bg: #f8f9fa;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --border-color: #dfe6e9;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1rem;
}

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

.nav-main {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--highlight-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--highlight-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
}

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

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-primary-large:hover {
    background: #d63651;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.intro-section {
    padding: 5rem 0;
    background: var(--white);
}

.container-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.split-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.split-image:hover img {
    transform: scale(1.05);
}

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.value-split {
    padding: 5rem 0;
    background: var(--light-bg);
}

.services-showcase {
    padding: 6rem 0;
    background: var(--white);
}

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

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

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

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    display: flex;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    flex: 0 0 45%;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    color: var(--text-light);
    flex-grow: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin: 1rem 0;
}

.btn-select {
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.form-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.container-form-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

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

.form-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.benefit-icon {
    color: var(--highlight-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.form-right {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    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(--highlight-color);
}

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

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

.testimonial-split {
    padding: 6rem 0;
    background: var(--white);
}

.testimonial-split blockquote {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--light-bg);
    border-left: 4px solid var(--highlight-color);
    border-radius: 8px;
}

.testimonial-split blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-split cite {
    display: block;
    margin-top: 1rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.cta-final {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
}

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

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    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;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.story-split {
    padding: 5rem 0;
}

.story-split.reverse-mobile {
    background: var(--light-bg);
}

.mission-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.mission-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.values-split {
    padding: 5rem 0;
    background: var(--white);
}

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--highlight-color);
}

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

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

.team-split {
    padding: 5rem 0;
    background: var(--light-bg);
}

.cta-about {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

.cta-about p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.service-detail-image {
    flex: 0 0 45%;
    overflow: hidden;
    border-radius: 12px;
}

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

.price-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--highlight-color);
    color: var(--white);
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-checklist {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-checklist li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.feature-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
}

.pricing-info {
    padding: 5rem 0;
    background: var(--light-bg);
}

.pricing-info h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.pricing-point {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.pricing-point h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-point p {
    color: var(--text-light);
}

.contact-split {
    padding: 4rem 0;
}

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

.contact-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.contact-block a {
    color: var(--highlight-color);
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.visit-section {
    padding: 4rem 0;
    background: var(--light-bg);
    text-align: center;
}

.visit-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.visit-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.faq-contact {
    padding: 5rem 0;
}

.faq-contact h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

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

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

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

.thanks-hero {
    padding: 6rem 0;
    background: var(--light-bg);
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-thanks {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-info {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.thanks-info p {
    color: var(--text-dark);
    margin: 0;
}

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

.next-steps {
    padding: 5rem 0;
    background: var(--white);
}

.next-steps h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
}

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

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

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

.thanks-testimonial {
    padding: 4rem 0;
    background: var(--light-bg);
}

.thanks-testimonial blockquote {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--white);
    border-left: 4px solid var(--highlight-color);
    border-radius: 12px;
}

.thanks-testimonial blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thanks-testimonial cite {
    display: block;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.legal-content {
    padding: 4rem 0;
    background: var(--white);
}

.container-legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.update-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

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

.container-legal h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.container-legal p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.container-legal ul,
.container-legal ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.container-legal li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.container-legal a {
    color: var(--highlight-color);
    font-weight: 600;
}

.container-legal a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        min-height: 60vh;
    }

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

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

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .service-image {
        flex: 0 0 250px;
    }

    .container-form-split {
        flex-direction: column;
    }

    .service-detail-split {
        flex-direction: column;
        padding: 2rem;
    }

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

    .service-detail-image {
        flex: 0 0 300px;
    }

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

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

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

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

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

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

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

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-alt {
        width: 100%;
    }

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

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