:root {
            --primary-color: hsl(318, 64%, 37%);
            --secondary-color: hsl(318, 64%, 22%);
            --accent-color: hsl(318, 64%, 62%);
        }
        
        body {
            font-family: 'Cormorant Garamond', serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(318, 64%, 37%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .active {
            color: var(--primary-color) !important;
            font-weight: 600;
        }

.about-section {
        padding: 80px 0;
        background-color: #fff;
        font-family: 'Playfair Display', serif;
    }
    
    .about-header {
        margin-bottom: 50px;
    }
    
    .about-title {
        color: hsl(318, 64%, 37%);
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
    }
    
    .about-title:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(318, 64%, 62%);
    }
    
    .about-subtitle {
        font-size: 1.2rem;
        color: hsl(318, 64%, 22%);
        font-weight: 400;
        font-style: italic;
        margin-top: 20px;
    }
    
    .about-image {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .about-text {
        margin-bottom: 40px;
    }
    
    .about-text h3 {
        color: hsl(318, 64%, 37%);
        font-size: 1.8rem;
        margin-bottom: 20px;
        position: relative;
    }
    
    .about-text h3:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: hsl(318, 64%, 62%);
    }
    
    .about-text p {
        color: #333;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-values {
        background-color: rgba(242, 214, 231, 0.2);
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 40px;
    }
    
    .about-values h3 {
        color: hsl(318, 64%, 37%);
        margin-bottom: 20px;
    }
    
    .about-values ul {
        list-style-type: none;
        padding-left: 0;
    }
    
    .about-values li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .about-values li:before {
        content: "♪";
        color: hsl(318, 64%, 62%);
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.2rem;
    }
    
    @media (max-width: 768px) {
        .about-title {
            font-size: 2.5rem;
        }
        
        .about-text h3 {
            font-size: 1.5rem;
        }
        
        .about-text p {
            font-size: 1rem;
        }
    }

.advantages-section {
    padding: 5rem 0;
    background-color: #f9f4f7;
}

.advantages-section h2 {
    color: hsl(318, 64%, 37%);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.advantages-section h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: hsl(318, 64%, 62%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.advantage-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: 30px;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid hsl(318, 64%, 37%);
}

.advantage-icon {
    font-size: 2.5rem;
    color: hsl(318, 64%, 37%);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    color: hsl(318, 64%, 62%);
    transform: scale(1.1);
}

.advantage-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(318, 64%, 22%);
}

.advantage-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 3rem 0;
    }
    
    .advantage-card {
        margin-bottom: 20px;
    }
}

.statistics-section {
        padding: 5rem 0;
        background-color: #f9f4f7;
    }
    
    .statistics-section h2 {
        color: hsl(318, 64%, 37%);
        margin-bottom: 3rem;
        font-weight: 700;
        position: relative;
    }
    
    .statistics-section h2:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(318, 64%, 62%);
    }
    
    .stat-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: hsl(318, 64%, 37%);
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: hsl(318, 64%, 22%);
    }
    
    .stat-title {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 0.5rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
        color: #888;
    }
    
    .graph-container {
        height: 120px;
        margin-top: 1rem;
        margin-bottom: 1rem;
        position: relative;
    }
    
    .graph-bar {
        position: absolute;
        bottom: 0;
        width: 15%;
        background-color: hsl(318, 64%, 37%);
        border-radius: 4px 4px 0 0;
        transition: height 1s ease;
    }
    
    .graph-bar.bar1 { left: 5%; height: 70%; background-color: hsl(318, 64%, 62%); }
    .graph-bar.bar2 { left: 25%; height: 90%; }
    .graph-bar.bar3 { left: 45%; height: 60%; background-color: hsl(318, 64%, 62%); }
    .graph-bar.bar4 { left: 65%; height: 80%; }
    .graph-bar.bar5 { left: 85%; height: 75%; background-color: hsl(318, 64%, 62%); }
    
    .stat-progress {
        height: 8px;
        margin-top: 1rem;
        background-color: #f0f0f0;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .stat-progress-bar {
        height: 100%;
        background-color: hsl(318, 64%, 37%);
        border-radius: 4px;
    }

