:root {
            --primary: hsl(306, 60%, 37%);
            --secondary: hsl(306, 60%, 22%);
            --accent: hsl(306, 60%, 62%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.3s ease;
            margin: 0 0.5rem;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: var(--accent);
        }
        
        .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='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.about-section {
        font-family: 'Poppins', sans-serif;
        color: #333;
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .about-section h1 {
        color: hsl(306, 60%, 37%);
        font-weight: 700;
        margin-bottom: 2rem;
        font-size: 2.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .about-section h2 {
        color: hsl(306, 60%, 22%);
        font-weight: 600;
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: #555;
    }
    
    .about-img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        margin-bottom: 2rem;
    }
    
    .about-img:hover {
        transform: scale(1.02);
    }
    
    .highlight {
        color: hsl(306, 60%, 37%);
        font-weight: 600;
    }
    
    .about-quote {
        font-style: italic;
        padding: 2rem;
        background-color: rgba(216, 109, 197, 0.1);
        border-left: 4px solid hsl(306, 60%, 37%);
        margin: 2rem 0;
        border-radius: 0 8px 8px 0;
    }
    
    .values-list {
        list-style-type: none;
        padding-left: 0;
    }
    
    .values-list li {
        padding: 0.8rem 0;
        border-bottom: 1px dashed hsl(306, 60%, 62%);
        display: flex;
        align-items: center;
    }
    
    .values-list li:before {
        content: "♪";
        color: hsl(306, 60%, 37%);
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .about-section h1 {
            font-size: 2rem;
        }
        
        .about-section h2 {
            font-size: 1.5rem;
        }
        
        .about-section p {
            font-size: 1rem;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .advantages-section h2 {
        color: hsl(306, 60%, 37%);
        font-size: 2.5rem;
        margin-bottom: 50px;
        position: relative;
        text-align: center;
        font-weight: 700;
    }
    
    .advantages-section h2:after {
        content: '';
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(306, 60%, 62%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantage-card {
        padding: 30px;
        border-radius: 10px;
        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;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: hsl(306, 60%, 62%);
    }
    
    .advantage-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 0;
        background-color: hsl(306, 60%, 37%);
        transition: height 0.5s ease;
    }
    
    .advantage-card:hover:before {
        height: 100%;
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: hsl(306, 60%, 37%);
        display: inline-block;
        transition: transform 0.3s ease;
    }
    
    .advantage-card:hover .advantage-icon {
        transform: scale(1.2);
        color: hsl(306, 60%, 62%);
    }
    
    .advantage-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(306, 60%, 22%);
        transition: color 0.3s ease;
    }
    
    .advantage-card:hover .advantage-title {
        color: hsl(306, 60%, 37%);
    }
    
    .advantage-text {
        color: #555;
        line-height: 1.7;
        margin-bottom: 0;
    }
    
    @media (max-width: 767px) {
        .advantage-card {
            padding: 20px;
        }
        
        .advantage-title {
            font-size: 1.3rem;
        }
    }

.statistics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, hsl(306, 60%, 37%), hsl(306, 60%, 22%));
    color: white;
}

.statistics-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: hsl(306, 60%, 62%);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, hsl(306, 60%, 62%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.graph-container {
    height: 150px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.graph-bar {
    position: absolute;
    bottom: 0;
    width: 12%;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(to top, hsl(306, 60%, 37%), hsl(306, 60%, 62%));
    transition: height 1s ease;
}

.graph-label {
    position: absolute;
    bottom: -25px;
    font-size: 0.7rem;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.circular-progress svg {
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 8;
}

.circle {
    fill: none;
    stroke: hsl(306, 60%, 62%);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
}

:root {
        --primary-color: hsl(306, 60%, 37%);
        --secondary-color: hsl(306, 60%, 22%);
        --accent-color: hsl(306, 60%, 62%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        font-family: 'Montserrat', sans-serif;
    }
    
    footer a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        line-height: 1.6;
    }
    
    .footer-links {
        list-style: none;
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-divider {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin: 2rem 0;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 1rem;
        z-index: 1000;
        display: none;
    }
    
    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s forwards;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .cookie-btn {
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .cookie-accept {
        background-color: var(--primary-color);
        color: white;
    }
    
    .cookie-accept:hover {
        background-color: var(--accent-color);
    }
    
    .cookie-learn {
        background-color: transparent;
        color: white;
        border: 1px solid var(--accent-color);
    }
    
    .cookie-learn:hover {
        background-color: var(--accent-color);
        color: white;
    }

:root {
            --primary: hsl(306, 60%, 37%);
            --secondary: hsl(306, 60%, 22%);
            --accent: hsl(306, 60%, 62%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.3s ease;
            margin: 0 0.5rem;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: var(--accent);
        }
        
        .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='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.privacy-policy {
        font-family: 'Arial', sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    
    .privacy-policy h1 {
        color: #2c3e50;
        font-size: 2.5em;
        margin-bottom: 30px;
        text-align: center;
        border-bottom: 2px solid #3498db;
        padding-bottom: 15px;
    }
    
    .privacy-policy h2 {
        color: #2980b9;
        font-size: 1.8em;
        margin: 30px 0 15px 0;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    
    .privacy-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .privacy-policy ul {
        padding-left: 30px;
        margin-bottom: 20px;
    }
    
    .privacy-policy li {
        margin-bottom: 10px;
    }
    
    .privacy-policy .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #3498db;
        margin: 20px 0;
    }
    
    .privacy-policy .updated-date {
        text-align: right;
        font-style: italic;
        margin-top: 40px;
        color: #7f8c8d;
    }

:root {
        --primary-color: hsl(306, 60%, 37%);
        --secondary-color: hsl(306, 60%, 22%);
        --accent-color: hsl(306, 60%, 62%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        font-family: 'Montserrat', sans-serif;
    }
    
    footer a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        line-height: 1.6;
    }
    
    .footer-links {
        list-style: none;
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-divider {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin: 2rem 0;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 1rem;
        z-index: 1000;
        display: none;
    }
    
    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s forwards;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .cookie-btn {
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .cookie-accept {
        background-color: var(--primary-color);
        color: white;
    }
    
    .cookie-accept:hover {
        background-color: var(--accent-color);
    }
    
    .cookie-learn {
        background-color: transparent;
        color: white;
        border: 1px solid var(--accent-color);
    }
    
    .cookie-learn:hover {
        background-color: var(--accent-color);
        color: white;
    }

:root {
            --primary: hsl(306, 60%, 37%);
            --secondary: hsl(306, 60%, 22%);
            --accent: hsl(306, 60%, 62%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.3s ease;
            margin: 0 0.5rem;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: var(--accent);
        }
        
        .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='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.cookies-policy {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    .cookies-policy h1 {
        color: #2c3e50;
        font-size: 2.2em;
        margin-bottom: 20px;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
    }
    .cookies-policy h2 {
        color: #2980b9;
        font-size: 1.6em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    .cookies-policy li {
        margin-bottom: 8px;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }
    .cookies-policy table, .cookies-policy th, .cookies-policy td {
        border: 1px solid #ddd;
    }
    .cookies-policy th, .cookies-policy td {
        padding: 12px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f2f2f2;
    }
    .cookies-policy .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #3498db;
        margin-bottom: 20px;
    }
    .cookies-policy .date {
        font-style: italic;
        color: #7f8c8d;
        text-align: right;
        margin-top: 40px;
    }

:root {
        --primary-color: hsl(306, 60%, 37%);
        --secondary-color: hsl(306, 60%, 22%);
        --accent-color: hsl(306, 60%, 62%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        font-family: 'Montserrat', sans-serif;
    }
    
    footer a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        line-height: 1.6;
    }
    
    .footer-links {
        list-style: none;
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-divider {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin: 2rem 0;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 1rem;
        z-index: 1000;
        display: none;
    }
    
    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s forwards;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .cookie-btn {
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .cookie-accept {
        background-color: var(--primary-color);
        color: white;
    }
    
    .cookie-accept:hover {
        background-color: var(--accent-color);
    }
    
    .cookie-learn {
        background-color: transparent;
        color: white;
        border: 1px solid var(--accent-color);
    }
    
    .cookie-learn:hover {
        background-color: var(--accent-color);
        color: white;
    }

:root {
            --primary: hsl(306, 60%, 37%);
            --secondary: hsl(306, 60%, 22%);
            --accent: hsl(306, 60%, 62%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.3s ease;
            margin: 0 0.5rem;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: var(--accent);
        }
        
        .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='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.contact-section {
        padding: 100px 0;
        background-color: #f9f5fa;
        position: relative;
        overflow: hidden;
    }
    
    .contact-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(186, 80, 151, 0.1) 0%, rgba(186, 80, 151, 0.05) 100%);
        z-index: 0;
    }
    
    .contact-section .container {
        position: relative;
        z-index: 1;
    }
    
    .contact-heading {
        color: hsl(306, 60%, 22%);
        margin-bottom: 20px;
        font-weight: 700;
        position: relative;
    }
    
    .contact-heading::after {
        content: "";
        display: block;
        width: 70px;
        height: 3px;
        background-color: hsl(306, 60%, 37%);
        margin-top: 15px;
    }
    
    .contact-subheading {
        color: hsl(306, 60%, 37%);
        margin-bottom: 30px;
        font-weight: 400;
    }
    
    .contact-form {
        background-color: white;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    .form-label {
        color: hsl(306, 60%, 22%);
        font-weight: 500;
    }
    
    .form-control {
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        padding: 12px 15px;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: hsl(306, 60%, 37%);
        box-shadow: 0 0 0 0.2rem rgba(186, 80, 151, 0.25);
    }
    
    .contact-btn {
        background-color: hsl(306, 60%, 37%);
        border: none;
        color: white;
        padding: 14px 30px;
        border-radius: 4px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .contact-btn:hover {
        background-color: hsl(306, 60%, 22%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(186, 80, 151, 0.3);
    }
    
    .contact-info {
        background-color: white;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 100%;
    }
    
    .hours-title {
        color: hsl(306, 60%, 37%);
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .hours-list {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .hours-list li {
        margin-bottom: 10px;
        color: #555;
        display: flex;
        justify-content: space-between;
    }
    
    .contact-process {
        margin-top: 30px;
    }
    
    .process-title {
        color: hsl(306, 60%, 37%);
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .iframe-container {
        position: relative;
        overflow: hidden;
        padding-top: 56.25%;
        margin-top: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .iframe-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    
    @media (max-width: 991px) {
        .contact-info {
            margin-top: 30px;
        }
    }

.about-section {
        font-family: 'Poppins', sans-serif;
        color: #333;
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .about-section h1 {
        color: hsl(306, 60%, 37%);
        font-weight: 700;
        margin-bottom: 2rem;
        font-size: 2.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .about-section h2 {
        color: hsl(306, 60%, 22%);
        font-weight: 600;
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: #555;
    }
    
    .about-img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        margin-bottom: 2rem;
    }
    
    .about-img:hover {
        transform: scale(1.02);
    }
    
    .highlight {
        color: hsl(306, 60%, 37%);
        font-weight: 600;
    }
    
    .about-quote {
        font-style: italic;
        padding: 2rem;
        background-color: rgba(216, 109, 197, 0.1);
        border-left: 4px solid hsl(306, 60%, 37%);
        margin: 2rem 0;
        border-radius: 0 8px 8px 0;
    }
    
    .values-list {
        list-style-type: none;
        padding-left: 0;
    }
    
    .values-list li {
        padding: 0.8rem 0;
        border-bottom: 1px dashed hsl(306, 60%, 62%);
        display: flex;
        align-items: center;
    }
    
    .values-list li:before {
        content: "♪";
        color: hsl(306, 60%, 37%);
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .about-section h1 {
            font-size: 2rem;
        }
        
        .about-section h2 {
            font-size: 1.5rem;
        }
        
        .about-section p {
            font-size: 1rem;
        }
    }

:root {
        --primary-color: hsl(306, 60%, 37%);
        --secondary-color: hsl(306, 60%, 22%);
        --accent-color: hsl(306, 60%, 62%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        font-family: 'Montserrat', sans-serif;
    }
    
    footer a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        line-height: 1.6;
    }
    
    .footer-links {
        list-style: none;
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-divider {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin: 2rem 0;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 1rem;
        z-index: 1000;
        display: none;
    }
    
    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s forwards;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .cookie-btn {
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .cookie-accept {
        background-color: var(--primary-color);
        color: white;
    }
    
    .cookie-accept:hover {
        background-color: var(--accent-color);
    }
    
    .cookie-learn {
        background-color: transparent;
        color: white;
        border: 1px solid var(--accent-color);
    }
    
    .cookie-learn:hover {
        background-color: var(--accent-color);
        color: white;
    }

:root {
            --primary: hsl(306, 60%, 37%);
            --secondary: hsl(306, 60%, 22%);
            --accent: hsl(306, 60%, 62%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.3s ease;
            margin: 0 0.5rem;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: var(--accent);
        }
        
        .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='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.services-section {
        padding: 5rem 0;
        background-color: #f9f4fa;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(306, 60%, 22%);
        position: relative;
    }
    
    .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(306, 60%, 37%);
    }
    
    .service-card {
        background-color: white;
        border-radius: 10px;
        padding: 2rem;
        height: 100%;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
        overflow: hidden;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: hsl(306, 60%, 62%);
    }
    
    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 0;
        background-color: hsl(306, 60%, 37%);
        transition: height 0.3s ease;
    }
    
    .service-card:hover::before {
        height: 100%;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: hsl(306, 60%, 37%);
        transition: all 0.3s ease;
    }
    
    .service-card:hover .service-icon {
        transform: scale(1.2);
        color: hsl(306, 60%, 62%);
    }
    
    .service-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: hsl(306, 60%, 22%);
    }
    
    .service-description {
        color: #666;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        font-size: 1.25rem;
        color: hsl(306, 60%, 37%);
        display: block;
        margin-top: auto;
    }
    
    .service-note {
        font-size: 0.8rem;
        color: #888;
        font-style: italic;
        margin-top: 0.5rem;
    }
    
    @media (max-width: 768px) {
        .service-card {
            margin-bottom: 2rem;
        }
    }

.newsletter-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, hsl(306, 60%, 37%) 0%, hsl(306, 60%, 22%) 100%);
        color: white;
        border-radius: 10px;
        margin: 2rem 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        font-weight: 300;
        line-height: 1.6;
    }

    .newsletter-benefits {
        margin-bottom: 2rem;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    .benefit-icon {
        margin-right: 0.75rem;
        color: hsl(306, 60%, 62%);
        font-size: 1.2rem;
    }

    .newsletter-form {
        background: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 8px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .form-control {
        height: 3.5rem;
        background-color: rgba(255, 255, 255, 0.9);
        border: none;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        color: #333;
        font-size: 1.1rem;
    }

    .form-control:focus {
        box-shadow: 0 0 0 3px hsl(306, 60%, 62%, 0.5);
        border: none;
    }

    .btn-subscribe {
        background-color: hsl(306, 60%, 62%);
        color: white;
        border: none;
        height: 3.5rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .btn-subscribe:hover {
        background-color: hsl(306, 65%, 55%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .privacy-notice {
        margin-top: 1rem;
        font-size: 0.85rem;
        opacity: 0.7;
    }

    @media (max-width: 767px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form {
            padding: 1.5rem;
        }
    }

.testimonial-section {
        background-color: hsl(306, 60%, 97%);
        padding: 80px 0;
    }
    
    .testimonial-heading {
        color: hsl(306, 60%, 22%);
        margin-bottom: 50px;
        font-weight: 700;
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: 8px;
        padding: 30px;
        margin: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        height: 100%;
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        color: #555;
        line-height: 1.6;
    }
    
    .client-name {
        font-weight: 700;
        color: hsl(306, 60%, 37%);
        margin-bottom: 5px;
    }
    
    .client-location {
        color: hsl(306, 60%, 62%);
        font-size: 0.9rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: hsl(306, 60%, 37%);
        padding: 25px;
        border-radius: 50%;
    }
    
    .carousel-indicators button {
        background-color: hsl(306, 60%, 37%) !important;
        height: 10px !important;
        width: 10px !important;
        border-radius: 50% !important;
        margin: 0 5px !important;
    }

:root {
        --primary-color: hsl(306, 60%, 37%);
        --secondary-color: hsl(306, 60%, 22%);
        --accent-color: hsl(306, 60%, 62%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        font-family: 'Montserrat', sans-serif;
    }
    
    footer a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        line-height: 1.6;
    }
    
    .footer-links {
        list-style: none;
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-divider {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin: 2rem 0;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 1rem;
        z-index: 1000;
        display: none;
    }
    
    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s forwards;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .cookie-btn {
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .cookie-accept {
        background-color: var(--primary-color);
        color: white;
    }
    
    .cookie-accept:hover {
        background-color: var(--accent-color);
    }
    
    .cookie-learn {
        background-color: transparent;
        color: white;
        border: 1px solid var(--accent-color);
    }
    
    .cookie-learn:hover {
        background-color: var(--accent-color);
        color: white;
    }

:root {
            --primary: hsl(306, 60%, 37%);
            --secondary: hsl(306, 60%, 22%);
            --accent: hsl(306, 60%, 62%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.3s ease;
            margin: 0 0.5rem;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: var(--accent);
        }
        
        .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='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.terms-container {
        font-family: 'Arial', sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    
    .terms-header {
        border-bottom: 2px solid #8a2be2;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
    
    .terms-title {
        font-size: 32px;
        color: #8a2be2;
        margin-bottom: 10px;
    }
    
    .terms-subtitle {
        font-size: 16px;
        color: #666;
    }
    
    .terms-section {
        margin-bottom: 30px;
    }
    
    .terms-section-title {
        font-size: 24px;
        color: #8a2be2;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #eee;
    }
    
    .terms-content {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .terms-list {
        margin-left: 20px;
        margin-bottom: 15px;
    }
    
    .terms-list li {
        margin-bottom: 8px;
    }
    
    .terms-updated {
        font-style: italic;
        color: #666;
        margin-top: 40px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }

:root {
        --primary-color: hsl(306, 60%, 37%);
        --secondary-color: hsl(306, 60%, 22%);
        --accent-color: hsl(306, 60%, 62%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        font-family: 'Montserrat', sans-serif;
    }
    
    footer a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        line-height: 1.6;
    }
    
    .footer-links {
        list-style: none;
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-divider {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin: 2rem 0;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 1rem;
        z-index: 1000;
        display: none;
    }
    
    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s forwards;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .cookie-btn {
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .cookie-accept {
        background-color: var(--primary-color);
        color: white;
    }
    
    .cookie-accept:hover {
        background-color: var(--accent-color);
    }
    
    .cookie-learn {
        background-color: transparent;
        color: white;
        border: 1px solid var(--accent-color);
    }
    
    .cookie-learn:hover {
        background-color: var(--accent-color);
        color: white;
    }

:root {
            --primary: hsl(306, 60%, 37%);
            --secondary: hsl(306, 60%, 22%);
            --accent: hsl(306, 60%, 62%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.3s ease;
            margin: 0 0.5rem;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: var(--accent);
        }
        
        .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='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.faq-section {
        padding: 80px 0;
        background-color: #f9f0f7;
    }
    .faq-header {
        text-align: center;
        margin-bottom: 50px;
    }
    .faq-header h2 {
        color: hsl(306, 60%, 37%);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 2.5rem;
    }
    .faq-header p {
        color: hsl(306, 60%, 22%);
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
    }
    .faq-tabs {
        margin-bottom: 30px;
        border-bottom: 2px solid hsl(306, 60%, 37%);
    }
    .faq-tabs .nav-link {
        border: none;
        color: #333;
        font-weight: 600;
        padding: 12px 20px;
        border-radius: 0;
        margin-right: 5px;
        transition: all 0.3s ease;
    }
    .faq-tabs .nav-link:hover {
        background-color: hsl(306, 60%, 90%);
    }
    .faq-tabs .nav-link.active {
        background-color: hsl(306, 60%, 37%);
        color: white;
    }
    .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .accordion-button {
        background-color: white;
        color: hsl(306, 60%, 22%);
        font-weight: 600;
        padding: 20px 25px;
    }
    .accordion-button:not(.collapsed) {
        background-color: hsl(306, 60%, 37%);
        color: white;
        box-shadow: none;
    }
    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }
    .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='%23fff'%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-body {
        padding: 20px 25px;
        line-height: 1.6;
        color: #444;
        background-color: white;
    }
    @media (max-width: 768px) {
        .faq-tabs .nav-link {
            padding: 10px 15px;
            font-size: 14px;
        }
        .faq-header h2 {
            font-size: 2rem;
        }
    }

.about-section {
        font-family: 'Poppins', sans-serif;
        color: #333;
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .about-section h1 {
        color: hsl(306, 60%, 37%);
        font-weight: 700;
        margin-bottom: 2rem;
        font-size: 2.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .about-section h2 {
        color: hsl(306, 60%, 22%);
        font-weight: 600;
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: #555;
    }
    
    .about-img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        margin-bottom: 2rem;
    }
    
    .about-img:hover {
        transform: scale(1.02);
    }
    
    .highlight {
        color: hsl(306, 60%, 37%);
        font-weight: 600;
    }
    
    .about-quote {
        font-style: italic;
        padding: 2rem;
        background-color: rgba(216, 109, 197, 0.1);
        border-left: 4px solid hsl(306, 60%, 37%);
        margin: 2rem 0;
        border-radius: 0 8px 8px 0;
    }
    
    .values-list {
        list-style-type: none;
        padding-left: 0;
    }
    
    .values-list li {
        padding: 0.8rem 0;
        border-bottom: 1px dashed hsl(306, 60%, 62%);
        display: flex;
        align-items: center;
    }
    
    .values-list li:before {
        content: "♪";
        color: hsl(306, 60%, 37%);
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .about-section h1 {
            font-size: 2rem;
        }
        
        .about-section h2 {
            font-size: 1.5rem;
        }
        
        .about-section p {
            font-size: 1rem;
        }
    }

.newsletter-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, hsl(306, 60%, 37%) 0%, hsl(306, 60%, 22%) 100%);
        color: white;
        border-radius: 10px;
        margin: 2rem 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        font-weight: 300;
        line-height: 1.6;
    }

    .newsletter-benefits {
        margin-bottom: 2rem;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    .benefit-icon {
        margin-right: 0.75rem;
        color: hsl(306, 60%, 62%);
        font-size: 1.2rem;
    }

    .newsletter-form {
        background: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 8px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .form-control {
        height: 3.5rem;
        background-color: rgba(255, 255, 255, 0.9);
        border: none;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        color: #333;
        font-size: 1.1rem;
    }

    .form-control:focus {
        box-shadow: 0 0 0 3px hsl(306, 60%, 62%, 0.5);
        border: none;
    }

    .btn-subscribe {
        background-color: hsl(306, 60%, 62%);
        color: white;
        border: none;
        height: 3.5rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .btn-subscribe:hover {
        background-color: hsl(306, 65%, 55%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .privacy-notice {
        margin-top: 1rem;
        font-size: 0.85rem;
        opacity: 0.7;
    }

    @media (max-width: 767px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form {
            padding: 1.5rem;
        }
    }

:root {
        --primary-color: hsl(306, 60%, 37%);
        --secondary-color: hsl(306, 60%, 22%);
        --accent-color: hsl(306, 60%, 62%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        font-family: 'Montserrat', sans-serif;
    }
    
    footer a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        line-height: 1.6;
    }
    
    .footer-links {
        list-style: none;
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-divider {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin: 2rem 0;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 1rem;
        z-index: 1000;
        display: none;
    }
    
    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s forwards;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .cookie-btn {
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .cookie-accept {
        background-color: var(--primary-color);
        color: white;
    }
    
    .cookie-accept:hover {
        background-color: var(--accent-color);
    }
    
    .cookie-learn {
        background-color: transparent;
        color: white;
        border: 1px solid var(--accent-color);
    }
    
    .cookie-learn:hover {
        background-color: var(--accent-color);
        color: white;
    }

:root {
            --primary: hsl(306, 60%, 37%);
            --secondary: hsl(306, 60%, 22%);
            --accent: hsl(306, 60%, 62%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.3s ease;
            margin: 0 0.5rem;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: var(--accent);
        }
        
        .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='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.hero-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    overflow: hidden;
  }
  
  .hero-title {
    color: hsl(306, 60%, 37%);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 3rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    color: hsl(306, 60%, 22%);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  
  .hero-description {
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.7;
  }
  
  .hero-list {
    margin-bottom: 2rem;
  }
  
  .hero-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
  }
  
  .hero-list i {
    color: hsl(306, 60%, 37%);
    margin-right: 0.75rem;
    font-size: 1.25rem;
  }
  
  .btn-primary {
    background-color: hsl(306, 60%, 37%);
    border-color: hsl(306, 60%, 37%);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: hsl(306, 60%, 22%);
    border-color: hsl(306, 60%, 22%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn-outline-primary {
    color: hsl(306, 60%, 37%);
    border-color: hsl(306, 60%, 37%);
    padding: 0.75rem 2rem;
    font-weight: 600;
    margin-left: 1rem;
    transition: all 0.3s ease;
  }
  
  .btn-outline-primary:hover {
    background-color: hsl(306, 60%, 62%);
    border-color: hsl(306, 60%, 62%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .hero-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
  }
  
  .hero-image:hover {
    transform: scale(1.02);
  }
  
  @media (max-width: 991.98px) {
    .hero-content {
      padding-top: 2rem;
    }
    
    .hero-title {
      font-size: 2.5rem;
    }
    
    .btn-outline-primary {
      margin-left: 0;
      margin-top: 1rem;
    }
  }

.advantages-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .advantages-section h2 {
        color: hsl(306, 60%, 37%);
        font-size: 2.5rem;
        margin-bottom: 50px;
        position: relative;
        text-align: center;
        font-weight: 700;
    }
    
    .advantages-section h2:after {
        content: '';
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(306, 60%, 62%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantage-card {
        padding: 30px;
        border-radius: 10px;
        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;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: hsl(306, 60%, 62%);
    }
    
    .advantage-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 0;
        background-color: hsl(306, 60%, 37%);
        transition: height 0.5s ease;
    }
    
    .advantage-card:hover:before {
        height: 100%;
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: hsl(306, 60%, 37%);
        display: inline-block;
        transition: transform 0.3s ease;
    }
    
    .advantage-card:hover .advantage-icon {
        transform: scale(1.2);
        color: hsl(306, 60%, 62%);
    }
    
    .advantage-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(306, 60%, 22%);
        transition: color 0.3s ease;
    }
    
    .advantage-card:hover .advantage-title {
        color: hsl(306, 60%, 37%);
    }
    
    .advantage-text {
        color: #555;
        line-height: 1.7;
        margin-bottom: 0;
    }
    
    @media (max-width: 767px) {
        .advantage-card {
            padding: 20px;
        }
        
        .advantage-title {
            font-size: 1.3rem;
        }
    }

.about-section {
        font-family: 'Poppins', sans-serif;
        color: #333;
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .about-section h1 {
        color: hsl(306, 60%, 37%);
        font-weight: 700;
        margin-bottom: 2rem;
        font-size: 2.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .about-section h2 {
        color: hsl(306, 60%, 22%);
        font-weight: 600;
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: #555;
    }
    
    .about-img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        margin-bottom: 2rem;
    }
    
    .about-img:hover {
        transform: scale(1.02);
    }
    
    .highlight {
        color: hsl(306, 60%, 37%);
        font-weight: 600;
    }
    
    .about-quote {
        font-style: italic;
        padding: 2rem;
        background-color: rgba(216, 109, 197, 0.1);
        border-left: 4px solid hsl(306, 60%, 37%);
        margin: 2rem 0;
        border-radius: 0 8px 8px 0;
    }
    
    .values-list {
        list-style-type: none;
        padding-left: 0;
    }
    
    .values-list li {
        padding: 0.8rem 0;
        border-bottom: 1px dashed hsl(306, 60%, 62%);
        display: flex;
        align-items: center;
    }
    
    .values-list li:before {
        content: "♪";
        color: hsl(306, 60%, 37%);
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .about-section h1 {
            font-size: 2rem;
        }
        
        .about-section h2 {
            font-size: 1.5rem;
        }
        
        .about-section p {
            font-size: 1rem;
        }
    }

.services-section {
        padding: 5rem 0;
        background-color: #f9f4fa;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(306, 60%, 22%);
        position: relative;
    }
    
    .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(306, 60%, 37%);
    }
    
    .service-card {
        background-color: white;
        border-radius: 10px;
        padding: 2rem;
        height: 100%;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
        overflow: hidden;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: hsl(306, 60%, 62%);
    }
    
    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 0;
        background-color: hsl(306, 60%, 37%);
        transition: height 0.3s ease;
    }
    
    .service-card:hover::before {
        height: 100%;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: hsl(306, 60%, 37%);
        transition: all 0.3s ease;
    }
    
    .service-card:hover .service-icon {
        transform: scale(1.2);
        color: hsl(306, 60%, 62%);
    }
    
    .service-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: hsl(306, 60%, 22%);
    }
    
    .service-description {
        color: #666;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        font-size: 1.25rem;
        color: hsl(306, 60%, 37%);
        display: block;
        margin-top: auto;
    }
    
    .service-note {
        font-size: 0.8rem;
        color: #888;
        font-style: italic;
        margin-top: 0.5rem;
    }
    
    @media (max-width: 768px) {
        .service-card {
            margin-bottom: 2rem;
        }
    }

.faq-section {
        padding: 80px 0;
        background-color: #f9f0f7;
    }
    .faq-header {
        text-align: center;
        margin-bottom: 50px;
    }
    .faq-header h2 {
        color: hsl(306, 60%, 37%);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 2.5rem;
    }
    .faq-header p {
        color: hsl(306, 60%, 22%);
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
    }
    .faq-tabs {
        margin-bottom: 30px;
        border-bottom: 2px solid hsl(306, 60%, 37%);
    }
    .faq-tabs .nav-link {
        border: none;
        color: #333;
        font-weight: 600;
        padding: 12px 20px;
        border-radius: 0;
        margin-right: 5px;
        transition: all 0.3s ease;
    }
    .faq-tabs .nav-link:hover {
        background-color: hsl(306, 60%, 90%);
    }
    .faq-tabs .nav-link.active {
        background-color: hsl(306, 60%, 37%);
        color: white;
    }
    .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .accordion-button {
        background-color: white;
        color: hsl(306, 60%, 22%);
        font-weight: 600;
        padding: 20px 25px;
    }
    .accordion-button:not(.collapsed) {
        background-color: hsl(306, 60%, 37%);
        color: white;
        box-shadow: none;
    }
    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }
    .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='%23fff'%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-body {
        padding: 20px 25px;
        line-height: 1.6;
        color: #444;
        background-color: white;
    }
    @media (max-width: 768px) {
        .faq-tabs .nav-link {
            padding: 10px 15px;
            font-size: 14px;
        }
        .faq-header h2 {
            font-size: 2rem;
        }
    }

.testimonial-section {
        background-color: hsl(306, 60%, 97%);
        padding: 80px 0;
    }
    
    .testimonial-heading {
        color: hsl(306, 60%, 22%);
        margin-bottom: 50px;
        font-weight: 700;
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: 8px;
        padding: 30px;
        margin: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        height: 100%;
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        color: #555;
        line-height: 1.6;
    }
    
    .client-name {
        font-weight: 700;
        color: hsl(306, 60%, 37%);
        margin-bottom: 5px;
    }
    
    .client-location {
        color: hsl(306, 60%, 62%);
        font-size: 0.9rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: hsl(306, 60%, 37%);
        padding: 25px;
        border-radius: 50%;
    }
    
    .carousel-indicators button {
        background-color: hsl(306, 60%, 37%) !important;
        height: 10px !important;
        width: 10px !important;
        border-radius: 50% !important;
        margin: 0 5px !important;
    }

.contact-section {
        padding: 100px 0;
        background-color: #f9f5fa;
        position: relative;
        overflow: hidden;
    }
    
    .contact-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(186, 80, 151, 0.1) 0%, rgba(186, 80, 151, 0.05) 100%);
        z-index: 0;
    }
    
    .contact-section .container {
        position: relative;
        z-index: 1;
    }
    
    .contact-heading {
        color: hsl(306, 60%, 22%);
        margin-bottom: 20px;
        font-weight: 700;
        position: relative;
    }
    
    .contact-heading::after {
        content: "";
        display: block;
        width: 70px;
        height: 3px;
        background-color: hsl(306, 60%, 37%);
        margin-top: 15px;
    }
    
    .contact-subheading {
        color: hsl(306, 60%, 37%);
        margin-bottom: 30px;
        font-weight: 400;
    }
    
    .contact-form {
        background-color: white;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    .form-label {
        color: hsl(306, 60%, 22%);
        font-weight: 500;
    }
    
    .form-control {
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        padding: 12px 15px;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: hsl(306, 60%, 37%);
        box-shadow: 0 0 0 0.2rem rgba(186, 80, 151, 0.25);
    }
    
    .contact-btn {
        background-color: hsl(306, 60%, 37%);
        border: none;
        color: white;
        padding: 14px 30px;
        border-radius: 4px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .contact-btn:hover {
        background-color: hsl(306, 60%, 22%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(186, 80, 151, 0.3);
    }
    
    .contact-info {
        background-color: white;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 100%;
    }
    
    .hours-title {
        color: hsl(306, 60%, 37%);
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .hours-list {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .hours-list li {
        margin-bottom: 10px;
        color: #555;
        display: flex;
        justify-content: space-between;
    }
    
    .contact-process {
        margin-top: 30px;
    }
    
    .process-title {
        color: hsl(306, 60%, 37%);
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .iframe-container {
        position: relative;
        overflow: hidden;
        padding-top: 56.25%;
        margin-top: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .iframe-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    
    @media (max-width: 991px) {
        .contact-info {
            margin-top: 30px;
        }
    }

.newsletter-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, hsl(306, 60%, 37%) 0%, hsl(306, 60%, 22%) 100%);
        color: white;
        border-radius: 10px;
        margin: 2rem 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        font-weight: 300;
        line-height: 1.6;
    }

    .newsletter-benefits {
        margin-bottom: 2rem;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    .benefit-icon {
        margin-right: 0.75rem;
        color: hsl(306, 60%, 62%);
        font-size: 1.2rem;
    }

    .newsletter-form {
        background: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 8px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .form-control {
        height: 3.5rem;
        background-color: rgba(255, 255, 255, 0.9);
        border: none;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        color: #333;
        font-size: 1.1rem;
    }

    .form-control:focus {
        box-shadow: 0 0 0 3px hsl(306, 60%, 62%, 0.5);
        border: none;
    }

    .btn-subscribe {
        background-color: hsl(306, 60%, 62%);
        color: white;
        border: none;
        height: 3.5rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .btn-subscribe:hover {
        background-color: hsl(306, 65%, 55%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .privacy-notice {
        margin-top: 1rem;
        font-size: 0.85rem;
        opacity: 0.7;
    }

    @media (max-width: 767px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form {
            padding: 1.5rem;
        }
    }

.statistics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, hsl(306, 60%, 37%), hsl(306, 60%, 22%));
    color: white;
}

.statistics-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: hsl(306, 60%, 62%);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, hsl(306, 60%, 62%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.graph-container {
    height: 150px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.graph-bar {
    position: absolute;
    bottom: 0;
    width: 12%;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(to top, hsl(306, 60%, 37%), hsl(306, 60%, 62%));
    transition: height 1s ease;
}

.graph-label {
    position: absolute;
    bottom: -25px;
    font-size: 0.7rem;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.circular-progress svg {
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 8;
}

.circle {
    fill: none;
    stroke: hsl(306, 60%, 62%);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
}

:root {
        --primary-color: hsl(306, 60%, 37%);
        --secondary-color: hsl(306, 60%, 22%);
        --accent-color: hsl(306, 60%, 62%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        font-family: 'Montserrat', sans-serif;
    }
    
    footer a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        line-height: 1.6;
    }
    
    .footer-links {
        list-style: none;
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-divider {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin: 2rem 0;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 1rem;
        z-index: 1000;
        display: none;
    }
    
    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s forwards;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .cookie-btn {
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .cookie-accept {
        background-color: var(--primary-color);
        color: white;
    }
    
    .cookie-accept:hover {
        background-color: var(--accent-color);
    }
    
    .cookie-learn {
        background-color: transparent;
        color: white;
        border: 1px solid var(--accent-color);
    }
    
    .cookie-learn:hover {
        background-color: var(--accent-color);
        color: white;
    }