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

:root {
    --primary-color: #c71585;
    --primary-dark: #9b1167;
    --secondary-color: #4a148c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2e7d32;
}

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

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

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

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

.btn-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-light {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-primary {
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
    display: inline-block;
}

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

.btn-secondary {
    padding: 12px 28px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 15px;
    display: inline-block;
}

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

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 60px;
}

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

.content-half {
    flex: 1;
}

.content-half h2 {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-half p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-half img {
    width: 100%;
    border-radius: 12px;
}

.intro-section {
    background-color: var(--bg-light);
}

.value-props {
    padding: 100px 20px;
}

.value-props h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.props-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.prop-card {
    flex: 1;
    text-align: center;
}

.prop-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.prop-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.prop-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-preview {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.service-highlight {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin: 20px 0;
}

.service-highlight h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-highlight .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 12px 0;
}

.testimonials {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.testimonial-card {
    flex: 1;
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.process-section {
    padding: 80px 0;
}

.process-steps {
    margin-top: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.form-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.booking-form .form-group {
    margin-bottom: 24px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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-color);
}

.booking-form button[type="submit"] {
    width: 100%;
}

.final-cta {
    text-align: center;
    padding: 100px 20px;
    background-color: var(--primary-color);
    color: white;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: white;
    padding: 25px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(74, 20, 140, 0.4);
    transition: all 0.3s;
    display: inline-block;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 20, 140, 0.5);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.about-intro {
    padding: 80px 0;
}

.values-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.team-section {
    padding: 100px 20px;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    margin-bottom: 20px;
}

.member-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.stats-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 20px;
}

.stats-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.approach-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.method-list {
    margin-top: 20px;
    padding-left: 20px;
}

.method-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.cta-section {
    text-align: center;
    padding: 100px 20px;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.services-main {
    padding: 60px 20px;
}

.service-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(199, 21, 133, 0.05), rgba(74, 20, 140, 0.05));
    border: 2px solid var(--primary-color);
}

.service-content {
    flex: 1;
    padding: 50px;
}

.service-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 0;
}

.service-duration {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

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

.service-image {
    flex: 1;
    max-width: 500px;
}

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

.comparison-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.comparison-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.comparison-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    flex: 1;
    background-color: white;
    padding: 35px;
    border-radius: 12px;
}

.comparison-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.recommendation {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.faq-section {
    padding: 100px 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

.contact-main {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px;
    font-weight: 600;
}

.directions-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.directions-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.directions-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.direction-card {
    flex: 1;
    background-color: white;
    padding: 35px;
    border-radius: 12px;
}

.direction-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.faq-contact {
    padding: 100px 20px;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--success-color), #1b5e20);
    color: white;
    padding: 100px 20px;
}

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

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.thanks-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.next-steps {
    padding: 100px 20px;
}

.next-steps h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.steps-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.info-box {
    margin-top: 30px;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-box h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.info-box ul {
    padding-left: 20px;
}

.info-box li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.preparation-section {
    padding: 100px 20px;
}

.preparation-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.preparation-section > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.prep-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.prep-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
}

.prep-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.related-content {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.related-content h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.related-grid {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.related-card {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.related-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.related-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 20px 100px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-light);
}

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

    .hero-left {
        padding: 60px 30px;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .hero-right img {
        height: 400px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .props-grid,
    .testimonial-grid,
    .team-grid,
    .stats-grid,
    .values-grid,
    .comparison-grid,
    .directions-grid,
    .steps-grid,
    .prep-grid,
    .related-grid {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .service-image {
        max-width: 100%;
    }

    .service-image img {
        height: 300px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

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

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

    .page-hero h1 {
        font-size: 36px;
    }

    .content-half h2,
    .value-props h2,
    .testimonials h2,
    .services-main h2,
    .comparison-section h2,
    .faq-section h2,
    .contact-info h2,
    .directions-section h2,
    .cta-section h2,
    .next-steps h2,
    .preparation-section h2,
    .related-content h2,
    .final-cta h2 {
        font-size: 32px;
    }

    .service-card h2 {
        font-size: 26px;
    }

    .service-price {
        font-size: 28px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .btn-sticky {
        padding: 14px 24px;
        font-size: 14px;
    }

    .thanks-hero h1 {
        font-size: 36px;
    }
}