:root {
    --primary-color: hsl(318, 64%, 37%);
    --secondary-color: hsl(318, 64%, 22%);
    --accent-color: hsl(318, 64%, 62%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Playfair Display', serif;
}

footer h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

footer .footer-links li {
    margin-bottom: 0.75rem;
}

footer .copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

.cookie-btn.outline:hover {
    background-color: var(--accent-color);
    color: white;
}

:root {
            --primary-color: hsl(318, 64%, 37%);
            --secondary-color: hsl(318, 64%, 22%);
            --accent-color: hsl(318, 64%, 62%);
        }
        
        body {
            font-family: 'Cormorant Garamond', serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(318, 64%, 37%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .active {
            color: var(--primary-color) !important;
            font-weight: 600;
        }

.privacy-container {
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        padding: 20px;
    }
    
    .privacy-title {
        color: #1a1a1a;
        border-bottom: 2px solid #e6e6e6;
        padding-bottom: 15px;
        margin-bottom: 25px;
        font-size: 2.2em;
    }
    
    .privacy-section {
        margin-bottom: 30px;
    }
    
    .privacy-section h2 {
        color: #2c3e50;
        font-size: 1.8em;
        margin-bottom: 15px;
        border-left: 4px solid #3498db;
        padding-left: 15px;
    }
    
    .privacy-section p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .privacy-section ul {
        margin-left: 20px;
        margin-bottom: 15px;
    }
    
    .privacy-section li {
        margin-bottom: 8px;
    }
    
    .last-updated {
        font-style: italic;
        color: #7f8c8d;
        text-align: right;
        margin-top: 40px;
    }
    
    .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-radius: 5px;
        border-left: 3px solid #3498db;
        margin: 20px 0;
    }

:root {
    --primary-color: hsl(318, 64%, 37%);
    --secondary-color: hsl(318, 64%, 22%);
    --accent-color: hsl(318, 64%, 62%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Playfair Display', serif;
}

footer h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

footer .footer-links li {
    margin-bottom: 0.75rem;
}

footer .copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

.cookie-btn.outline:hover {
    background-color: var(--accent-color);
    color: white;
}

:root {
            --primary-color: hsl(318, 64%, 37%);
            --secondary-color: hsl(318, 64%, 22%);
            --accent-color: hsl(318, 64%, 62%);
        }
        
        body {
            font-family: 'Cormorant Garamond', serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(318, 64%, 37%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .active {
            color: var(--primary-color) !important;
            font-weight: 600;
        }

.cookies-policy {
        font-family: 'Arial', sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    
    .cookies-policy h1 {
        color: #b8860b;
        font-size: 2.5em;
        margin-bottom: 20px;
        text-align: center;
        border-bottom: 2px solid #b8860b;
        padding-bottom: 10px;
    }
    
    .cookies-policy h2 {
        color: #8b4513;
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 15px;
        border-left: 4px solid #b8860b;
        padding-left: 10px;
    }
    
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .cookies-policy ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    
    .cookies-policy li {
        margin-bottom: 8px;
    }
    
    .cookies-policy .highlight {
        background-color: #fff8dc;
        padding: 15px;
        border-left: 3px solid #b8860b;
        margin: 20px 0;
    }
    
    .cookies-policy .effective-date {
        text-align: right;
        font-style: italic;
        margin-top: 30px;
    }
    
    .cookies-policy a {
        color: #8b4513;
        text-decoration: none;
        border-bottom: 1px dotted #8b4513;
    }
    
    .cookies-policy a:hover {
        color: #b8860b;
        border-bottom: 1px solid #b8860b;
    }
    
    .cookies-policy .table-container {
        overflow-x: auto;
        margin: 20px 0;
    }
    
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }
    
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    
    .cookies-policy th {
        background-color: #f5f5dc;
        color: #8b4513;
    }
    
    .cookies-policy tr:nth-child(even) {
        background-color: #f9f9f9;
    }

:root {
    --primary-color: hsl(318, 64%, 37%);
    --secondary-color: hsl(318, 64%, 22%);
    --accent-color: hsl(318, 64%, 62%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Playfair Display', serif;
}

footer h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

footer .footer-links li {
    margin-bottom: 0.75rem;
}

footer .copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

.cookie-btn.outline:hover {
    background-color: var(--accent-color);
    color: white;
}

:root {
            --primary-color: hsl(318, 64%, 37%);
            --secondary-color: hsl(318, 64%, 22%);
            --accent-color: hsl(318, 64%, 62%);
        }
        
        body {
            font-family: 'Cormorant Garamond', serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(318, 64%, 37%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .active {
            color: var(--primary-color) !important;
            font-weight: 600;
        }

.contact-section {
        padding: 100px 0;
        background-color: #f9f5f8;
        position: relative;
    }
    
    .contact-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(193, 53, 132, 0.05) 0%, rgba(193, 53, 132, 0.1) 100%);
        z-index: 1;
    }
    
    .contact-container {
        position: relative;
        z-index: 2;
    }
    
    .contact-title {
        color: hsl(318, 64%, 22%);
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        color: hsl(318, 64%, 37%);
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .contact-form {
        background-color: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(193, 53, 132, 0.1);
    }
    
    .form-label {
        color: hsl(318, 64%, 22%);
        font-weight: 600;
    }
    
    .form-control {
        border: 2px solid #f0e6ec;
        padding: 12px 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: hsl(318, 64%, 37%);
        box-shadow: 0 0 0 0.25rem rgba(193, 53, 132, 0.15);
    }
    
    .contact-btn {
        background-color: hsl(318, 64%, 37%);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .contact-btn:hover {
        background-color: hsl(318, 64%, 22%);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(193, 53, 132, 0.2);
    }
    
    .contact-info-box {
        background-color: white;
        padding: 30px;
        border-radius: 15px;
        height: 100%;
        box-shadow: 0 10px 30px rgba(193, 53, 132, 0.1);
    }
    
    .contact-info-title {
        color: hsl(318, 64%, 37%);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 1.5rem;
    }
    
    .contact-info-text {
        color: #666;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    
    .operating-hours {
        margin-top: 30px;
    }
    
    .hours-title {
        color: hsl(318, 64%, 37%);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    
    .hours-list {
        list-style: none;
        padding: 0;
    }
    
    .hours-list li {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px dashed #f0e6ec;
    }
    
    .hours-list li:last-child {
        border-bottom: none;
    }
    
    .day {
        font-weight: 600;
        color: hsl(318, 64%, 22%);
    }
    
    .time {
        color: #666;
    }
    
    .consultation-steps {
        margin-top: 30px;
    }
    
    .step-item {
        display: flex;
        margin-bottom: 20px;
    }
    
    .step-number {
        background-color: hsl(318, 64%, 62%);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .step-content {
        color: #666;
    }
    
    .step-title {
        color: hsl(318, 64%, 22%);
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    @media (max-width: 991px) {
        .contact-info-box {
            margin-top: 40px;
        }
    }

.about-section {
        padding: 80px 0;
        background-color: #fff;
        font-family: 'Playfair Display', serif;
    }
    
    .about-header {
        margin-bottom: 50px;
    }
    
    .about-title {
        color: hsl(318, 64%, 37%);
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
    }
    
    .about-title:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(318, 64%, 62%);
    }
    
    .about-subtitle {
        font-size: 1.2rem;
        color: hsl(318, 64%, 22%);
        font-weight: 400;
        font-style: italic;
        margin-top: 20px;
    }
    
    .about-image {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .about-text {
        margin-bottom: 40px;
    }
    
    .about-text h3 {
        color: hsl(318, 64%, 37%);
        font-size: 1.8rem;
        margin-bottom: 20px;
        position: relative;
    }
    
    .about-text h3:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: hsl(318, 64%, 62%);
    }
    
    .about-text p {
        color: #333;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-values {
        background-color: rgba(242, 214, 231, 0.2);
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 40px;
    }
    
    .about-values h3 {
        color: hsl(318, 64%, 37%);
        margin-bottom: 20px;
    }
    
    .about-values ul {
        list-style-type: none;
        padding-left: 0;
    }
    
    .about-values li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .about-values li:before {
        content: "♪";
        color: hsl(318, 64%, 62%);
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.2rem;
    }
    
    @media (max-width: 768px) {
        .about-title {
            font-size: 2.5rem;
        }
        
        .about-text h3 {
            font-size: 1.5rem;
        }
        
        .about-text p {
            font-size: 1rem;
        }
    }

:root {
    --primary-color: hsl(318, 64%, 37%);
    --secondary-color: hsl(318, 64%, 22%);
    --accent-color: hsl(318, 64%, 62%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Playfair Display', serif;
}

footer h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

footer .footer-links li {
    margin-bottom: 0.75rem;
}

footer .copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

.cookie-btn.outline:hover {
    background-color: var(--accent-color);
    color: white;
}

:root {
            --primary-color: hsl(318, 64%, 37%);
            --secondary-color: hsl(318, 64%, 22%);
            --accent-color: hsl(318, 64%, 62%);
        }
        
        body {
            font-family: 'Cormorant Garamond', serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(318, 64%, 37%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .active {
            color: var(--primary-color) !important;
            font-weight: 600;
        }

.services-section {
        padding: 80px 0;
        background-color: #f9f5f8;
    }
    
    .services-title {
        color: hsl(318, 64%, 37%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .services-title:after {
        content: "";
        width: 70px;
        height: 3px;
        background: hsl(318, 64%, 62%);
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .service-card {
        background: white;
        border-radius: 8px;
        padding: 30px 25px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 3px solid hsl(318, 64%, 37%);
    }
    
    .service-icon {
        font-size: 2.5rem;
        color: hsl(318, 64%, 37%);
        margin-bottom: 20px;
    }
    
    .service-card:hover .service-icon {
        color: hsl(318, 64%, 62%);
    }
    
    .service-title {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(318, 64%, 22%);
    }
    
    .service-description {
        color: #555;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(318, 64%, 37%);
        font-size: 1.2rem;
        margin-top: auto;
    }
    
    .service-terms {
        font-size: 0.8rem;
        color: #888;
        margin-top: 10px;
    }
    
    .service-tag {
        position: absolute;
        top: 12px;
        right: -30px;
        background: hsl(318, 64%, 62%);
        color: white;
        padding: 5px 30px;
        font-size: 0.8rem;
        transform: rotate(45deg);
        font-weight: 600;
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(318, 64%, 37%), hsl(318, 64%, 22%));
        color: #fff;
        padding: 4rem 0;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin: 3rem 0;
    }
    
    .newsletter-content {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        opacity: 0.9;
    }
    
    .newsletter-benefits {
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 0.8rem;
    }
    
    .benefit-icon {
        margin-right: 10px;
        color: hsl(318, 64%, 62%);
    }
    
    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2.5rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .form-control {
        height: 55px;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.9);
        border: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .form-control:focus {
        box-shadow: 0 0 0 3px hsla(318, 64%, 62%, 0.4);
        border-color: hsl(318, 64%, 62%);
    }
    
    .subscribe-btn {
        background-color: hsl(318, 64%, 62%);
        color: white;
        font-weight: 600;
        height: 55px;
        border: none;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
    
    .subscribe-btn:hover {
        background-color: hsl(318, 74%, 67%);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }
    
    .subscribe-btn:active {
        transform: translateY(0);
    }
    
    .privacy-text {
        font-size: 0.85rem;
        opacity: 0.7;
        margin-top: 1rem;
    }
    
    @media (max-width: 768px) {
        .newsletter-section {
            padding: 3rem 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form {
            padding: 1.5rem;
        }
    }

.testimonials-section {
    background-color: #fff;
    padding: 5rem 0;
    position: relative;
  }
  
  .testimonials-section h2 {
    color: hsl(318, 64%, 37%);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
  }
  
  .testimonials-section h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(318, 64%, 62%);
  }
  
  .testimonial-card {
    background-color: #f9f4f8;
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .testimonial-card:before {
    content: """;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: hsl(318, 64%, 62%);
    opacity: 0.2;
    line-height: 1;
  }
  
  .testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    font-weight: 700;
    color: hsl(318, 64%, 37%);
    margin-bottom: 0.25rem;
  }
  
  .testimonial-location {
    font-size: 0.9rem;
    color: #777;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: hsl(318, 64%, 37%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
  }
  
  .carousel-control-prev {
    left: -20px;
  }
  
  .carousel-control-next {
    right: -20px;
  }
  
  .carousel-indicators {
    bottom: -50px;
  }
  
  .carousel-indicators button {
    background-color: hsl(318, 64%, 22%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
  }
  
  .carousel-indicators .active {
    background-color: hsl(318, 64%, 37%);
  }
  
  @media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
      display: none;
    }
    
    .testimonials-section {
      padding: 3rem 0 5rem;
    }
  }

:root {
    --primary-color: hsl(318, 64%, 37%);
    --secondary-color: hsl(318, 64%, 22%);
    --accent-color: hsl(318, 64%, 62%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Playfair Display', serif;
}

footer h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

footer .footer-links li {
    margin-bottom: 0.75rem;
}

footer .copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

.cookie-btn.outline:hover {
    background-color: var(--accent-color);
    color: white;
}

:root {
            --primary-color: hsl(318, 64%, 37%);
            --secondary-color: hsl(318, 64%, 22%);
            --accent-color: hsl(318, 64%, 62%);
        }
        
        body {
            font-family: 'Cormorant Garamond', serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(318, 64%, 37%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .active {
            color: var(--primary-color) !important;
            font-weight: 600;
        }

.terms-container {
        max-width: 1000px;
        margin: 0 auto;
        font-family: 'Georgia', serif;
        color: #333;
        line-height: 1.6;
    }
    .terms-header {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid #ddd;
    }
    .terms-title {
        font-size: 32px;
        color: #2a2a2a;
        margin-bottom: 10px;
    }
    .terms-subtitle {
        font-size: 18px;
        color: #666;
        font-style: italic;
    }
    .terms-section {
        margin-bottom: 25px;
    }
    .terms-section-title {
        font-size: 22px;
        color: #1a1a1a;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #eee;
    }
    .terms-date {
        text-align: right;
        font-style: italic;
        margin-bottom: 20px;
        color: #777;
    }
    .terms-content {
        margin-bottom: 15px;
    }
    .terms-content ul {
        padding-left: 20px;
    }
    .terms-content li {
        margin-bottom: 8px;
    }

:root {
    --primary-color: hsl(318, 64%, 37%);
    --secondary-color: hsl(318, 64%, 22%);
    --accent-color: hsl(318, 64%, 62%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Playfair Display', serif;
}

footer h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

footer .footer-links li {
    margin-bottom: 0.75rem;
}

footer .copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

.cookie-btn.outline:hover {
    background-color: var(--accent-color);
    color: white;
}

:root {
            --primary-color: hsl(318, 64%, 37%);
            --secondary-color: hsl(318, 64%, 22%);
            --accent-color: hsl(318, 64%, 62%);
        }
        
        body {
            font-family: 'Cormorant Garamond', serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(318, 64%, 37%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .active {
            color: var(--primary-color) !important;
            font-weight: 600;
        }

.faq-section {
  padding: 80px 0;
  background-color: #faf8f9;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title {
  color: hsl(318, 64%, 37%);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.faq-subtitle {
  color: hsl(318, 64%, 22%);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.accordion-button:not(.collapsed) {
  color: hsl(318, 64%, 37%);
  background-color: rgba(231, 156, 203, 0.1);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(231, 156, 203, 0.25);
  border-color: hsl(318, 64%, 62%);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d83da0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d83da0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item {
  border: 1px solid rgba(231, 156, 203, 0.2);
  margin-bottom: 12px;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-body {
  padding: 1.5rem;
  line-height: 1.7;
  color: #444;
}

.accordion-button {
  font-weight: 600;
  padding: 1.25rem 1.5rem;
}

.about-section {
        padding: 80px 0;
        background-color: #fff;
        font-family: 'Playfair Display', serif;
    }
    
    .about-header {
        margin-bottom: 50px;
    }
    
    .about-title {
        color: hsl(318, 64%, 37%);
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
    }
    
    .about-title:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(318, 64%, 62%);
    }
    
    .about-subtitle {
        font-size: 1.2rem;
        color: hsl(318, 64%, 22%);
        font-weight: 400;
        font-style: italic;
        margin-top: 20px;
    }
    
    .about-image {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .about-text {
        margin-bottom: 40px;
    }
    
    .about-text h3 {
        color: hsl(318, 64%, 37%);
        font-size: 1.8rem;
        margin-bottom: 20px;
        position: relative;
    }
    
    .about-text h3:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: hsl(318, 64%, 62%);
    }
    
    .about-text p {
        color: #333;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-values {
        background-color: rgba(242, 214, 231, 0.2);
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 40px;
    }
    
    .about-values h3 {
        color: hsl(318, 64%, 37%);
        margin-bottom: 20px;
    }
    
    .about-values ul {
        list-style-type: none;
        padding-left: 0;
    }
    
    .about-values li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .about-values li:before {
        content: "♪";
        color: hsl(318, 64%, 62%);
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.2rem;
    }
    
    @media (max-width: 768px) {
        .about-title {
            font-size: 2.5rem;
        }
        
        .about-text h3 {
            font-size: 1.5rem;
        }
        
        .about-text p {
            font-size: 1rem;
        }
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(318, 64%, 37%), hsl(318, 64%, 22%));
        color: #fff;
        padding: 4rem 0;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin: 3rem 0;
    }
    
    .newsletter-content {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        opacity: 0.9;
    }
    
    .newsletter-benefits {
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 0.8rem;
    }
    
    .benefit-icon {
        margin-right: 10px;
        color: hsl(318, 64%, 62%);
    }
    
    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2.5rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .form-control {
        height: 55px;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.9);
        border: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .form-control:focus {
        box-shadow: 0 0 0 3px hsla(318, 64%, 62%, 0.4);
        border-color: hsl(318, 64%, 62%);
    }
    
    .subscribe-btn {
        background-color: hsl(318, 64%, 62%);
        color: white;
        font-weight: 600;
        height: 55px;
        border: none;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
    
    .subscribe-btn:hover {
        background-color: hsl(318, 74%, 67%);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }
    
    .subscribe-btn:active {
        transform: translateY(0);
    }
    
    .privacy-text {
        font-size: 0.85rem;
        opacity: 0.7;
        margin-top: 1rem;
    }
    
    @media (max-width: 768px) {
        .newsletter-section {
            padding: 3rem 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form {
            padding: 1.5rem;
        }
    }

:root {
    --primary-color: hsl(318, 64%, 37%);
    --secondary-color: hsl(318, 64%, 22%);
    --accent-color: hsl(318, 64%, 62%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Playfair Display', serif;
}

footer h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

footer .footer-links li {
    margin-bottom: 0.75rem;
}

footer .copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

.cookie-btn.outline:hover {
    background-color: var(--accent-color);
    color: white;
}

:root {
            --primary-color: hsl(318, 64%, 37%);
            --secondary-color: hsl(318, 64%, 22%);
            --accent-color: hsl(318, 64%, 62%);
        }
        
        body {
            font-family: 'Cormorant Garamond', serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(318, 64%, 37%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .active {
            color: var(--primary-color) !important;
            font-weight: 600;
        }

.hero-section {
        padding: 4rem 0;
        background-color: #f9f5f8;
        font-family: 'Playfair Display', serif;
    }

    .hero-container {
        max-width: 760px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
    }

    .hero-img-container {
        margin-bottom: 2rem;
        position: relative;
        overflow: hidden;
        border-radius: 5px;
        box-shadow: 0 15px 30px rgba(193, 44, 134, 0.2);
    }

    .hero-img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }

    .hero-img-container:hover .hero-img {
        transform: scale(1.03);
    }

    .small-icon {
        width: 80px;
        margin-bottom: 1rem;
        color: hsl(318, 64%, 37%);
    }

    h1 {
        color: hsl(318, 64%, 22%);
        font-size: 3.2rem;
        margin-bottom: 1rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        line-height: 1.1;
        animation: fadeIn 1s ease-in;
    }

    h2 {
        color: hsl(318, 64%, 37%);
        font-size: 1.8rem;
        margin-bottom: 2rem;
        font-weight: 400;
        font-style: italic;
        animation: fadeIn 1.5s ease-in;
    }

    .hero-description {
        color: #444;
        line-height: 1.8;
        margin-bottom: 2rem;
        font-size: 1.1rem;
        text-align: left;
        animation: fadeIn 2s ease-in;
    }

    .benefits-list {
        text-align: left;
        margin-bottom: 2.5rem;
        list-style-type: none;
        padding-left: 0;
    }

    .benefits-list li {
        margin-bottom: 1rem;
        padding-left: 2rem;
        position: relative;
        animation: slideIn 0.5s ease-in-out;
        animation-fill-mode: both;
    }

    .benefits-list li:nth-child(1) { animation-delay: 0.2s; }
    .benefits-list li:nth-child(2) { animation-delay: 0.4s; }
    .benefits-list li:nth-child(3) { animation-delay: 0.6s; }
    .benefits-list li:nth-child(4) { animation-delay: 0.8s; }
    .benefits-list li:nth-child(5) { animation-delay: 1s; }

    .benefits-list i {
        color: hsl(318, 64%, 37%);
        position: absolute;
        left: 0;
        top: 5px;
    }

    .cta-buttons {
        margin-top: 2.5rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-primary {
        background-color: hsl(318, 64%, 37%);
        border: none;
        padding: 12px 28px;
        color: white;
        font-weight: 600;
        border-radius: 30px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .btn-primary:hover {
        background-color: hsl(318, 64%, 22%);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(193, 44, 134, 0.2);
    }

    .btn-secondary {
        background-color: transparent;
        border: 2px solid hsl(318, 64%, 37%);
        padding: 10px 26px;
        color: hsl(318, 64%, 37%);
        font-weight: 600;
        border-radius: 30px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .btn-secondary:hover {
        background-color: hsl(318, 64%, 62%);
        border-color: hsl(318, 64%, 62%);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(193, 44, 134, 0.1);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @media (max-width: 768px) {
        h1 {
            font-size: 2.5rem;
        }
        h2 {
            font-size: 1.5rem;
        }
        .hero-description {
            font-size: 1rem;
        }
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
    }

.advantages-section {
    padding: 5rem 0;
    background-color: #f9f4f7;
}

.advantages-section h2 {
    color: hsl(318, 64%, 37%);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.advantages-section h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: hsl(318, 64%, 62%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.advantage-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: 30px;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid hsl(318, 64%, 37%);
}

.advantage-icon {
    font-size: 2.5rem;
    color: hsl(318, 64%, 37%);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    color: hsl(318, 64%, 62%);
    transform: scale(1.1);
}

.advantage-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(318, 64%, 22%);
}

.advantage-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 3rem 0;
    }
    
    .advantage-card {
        margin-bottom: 20px;
    }
}

.statistics-section {
        padding: 5rem 0;
        background-color: #f9f4f7;
    }
    
    .statistics-section h2 {
        color: hsl(318, 64%, 37%);
        margin-bottom: 3rem;
        font-weight: 700;
        position: relative;
    }
    
    .statistics-section h2:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(318, 64%, 62%);
    }
    
    .stat-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: hsl(318, 64%, 37%);
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: hsl(318, 64%, 22%);
    }
    
    .stat-title {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 0.5rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
        color: #888;
    }
    
    .graph-container {
        height: 120px;
        margin-top: 1rem;
        margin-bottom: 1rem;
        position: relative;
    }
    
    .graph-bar {
        position: absolute;
        bottom: 0;
        width: 15%;
        background-color: hsl(318, 64%, 37%);
        border-radius: 4px 4px 0 0;
        transition: height 1s ease;
    }
    
    .graph-bar.bar1 { left: 5%; height: 70%; background-color: hsl(318, 64%, 62%); }
    .graph-bar.bar2 { left: 25%; height: 90%; }
    .graph-bar.bar3 { left: 45%; height: 60%; background-color: hsl(318, 64%, 62%); }
    .graph-bar.bar4 { left: 65%; height: 80%; }
    .graph-bar.bar5 { left: 85%; height: 75%; background-color: hsl(318, 64%, 62%); }
    
    .stat-progress {
        height: 8px;
        margin-top: 1rem;
        background-color: #f0f0f0;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .stat-progress-bar {
        height: 100%;
        background-color: hsl(318, 64%, 37%);
        border-radius: 4px;
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(318, 64%, 37%), hsl(318, 64%, 22%));
        color: #fff;
        padding: 4rem 0;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin: 3rem 0;
    }
    
    .newsletter-content {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        opacity: 0.9;
    }
    
    .newsletter-benefits {
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 0.8rem;
    }
    
    .benefit-icon {
        margin-right: 10px;
        color: hsl(318, 64%, 62%);
    }
    
    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2.5rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .form-control {
        height: 55px;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.9);
        border: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .form-control:focus {
        box-shadow: 0 0 0 3px hsla(318, 64%, 62%, 0.4);
        border-color: hsl(318, 64%, 62%);
    }
    
    .subscribe-btn {
        background-color: hsl(318, 64%, 62%);
        color: white;
        font-weight: 600;
        height: 55px;
        border: none;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
    
    .subscribe-btn:hover {
        background-color: hsl(318, 74%, 67%);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }
    
    .subscribe-btn:active {
        transform: translateY(0);
    }
    
    .privacy-text {
        font-size: 0.85rem;
        opacity: 0.7;
        margin-top: 1rem;
    }
    
    @media (max-width: 768px) {
        .newsletter-section {
            padding: 3rem 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form {
            padding: 1.5rem;
        }
    }

.services-section {
        padding: 80px 0;
        background-color: #f9f5f8;
    }
    
    .services-title {
        color: hsl(318, 64%, 37%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .services-title:after {
        content: "";
        width: 70px;
        height: 3px;
        background: hsl(318, 64%, 62%);
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .service-card {
        background: white;
        border-radius: 8px;
        padding: 30px 25px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 3px solid hsl(318, 64%, 37%);
    }
    
    .service-icon {
        font-size: 2.5rem;
        color: hsl(318, 64%, 37%);
        margin-bottom: 20px;
    }
    
    .service-card:hover .service-icon {
        color: hsl(318, 64%, 62%);
    }
    
    .service-title {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(318, 64%, 22%);
    }
    
    .service-description {
        color: #555;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(318, 64%, 37%);
        font-size: 1.2rem;
        margin-top: auto;
    }
    
    .service-terms {
        font-size: 0.8rem;
        color: #888;
        margin-top: 10px;
    }
    
    .service-tag {
        position: absolute;
        top: 12px;
        right: -30px;
        background: hsl(318, 64%, 62%);
        color: white;
        padding: 5px 30px;
        font-size: 0.8rem;
        transform: rotate(45deg);
        font-weight: 600;
    }

.about-section {
        padding: 80px 0;
        background-color: #fff;
        font-family: 'Playfair Display', serif;
    }
    
    .about-header {
        margin-bottom: 50px;
    }
    
    .about-title {
        color: hsl(318, 64%, 37%);
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
    }
    
    .about-title:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(318, 64%, 62%);
    }
    
    .about-subtitle {
        font-size: 1.2rem;
        color: hsl(318, 64%, 22%);
        font-weight: 400;
        font-style: italic;
        margin-top: 20px;
    }
    
    .about-image {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .about-text {
        margin-bottom: 40px;
    }
    
    .about-text h3 {
        color: hsl(318, 64%, 37%);
        font-size: 1.8rem;
        margin-bottom: 20px;
        position: relative;
    }
    
    .about-text h3:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: hsl(318, 64%, 62%);
    }
    
    .about-text p {
        color: #333;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-values {
        background-color: rgba(242, 214, 231, 0.2);
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 40px;
    }
    
    .about-values h3 {
        color: hsl(318, 64%, 37%);
        margin-bottom: 20px;
    }
    
    .about-values ul {
        list-style-type: none;
        padding-left: 0;
    }
    
    .about-values li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .about-values li:before {
        content: "♪";
        color: hsl(318, 64%, 62%);
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.2rem;
    }
    
    @media (max-width: 768px) {
        .about-title {
            font-size: 2.5rem;
        }
        
        .about-text h3 {
            font-size: 1.5rem;
        }
        
        .about-text p {
            font-size: 1rem;
        }
    }

.testimonials-section {
    background-color: #fff;
    padding: 5rem 0;
    position: relative;
  }
  
  .testimonials-section h2 {
    color: hsl(318, 64%, 37%);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
  }
  
  .testimonials-section h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(318, 64%, 62%);
  }
  
  .testimonial-card {
    background-color: #f9f4f8;
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .testimonial-card:before {
    content: """;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: hsl(318, 64%, 62%);
    opacity: 0.2;
    line-height: 1;
  }
  
  .testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    font-weight: 700;
    color: hsl(318, 64%, 37%);
    margin-bottom: 0.25rem;
  }
  
  .testimonial-location {
    font-size: 0.9rem;
    color: #777;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: hsl(318, 64%, 37%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
  }
  
  .carousel-control-prev {
    left: -20px;
  }
  
  .carousel-control-next {
    right: -20px;
  }
  
  .carousel-indicators {
    bottom: -50px;
  }
  
  .carousel-indicators button {
    background-color: hsl(318, 64%, 22%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
  }
  
  .carousel-indicators .active {
    background-color: hsl(318, 64%, 37%);
  }
  
  @media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
      display: none;
    }
    
    .testimonials-section {
      padding: 3rem 0 5rem;
    }
  }

.contact-section {
        padding: 100px 0;
        background-color: #f9f5f8;
        position: relative;
    }
    
    .contact-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(193, 53, 132, 0.05) 0%, rgba(193, 53, 132, 0.1) 100%);
        z-index: 1;
    }
    
    .contact-container {
        position: relative;
        z-index: 2;
    }
    
    .contact-title {
        color: hsl(318, 64%, 22%);
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        color: hsl(318, 64%, 37%);
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .contact-form {
        background-color: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(193, 53, 132, 0.1);
    }
    
    .form-label {
        color: hsl(318, 64%, 22%);
        font-weight: 600;
    }
    
    .form-control {
        border: 2px solid #f0e6ec;
        padding: 12px 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: hsl(318, 64%, 37%);
        box-shadow: 0 0 0 0.25rem rgba(193, 53, 132, 0.15);
    }
    
    .contact-btn {
        background-color: hsl(318, 64%, 37%);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .contact-btn:hover {
        background-color: hsl(318, 64%, 22%);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(193, 53, 132, 0.2);
    }
    
    .contact-info-box {
        background-color: white;
        padding: 30px;
        border-radius: 15px;
        height: 100%;
        box-shadow: 0 10px 30px rgba(193, 53, 132, 0.1);
    }
    
    .contact-info-title {
        color: hsl(318, 64%, 37%);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 1.5rem;
    }
    
    .contact-info-text {
        color: #666;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    
    .operating-hours {
        margin-top: 30px;
    }
    
    .hours-title {
        color: hsl(318, 64%, 37%);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    
    .hours-list {
        list-style: none;
        padding: 0;
    }
    
    .hours-list li {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px dashed #f0e6ec;
    }
    
    .hours-list li:last-child {
        border-bottom: none;
    }
    
    .day {
        font-weight: 600;
        color: hsl(318, 64%, 22%);
    }
    
    .time {
        color: #666;
    }
    
    .consultation-steps {
        margin-top: 30px;
    }
    
    .step-item {
        display: flex;
        margin-bottom: 20px;
    }
    
    .step-number {
        background-color: hsl(318, 64%, 62%);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .step-content {
        color: #666;
    }
    
    .step-title {
        color: hsl(318, 64%, 22%);
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    @media (max-width: 991px) {
        .contact-info-box {
            margin-top: 40px;
        }
    }

.faq-section {
  padding: 80px 0;
  background-color: #faf8f9;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title {
  color: hsl(318, 64%, 37%);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.faq-subtitle {
  color: hsl(318, 64%, 22%);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.accordion-button:not(.collapsed) {
  color: hsl(318, 64%, 37%);
  background-color: rgba(231, 156, 203, 0.1);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(231, 156, 203, 0.25);
  border-color: hsl(318, 64%, 62%);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d83da0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d83da0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item {
  border: 1px solid rgba(231, 156, 203, 0.2);
  margin-bottom: 12px;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-body {
  padding: 1.5rem;
  line-height: 1.7;
  color: #444;
}

.accordion-button {
  font-weight: 600;
  padding: 1.25rem 1.5rem;
}

:root {
    --primary-color: hsl(318, 64%, 37%);
    --secondary-color: hsl(318, 64%, 22%);
    --accent-color: hsl(318, 64%, 62%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Playfair Display', serif;
}

footer h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

footer .footer-links li {
    margin-bottom: 0.75rem;
}

footer .copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

.cookie-btn.outline:hover {
    background-color: var(--accent-color);
    color: white;
}