:root {
            --primary-color: hsl(351, 68%, 44%);
            --secondary-color: hsl(351, 68%, 29%);
            --accent-color: hsl(351, 68%, 69%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-brand span {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            padding: 0.5rem 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }

.about-section {
        font-family: 'Montserrat', sans-serif;
        color: #333;
        padding: 80px 0;
        background-color: #fff;
    }
    
    .about-section h1 {
        color: hsl(351, 68%, 44%);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .about-section h2 {
        color: hsl(351, 68%, 29%);
        font-size: 1.8rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .highlight {
        color: hsl(351, 68%, 44%);
        font-weight: 600;
    }
    
    .about-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        border-left: 4px solid hsl(351, 68%, 44%);
    }
    
    .divider {
        height: 3px;
        width: 80px;
        background: hsl(351, 68%, 69%);
        margin: 20px 0;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 40px 0;
        }
        
        .about-section h1 {
            font-size: 2rem;
        }
        
        .about-section h2 {
            font-size: 1.5rem;
        }
        
        .about-image {
            height: 300px;
        }
    }

.advantages-section {
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .advantages-heading {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(351, 68%, 44%);
    }
    
    .advantages-heading h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .advantages-heading p {
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
        color: #666;
    }
    
    .advantage-card {
        background-color: #fff;
        border-radius: 10px;
        padding: 1.5rem;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 3px solid hsl(351, 68%, 44%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
        color: hsl(351, 68%, 44%);
    }
    
    .advantage-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: hsl(351, 68%, 29%);
    }
    
    .advantage-text {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    @media (max-width: 767.98px) {
        .advantages-section {
            padding: 3rem 0;
        }
        
        .advantage-card {
            margin-bottom: 1.5rem;
        }
    }

.statistics-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(222, 70, 97, 0.05) 25%, transparent 25%), 
                      linear-gradient(-45deg, rgba(222, 70, 97, 0.05) 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, rgba(222, 70, 97, 0.05) 75%), 
                      linear-gradient(-45deg, transparent 75%, rgba(222, 70, 97, 0.05) 75%);
    background-size: 20px 20px;
    z-index: 0;
}

.statistics-section .container {
    position: relative;
    z-index: 1;
}

.statistics-header {
    margin-bottom: 4rem;
}

.statistics-header h2 {
    color: hsl(351, 68%, 29%);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.statistics-header h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: hsl(351, 68%, 44%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.statistics-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
}

.stat-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
    border-bottom: 4px solid hsl(351, 68%, 44%);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: hsl(351, 68%, 44%);
    display: inline-block;
    background-color: hsla(351, 68%, 69%, 0.2);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(351, 68%, 29%);
    display: block;
}

.stat-title {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

.progress-bar {
    background-color: hsl(351, 68%, 44%);
}

.progress {
    height: 8px;
    margin-top: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    background-color: #f1f1f1;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .statistics-section {
        padding: 4rem 0;
    }
    
    .statistics-header {
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
}

:root {
    --primary-color: hsl(351, 68%, 44%);
    --secondary-color: hsl(351, 68%, 29%);
    --accent-color: hsl(351, 68%, 69%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-contact a {
    display: block;
    margin-bottom: 0.5rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-text {
    font-size: 0.9rem;
    color: #333;
}

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

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

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary-color: hsl(351, 68%, 44%);
            --secondary-color: hsl(351, 68%, 29%);
            --accent-color: hsl(351, 68%, 69%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-brand span {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            padding: 0.5rem 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }

.privacy-container {
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
    }
    .privacy-header {
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid #eaeaea;
        margin-bottom: 30px;
    }
    .privacy-title {
        font-size: 32px;
        color: #2c3e50;
        margin-bottom: 10px;
    }
    .privacy-subtitle {
        font-size: 18px;
        color: #7f8c8d;
        font-weight: normal;
    }
    .privacy-section {
        margin-bottom: 30px;
    }
    .privacy-section h2 {
        color: #2c3e50;
        font-size: 24px;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    .privacy-section h3 {
        color: #34495e;
        font-size: 20px;
        margin: 20px 0 10px;
    }
    .privacy-section p {
        margin-bottom: 15px;
    }
    .privacy-section ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    .privacy-section li {
        margin-bottom: 8px;
    }
    .privacy-date {
        text-align: center;
        margin-top: 40px;
        color: #7f8c8d;
        font-style: italic;
    }
    .privacy-highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #3498db;
        margin-bottom: 20px;
    }

:root {
    --primary-color: hsl(351, 68%, 44%);
    --secondary-color: hsl(351, 68%, 29%);
    --accent-color: hsl(351, 68%, 69%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-contact a {
    display: block;
    margin-bottom: 0.5rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-text {
    font-size: 0.9rem;
    color: #333;
}

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

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

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary-color: hsl(351, 68%, 44%);
            --secondary-color: hsl(351, 68%, 29%);
            --accent-color: hsl(351, 68%, 69%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-brand span {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            padding: 0.5rem 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }

.cookies-policy {
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Helvetica Neue', Arial, sans-serif;
        color: #333;
        line-height: 1.6;
    }
    .cookies-policy h1 {
        color: #2c3e50;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 2px solid #eaeaea;
        padding-bottom: 0.5rem;
    }
    .cookies-policy h2 {
        color: #3498db;
        font-size: 1.8rem;
        margin: 2rem 0 1rem;
    }
    .cookies-policy p {
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-left: 2rem;
        margin-bottom: 1.5rem;
    }
    .cookies-policy li {
        margin-bottom: 0.5rem;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5rem 0;
    }
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #ddd;
        padding: 0.8rem;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f5f5f5;
    }
    .cookies-policy .highlight {
        background-color: #f8f9fa;
        border-left: 4px solid #3498db;
        padding: 1rem;
        margin: 1.5rem 0;
    }
    .cookies-policy .last-updated {
        font-style: italic;
        color: #7f8c8d;
        margin-top: 2rem;
    }

:root {
    --primary-color: hsl(351, 68%, 44%);
    --secondary-color: hsl(351, 68%, 29%);
    --accent-color: hsl(351, 68%, 69%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-contact a {
    display: block;
    margin-bottom: 0.5rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-text {
    font-size: 0.9rem;
    color: #333;
}

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

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

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary-color: hsl(351, 68%, 44%);
            --secondary-color: hsl(351, 68%, 29%);
            --accent-color: hsl(351, 68%, 69%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-brand span {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            padding: 0.5rem 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }

.contact-section {
        padding: 6rem 0;
        background-color: #f8f9fa;
        position: relative;
    }
    
    .contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
        z-index: 1;
    }
    
    .contact-section .container {
        position: relative;
        z-index: 2;
    }
    
    .contact-title {
        color: hsl(351, 68%, 44%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
    }
    
    .contact-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: hsl(351, 68%, 44%);
    }
    
    .form-container {
        background-color: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2.5rem;
        transition: transform 0.3s ease;
    }
    
    .form-container:hover {
        transform: translateY(-5px);
    }
    
    .form-control {
        border: 1px solid #e1e1e1;
        padding: 0.8rem 1rem;
        margin-bottom: 1.5rem;
        border-radius: 8px;
        transition: all 0.3s;
    }
    
    .form-control:focus {
        border-color: hsl(351, 68%, 44%);
        box-shadow: 0 0 0 0.2rem hsla(351, 68%, 44%, 0.25);
    }
    
    .form-label {
        color: hsl(351, 68%, 29%);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .submit-btn {
        background-color: hsl(351, 68%, 44%);
        color: white;
        border: none;
        padding: 0.8rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s;
        width: 100%;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .submit-btn:hover {
        background-color: hsl(351, 68%, 29%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .submit-btn:active {
        transform: translateY(-1px);
    }
    
    .info-box {
        background-color: white;
        border-radius: 15px;
        padding: 2rem;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-left: 4px solid hsl(351, 68%, 44%);
    }
    
    .info-box h3 {
        color: hsl(351, 68%, 44%);
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        background-color: hsla(351, 68%, 44%, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .info-icon i {
        color: hsl(351, 68%, 44%);
        font-size: 1.5rem;
    }
    
    .time-item {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px dashed #e1e1e1;
        padding: 0.7rem 0;
    }
    
    .time-item:last-child {
        border-bottom: none;
    }
    
    .time-day {
        font-weight: 600;
        color: hsl(351, 68%, 29%);
    }
    
    .time-hours {
        color: #6c757d;
    }
    
    @media (max-width: 768px) {
        .info-box {
            margin-top: 2rem;
        }
    }

.about-section {
        font-family: 'Montserrat', sans-serif;
        color: #333;
        padding: 80px 0;
        background-color: #fff;
    }
    
    .about-section h1 {
        color: hsl(351, 68%, 44%);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .about-section h2 {
        color: hsl(351, 68%, 29%);
        font-size: 1.8rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .highlight {
        color: hsl(351, 68%, 44%);
        font-weight: 600;
    }
    
    .about-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        border-left: 4px solid hsl(351, 68%, 44%);
    }
    
    .divider {
        height: 3px;
        width: 80px;
        background: hsl(351, 68%, 69%);
        margin: 20px 0;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 40px 0;
        }
        
        .about-section h1 {
            font-size: 2rem;
        }
        
        .about-section h2 {
            font-size: 1.5rem;
        }
        
        .about-image {
            height: 300px;
        }
    }

:root {
    --primary-color: hsl(351, 68%, 44%);
    --secondary-color: hsl(351, 68%, 29%);
    --accent-color: hsl(351, 68%, 69%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-contact a {
    display: block;
    margin-bottom: 0.5rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-text {
    font-size: 0.9rem;
    color: #333;
}

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

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

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary-color: hsl(351, 68%, 44%);
            --secondary-color: hsl(351, 68%, 29%);
            --accent-color: hsl(351, 68%, 69%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-brand span {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            padding: 0.5rem 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }

.services-section {
        padding: 80px 0;
        background-color: #f8f8f8;
    }
    
    .service-card {
        display: flex;
        margin-bottom: 30px;
        padding: 25px;
        border-radius: 8px;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-left: 4px solid hsl(351, 68%, 44%);
    }
    
    .icon-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        min-width: 80px;
        margin-right: 20px;
        border-radius: 50%;
        background-color: hsl(351, 68%, 69%);
        color: white;
    }
    
    .service-content h3 {
        color: hsl(351, 68%, 29%);
        margin-bottom: 12px;
        font-weight: 600;
    }
    
    .service-content p {
        color: #666;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .price-tag {
        display: inline-block;
        background-color: hsl(351, 68%, 44%);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
        margin-top: 5px;
    }
    
    .services-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .services-header h2 {
        color: hsl(351, 68%, 44%);
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .services-header p {
        max-width: 700px;
        margin: 0 auto;
        color: #555;
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(351, 68%, 44%) 0%, hsl(351, 68%, 29%) 100%);
        padding: 5rem 0;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .newsletter-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(351, 68%, 69%);
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        line-height: 1.6;
    }
    
    .newsletter-form {
        position: relative;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .newsletter-form input {
        width: 100%;
        padding: 1.2rem 1.5rem;
        border-radius: 50px;
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.95);
        transition: all 0.3s ease;
    }
    
    .newsletter-form input:focus {
        outline: none;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        background: #fff;
    }
    
    .newsletter-form button {
        position: absolute;
        right: 5px;
        top: 5px;
        bottom: 5px;
        padding: 0 2rem;
        border-radius: 50px;
        border: none;
        background-color: hsl(351, 68%, 44%);
        color: white;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .newsletter-form button:hover {
        background-color: hsl(351, 68%, 29%);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .benefits-list {
        margin-top: 3rem;
    }
    
    .benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .benefit-icon {
        background-color: hsla(351, 68%, 69%, 0.2);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
    }
    
    .benefit-icon i {
        color: hsl(351, 68%, 69%);
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
    
    @media (max-width: 768px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form button {
            position: static;
            width: 100%;
            margin-top: 1rem;
            padding: 1rem;
        }
        
        .newsletter-form input {
            border-radius: 8px;
        }
    }

.testimonials-section {
    padding: 5rem 0;
    background-color: #fff;
  }
  
  .section-title {
    color: hsl(351, 68%, 44%);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
  }
  
  .testimonial-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid hsl(351, 68%, 44%);
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.6;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: hsl(351, 68%, 29%);
    margin-bottom: 0.2rem;
  }
  
  .testimonial-location {
    color: hsl(351, 68%, 69%);
    font-size: 0.9rem;
  }
  
  .quote-mark {
    font-size: 3rem;
    color: hsl(351, 68%, 69%);
    opacity: 0.3;
    line-height: 0;
    margin-bottom: 1rem;
  }

:root {
    --primary-color: hsl(351, 68%, 44%);
    --secondary-color: hsl(351, 68%, 29%);
    --accent-color: hsl(351, 68%, 69%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-contact a {
    display: block;
    margin-bottom: 0.5rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-text {
    font-size: 0.9rem;
    color: #333;
}

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

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

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary-color: hsl(351, 68%, 44%);
            --secondary-color: hsl(351, 68%, 29%);
            --accent-color: hsl(351, 68%, 69%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-brand span {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            padding: 0.5rem 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }

.terms-container {
        max-width: 1000px;
        margin: 0 auto;
        font-family: 'Helvetica Neue', Arial, sans-serif;
        line-height: 1.6;
        color: #333;
    }
    
    .terms-header {
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    
    h1 {
        color: #2c3e50;
        font-size: 32px;
        font-weight: 700;
    }
    
    h2 {
        color: #3498db;
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #eee;
    }
    
    p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .last-updated {
        font-style: italic;
        color: #7f8c8d;
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .section {
        margin-bottom: 25px;
    }
    
    .highlight {
        background-color: #f9f9f9;
        padding: 15px;
        border-left: 4px solid #3498db;
        margin: 20px 0;
    }

:root {
    --primary-color: hsl(351, 68%, 44%);
    --secondary-color: hsl(351, 68%, 29%);
    --accent-color: hsl(351, 68%, 69%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-contact a {
    display: block;
    margin-bottom: 0.5rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-text {
    font-size: 0.9rem;
    color: #333;
}

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

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

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary-color: hsl(351, 68%, 44%);
            --secondary-color: hsl(351, 68%, 29%);
            --accent-color: hsl(351, 68%, 69%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-brand span {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            padding: 0.5rem 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }

.faq-section {
    padding: 5rem 0;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.faq-title {
    color: hsl(351, 68%, 44%);
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: hsl(351, 68%, 69%);
}

.accordion-button {
    font-weight: 600;
    color: hsl(351, 68%, 29%);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: none;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 248, 249, 0.9);
    color: hsl(351, 68%, 44%);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(224, 73, 96, 0.2);
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d22b4c'%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: 1.5rem;
    line-height: 1.8;
    color: #4a4a4a;
    background-color: rgba(255, 248, 249, 0.6);
}

.accordion-item {
    border: 1px solid rgba(224, 73, 96, 0.2);
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .accordion-button {
        padding: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

.about-section {
        font-family: 'Montserrat', sans-serif;
        color: #333;
        padding: 80px 0;
        background-color: #fff;
    }
    
    .about-section h1 {
        color: hsl(351, 68%, 44%);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .about-section h2 {
        color: hsl(351, 68%, 29%);
        font-size: 1.8rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .highlight {
        color: hsl(351, 68%, 44%);
        font-weight: 600;
    }
    
    .about-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        border-left: 4px solid hsl(351, 68%, 44%);
    }
    
    .divider {
        height: 3px;
        width: 80px;
        background: hsl(351, 68%, 69%);
        margin: 20px 0;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 40px 0;
        }
        
        .about-section h1 {
            font-size: 2rem;
        }
        
        .about-section h2 {
            font-size: 1.5rem;
        }
        
        .about-image {
            height: 300px;
        }
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(351, 68%, 44%) 0%, hsl(351, 68%, 29%) 100%);
        padding: 5rem 0;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .newsletter-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(351, 68%, 69%);
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        line-height: 1.6;
    }
    
    .newsletter-form {
        position: relative;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .newsletter-form input {
        width: 100%;
        padding: 1.2rem 1.5rem;
        border-radius: 50px;
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.95);
        transition: all 0.3s ease;
    }
    
    .newsletter-form input:focus {
        outline: none;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        background: #fff;
    }
    
    .newsletter-form button {
        position: absolute;
        right: 5px;
        top: 5px;
        bottom: 5px;
        padding: 0 2rem;
        border-radius: 50px;
        border: none;
        background-color: hsl(351, 68%, 44%);
        color: white;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .newsletter-form button:hover {
        background-color: hsl(351, 68%, 29%);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .benefits-list {
        margin-top: 3rem;
    }
    
    .benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .benefit-icon {
        background-color: hsla(351, 68%, 69%, 0.2);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
    }
    
    .benefit-icon i {
        color: hsl(351, 68%, 69%);
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
    
    @media (max-width: 768px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form button {
            position: static;
            width: 100%;
            margin-top: 1rem;
            padding: 1rem;
        }
        
        .newsletter-form input {
            border-radius: 8px;
        }
    }

:root {
    --primary-color: hsl(351, 68%, 44%);
    --secondary-color: hsl(351, 68%, 29%);
    --accent-color: hsl(351, 68%, 69%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-contact a {
    display: block;
    margin-bottom: 0.5rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-text {
    font-size: 0.9rem;
    color: #333;
}

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

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

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary-color: hsl(351, 68%, 44%);
            --secondary-color: hsl(351, 68%, 29%);
            --accent-color: hsl(351, 68%, 69%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-brand span {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            padding: 0.5rem 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }

.hero-section {
    position: relative;
    min-height: 80vh;
    background-color: #f5f5f5;
    padding: 100px 0;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
  }
  
  .hero-image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
  }
  
  .hero-image:hover {
    transform: scale(1.02);
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: hsl(351, 68%, 69%);
  }
  
  .hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .hero-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .hero-features {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-align: left;
  }
  
  .hero-features li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
  }
  
  .hero-features li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: hsl(351, 68%, 69%);
  }
  
  .cta-primary {
    background-color: hsl(351, 68%, 44%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-right: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .cta-primary:hover {
    background-color: hsl(351, 68%, 29%);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  .cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid hsl(351, 68%, 69%);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .cta-secondary:hover {
    background-color: hsl(351, 68%, 69%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.5rem;
    }
    
    .hero-description {
      font-size: 1rem;
      padding: 0 20px;
    }
    
    .cta-primary, .cta-secondary {
      display: block;
      width: 80%;
      margin: 0 auto 15px;
    }
  }

.services-section {
        padding: 80px 0;
        background-color: #f8f8f8;
    }
    
    .service-card {
        display: flex;
        margin-bottom: 30px;
        padding: 25px;
        border-radius: 8px;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-left: 4px solid hsl(351, 68%, 44%);
    }
    
    .icon-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        min-width: 80px;
        margin-right: 20px;
        border-radius: 50%;
        background-color: hsl(351, 68%, 69%);
        color: white;
    }
    
    .service-content h3 {
        color: hsl(351, 68%, 29%);
        margin-bottom: 12px;
        font-weight: 600;
    }
    
    .service-content p {
        color: #666;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .price-tag {
        display: inline-block;
        background-color: hsl(351, 68%, 44%);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
        margin-top: 5px;
    }
    
    .services-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .services-header h2 {
        color: hsl(351, 68%, 44%);
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .services-header p {
        max-width: 700px;
        margin: 0 auto;
        color: #555;
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(351, 68%, 44%) 0%, hsl(351, 68%, 29%) 100%);
        padding: 5rem 0;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .newsletter-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(351, 68%, 69%);
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        line-height: 1.6;
    }
    
    .newsletter-form {
        position: relative;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .newsletter-form input {
        width: 100%;
        padding: 1.2rem 1.5rem;
        border-radius: 50px;
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.95);
        transition: all 0.3s ease;
    }
    
    .newsletter-form input:focus {
        outline: none;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        background: #fff;
    }
    
    .newsletter-form button {
        position: absolute;
        right: 5px;
        top: 5px;
        bottom: 5px;
        padding: 0 2rem;
        border-radius: 50px;
        border: none;
        background-color: hsl(351, 68%, 44%);
        color: white;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .newsletter-form button:hover {
        background-color: hsl(351, 68%, 29%);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .benefits-list {
        margin-top: 3rem;
    }
    
    .benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .benefit-icon {
        background-color: hsla(351, 68%, 69%, 0.2);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
    }
    
    .benefit-icon i {
        color: hsl(351, 68%, 69%);
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
    
    @media (max-width: 768px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form button {
            position: static;
            width: 100%;
            margin-top: 1rem;
            padding: 1rem;
        }
        
        .newsletter-form input {
            border-radius: 8px;
        }
    }

.advantages-section {
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .advantages-heading {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(351, 68%, 44%);
    }
    
    .advantages-heading h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .advantages-heading p {
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
        color: #666;
    }
    
    .advantage-card {
        background-color: #fff;
        border-radius: 10px;
        padding: 1.5rem;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 3px solid hsl(351, 68%, 44%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
        color: hsl(351, 68%, 44%);
    }
    
    .advantage-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: hsl(351, 68%, 29%);
    }
    
    .advantage-text {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    @media (max-width: 767.98px) {
        .advantages-section {
            padding: 3rem 0;
        }
        
        .advantage-card {
            margin-bottom: 1.5rem;
        }
    }

.statistics-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(222, 70, 97, 0.05) 25%, transparent 25%), 
                      linear-gradient(-45deg, rgba(222, 70, 97, 0.05) 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, rgba(222, 70, 97, 0.05) 75%), 
                      linear-gradient(-45deg, transparent 75%, rgba(222, 70, 97, 0.05) 75%);
    background-size: 20px 20px;
    z-index: 0;
}

.statistics-section .container {
    position: relative;
    z-index: 1;
}

.statistics-header {
    margin-bottom: 4rem;
}

.statistics-header h2 {
    color: hsl(351, 68%, 29%);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.statistics-header h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: hsl(351, 68%, 44%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.statistics-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
}

.stat-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
    border-bottom: 4px solid hsl(351, 68%, 44%);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: hsl(351, 68%, 44%);
    display: inline-block;
    background-color: hsla(351, 68%, 69%, 0.2);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(351, 68%, 29%);
    display: block;
}

.stat-title {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

.progress-bar {
    background-color: hsl(351, 68%, 44%);
}

.progress {
    height: 8px;
    margin-top: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    background-color: #f1f1f1;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .statistics-section {
        padding: 4rem 0;
    }
    
    .statistics-header {
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
}

.faq-section {
    padding: 5rem 0;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.faq-title {
    color: hsl(351, 68%, 44%);
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: hsl(351, 68%, 69%);
}

.accordion-button {
    font-weight: 600;
    color: hsl(351, 68%, 29%);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: none;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 248, 249, 0.9);
    color: hsl(351, 68%, 44%);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(224, 73, 96, 0.2);
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d22b4c'%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: 1.5rem;
    line-height: 1.8;
    color: #4a4a4a;
    background-color: rgba(255, 248, 249, 0.6);
}

.accordion-item {
    border: 1px solid rgba(224, 73, 96, 0.2);
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .accordion-button {
        padding: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

.testimonials-section {
    padding: 5rem 0;
    background-color: #fff;
  }
  
  .section-title {
    color: hsl(351, 68%, 44%);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
  }
  
  .testimonial-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid hsl(351, 68%, 44%);
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.6;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: hsl(351, 68%, 29%);
    margin-bottom: 0.2rem;
  }
  
  .testimonial-location {
    color: hsl(351, 68%, 69%);
    font-size: 0.9rem;
  }
  
  .quote-mark {
    font-size: 3rem;
    color: hsl(351, 68%, 69%);
    opacity: 0.3;
    line-height: 0;
    margin-bottom: 1rem;
  }

.about-section {
        font-family: 'Montserrat', sans-serif;
        color: #333;
        padding: 80px 0;
        background-color: #fff;
    }
    
    .about-section h1 {
        color: hsl(351, 68%, 44%);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .about-section h2 {
        color: hsl(351, 68%, 29%);
        font-size: 1.8rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .highlight {
        color: hsl(351, 68%, 44%);
        font-weight: 600;
    }
    
    .about-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        border-left: 4px solid hsl(351, 68%, 44%);
    }
    
    .divider {
        height: 3px;
        width: 80px;
        background: hsl(351, 68%, 69%);
        margin: 20px 0;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 40px 0;
        }
        
        .about-section h1 {
            font-size: 2rem;
        }
        
        .about-section h2 {
            font-size: 1.5rem;
        }
        
        .about-image {
            height: 300px;
        }
    }

.contact-section {
        padding: 6rem 0;
        background-color: #f8f9fa;
        position: relative;
    }
    
    .contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
        z-index: 1;
    }
    
    .contact-section .container {
        position: relative;
        z-index: 2;
    }
    
    .contact-title {
        color: hsl(351, 68%, 44%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
    }
    
    .contact-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: hsl(351, 68%, 44%);
    }
    
    .form-container {
        background-color: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2.5rem;
        transition: transform 0.3s ease;
    }
    
    .form-container:hover {
        transform: translateY(-5px);
    }
    
    .form-control {
        border: 1px solid #e1e1e1;
        padding: 0.8rem 1rem;
        margin-bottom: 1.5rem;
        border-radius: 8px;
        transition: all 0.3s;
    }
    
    .form-control:focus {
        border-color: hsl(351, 68%, 44%);
        box-shadow: 0 0 0 0.2rem hsla(351, 68%, 44%, 0.25);
    }
    
    .form-label {
        color: hsl(351, 68%, 29%);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .submit-btn {
        background-color: hsl(351, 68%, 44%);
        color: white;
        border: none;
        padding: 0.8rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s;
        width: 100%;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .submit-btn:hover {
        background-color: hsl(351, 68%, 29%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .submit-btn:active {
        transform: translateY(-1px);
    }
    
    .info-box {
        background-color: white;
        border-radius: 15px;
        padding: 2rem;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-left: 4px solid hsl(351, 68%, 44%);
    }
    
    .info-box h3 {
        color: hsl(351, 68%, 44%);
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        background-color: hsla(351, 68%, 44%, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .info-icon i {
        color: hsl(351, 68%, 44%);
        font-size: 1.5rem;
    }
    
    .time-item {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px dashed #e1e1e1;
        padding: 0.7rem 0;
    }
    
    .time-item:last-child {
        border-bottom: none;
    }
    
    .time-day {
        font-weight: 600;
        color: hsl(351, 68%, 29%);
    }
    
    .time-hours {
        color: #6c757d;
    }
    
    @media (max-width: 768px) {
        .info-box {
            margin-top: 2rem;
        }
    }

:root {
    --primary-color: hsl(351, 68%, 44%);
    --secondary-color: hsl(351, 68%, 29%);
    --accent-color: hsl(351, 68%, 69%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-contact a {
    display: block;
    margin-bottom: 0.5rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-text {
    font-size: 0.9rem;
    color: #333;
}

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

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

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}