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

:root {
    --primary: #c77dff;
    --secondary: #e0aaff;
    --dark: #240046;
    --light: #f8f9fa;
    --gray: #6c757d;
    --accent: #ff006e;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--light);
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: 0.3s;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(135deg, #c77dff 0%, #e0aaff 100%);
    color: white;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero-left p {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.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: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

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

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

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

.split-content {
    flex: 1;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.link-arrow {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(10px);
}

.services-grid {
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header.centered h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

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

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-card.featured {
    border: 3px solid var(--primary);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-info {
    padding: 2rem;
}

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

.service-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

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

.why-us-split {
    display: flex;
    align-items: center;
    background: var(--light);
}

.why-content {
    flex: 1;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.why-content h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-md);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.icon {
    font-size: 2rem;
    color: var(--primary);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.why-image {
    flex: 1;
    height: 700px;
    overflow: hidden;
}

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

.testimonials {
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
}

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

.testimonial-card {
    flex: 1 1 300px;
    background: var(--light);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

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

.author {
    font-weight: 600;
    color: var(--primary);
}

.cta-split {
    display: flex;
    min-height: 600px;
}

.cta-content {
    flex: 1;
    background: linear-gradient(135deg, #240046 0%, #3c096c 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-lg);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.form-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    background: var(--light);
}

.booking-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 1.2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.final-cta {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, #e0aaff 0%, #c77dff 100%);
    text-align: center;
}

.final-cta-content h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: white;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.footer {
    background: var(--dark);
    color: white;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

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

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    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;
}

.cookie-content p {
    flex: 1;
}

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

.btn-cookie {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

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

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

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

.page-hero {
    height: 400px;
    background: linear-gradient(135deg, #c77dff 0%, #e0aaff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.service-detail-card {
    display: flex;
    margin-bottom: var(--spacing-lg);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

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

.service-detail-left {
    flex: 1;
    min-height: 500px;
}

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

.service-detail-right {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray);
}

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

.services-cta {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light);
    text-align: center;
}

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

.services-cta p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.form-container-centered {
    max-width: 600px;
    margin: 0 auto;
}

.about-story-split {
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
}

.story-content {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    height: 600px;
}

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

.values-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light);
    text-align: center;
}

.values-section h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: left;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.team-split {
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
}

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

.team-image {
    flex: 1;
    height: 600px;
}

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

.team-content {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
}

.team-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.team-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
}

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

.philosophy-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.philosophy-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-cta-split {
    display: flex;
    min-height: 500px;
}

.about-cta-left {
    flex: 1;
}

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

.about-cta-right {
    flex: 1;
    background: linear-gradient(135deg, #c77dff 0%, #e0aaff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-lg);
    color: white;
}

.about-cta-right h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.contact-split {
    display: flex;
    min-height: 700px;
}

.contact-info-side {
    flex: 1;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: white;
}

.contact-info-side h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-lg);
}

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

.info-block h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.info-block p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.info-block a {
    color: var(--primary);
    text-decoration: none;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

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

.contact-extra {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light);
    text-align: center;
}

.contact-extra h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
}

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

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
}

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

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

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.thanks-container {
    text-align: center;
    max-width: 700px;
    background: white;
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

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

.thanks-note {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.thanks-note a {
    color: var(--primary);
    text-decoration: none;
}

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

.legal-page {
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.legal-date {
    color: var(--gray);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.legal-container p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--gray);
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--gray);
}

.legal-container a {
    color: var(--primary);
    text-decoration: none;
}

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

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

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

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

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .why-us-split,
    .cta-split,
    .about-story-split,
    .team-split,
    .about-cta-split,
    .contact-split,
    .service-detail-card {
        flex-direction: column;
    }

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

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

    .service-detail-left {
        min-height: 400px;
    }

    .why-image,
    .story-image,
    .team-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 500px;
    }

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

    .hero-left h1 {
        font-size: 2rem;
    }

    .section-header.centered h2,
    .testimonials h2,
    .values-section h2 {
        font-size: 2rem;
    }

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