:root {
            --primary: hsl(272, 41%, 37%);
            --secondary: hsl(272, 41%, 22%);
            --accent: hsl(272, 41%, 62%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .dropdown-menu {
            background-color: var(--secondary);
            border: none;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .dropdown-item {
            color: white;
            padding: 10px 20px;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--accent);
            color: var(--secondary);
            transform: translateX(5px);
        }

.about-section {
        padding: 4rem 0;
        background-color: #f8f9fa;
    }
    
    .about-header {
        color: hsl(272, 41%, 37%);
        margin-bottom: 2rem;
        font-weight: 700;
        text-align: center;
    }
    
    .about-subheader {
        color: hsl(272, 41%, 22%);
        margin-bottom: 1.5rem;
        font-weight: 600;
    }
    
    .about-text {
        color: #555;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    
    .about-image {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 2rem;
    }
    
    .about-highlight {
        background-color: hsl(272, 41%, 62%, 0.1);
        border-left: 4px solid hsl(272, 41%, 62%);
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 0 10px 10px 0;
    }
    
    .about-values-card {
        padding: 1.5rem;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        background-color: white;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }
    
    .about-values-card:hover {
        transform: translateY(-5px);
    }
    
    .about-values-card i {
        color: hsl(272, 41%, 37%);
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-values-title {
        color: hsl(272, 41%, 22%);
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    
    .about-values-text {
        color: #666;
    }
    
    .about-btn {
        background-color: hsl(272, 41%, 37%);
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .about-btn:hover {
        background-color: hsl(272, 41%, 22%);
        transform: translateY(-2px);
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .advantages-section h2 {
        color: hsl(272, 41%, 37%);
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-section h2:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: hsl(272, 41%, 62%);
    }
    
    .advantage-card {
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        background-color: white;
        transition: all 0.3s ease;
        height: 100%;
        border-bottom: 4px solid transparent;
        margin-bottom: 30px;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 4px solid hsl(272, 41%, 62%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: hsl(272, 41%, 37%);
    }
    
    .advantage-title {
        font-size: 1.5rem;
        color: hsl(272, 41%, 22%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .advantage-text {
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    @media (max-width: 767px) {
        .advantages-section {
            padding: 50px 0;
        }
        
        .advantage-card {
            margin-bottom: 20px;
        }
    }

.statistics-section {
        padding: 100px 0;
        background-color: hsl(272, 41%, 22%);
        color: white;
    }
    
    .statistics-section h2 {
        color: hsl(272, 41%, 62%);
        font-weight: 700;
        margin-bottom: 50px;
        text-align: center;
        font-size: 2.5rem;
    }
    
    .stat-item {
        text-align: center;
        margin-bottom: 40px;
        transition: transform 0.3s ease;
    }
    
    .stat-item:hover {
        transform: translateY(-10px);
    }
    
    .stat-number {
        font-size: 3.5rem;
        font-weight: 700;
        color: hsl(272, 41%, 62%);
        display: block;
        margin-bottom: 10px;
    }
    
    .stat-icon {
        font-size: 2.5rem;
        color: hsl(272, 41%, 37%);
        margin-bottom: 15px;
        background-color: rgba(255, 255, 255, 0.1);
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
        margin: 0 auto 20px;
    }
    
    .stat-description {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .statistics-divider {
        height: 3px;
        width: 70px;
        background-color: hsl(272, 41%, 37%);
        margin: 0 auto 20px;
    }
    
    @media (max-width: 768px) {
        .stat-number {
            font-size: 2.8rem;
        }
        
        .stat-icon {
            font-size: 2rem;
            width: 70px;
            height: 70px;
            line-height: 70px;
        }
    }

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

footer p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-links a {
    display: block;
    color: #ddd;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '→';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

/* Cookie Notice Styles */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--secondary-color), 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    backdrop-filter: blur(5px);
}

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

.cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
}

.cookie-accept:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.cookie-learn-more {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--accent-color);
}

.cookie-learn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(272, 41%, 37%);
            --secondary: hsl(272, 41%, 22%);
            --accent: hsl(272, 41%, 62%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .dropdown-menu {
            background-color: var(--secondary);
            border: none;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .dropdown-item {
            color: white;
            padding: 10px 20px;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--accent);
            color: var(--secondary);
            transform: translateX(5px);
        }

.privacy-container {
        font-family: 'Arial', sans-serif;
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    
    .privacy-header {
        border-bottom: 2px solid #2c3e50;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    
    .privacy-title {
        font-size: 32px;
        color: #2c3e50;
        margin-bottom: 10px;
    }
    
    .privacy-subtitle {
        font-size: 16px;
        color: #7f8c8d;
        font-weight: normal;
    }
    
    .privacy-section {
        margin-bottom: 30px;
    }
    
    .privacy-section h2 {
        color: #2c3e50;
        font-size: 24px;
        border-left: 4px solid #3498db;
        padding-left: 15px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .privacy-section h3 {
        color: #34495e;
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .privacy-section p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .privacy-section ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    
    .privacy-section li {
        margin-bottom: 8px;
    }
    
    .privacy-date {
        font-style: italic;
        color: #7f8c8d;
        margin-top: 40px;
        text-align: right;
    }
    
    .privacy-highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-radius: 5px;
        border-left: 3px solid #3498db;
        margin: 20px 0;
    }

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

footer p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-links a {
    display: block;
    color: #ddd;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '→';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

/* Cookie Notice Styles */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--secondary-color), 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    backdrop-filter: blur(5px);
}

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

.cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
}

.cookie-accept:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.cookie-learn-more {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--accent-color);
}

.cookie-learn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(272, 41%, 37%);
            --secondary: hsl(272, 41%, 22%);
            --accent: hsl(272, 41%, 62%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .dropdown-menu {
            background-color: var(--secondary);
            border: none;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .dropdown-item {
            color: white;
            padding: 10px 20px;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--accent);
            color: var(--secondary);
            transform: translateX(5px);
        }

.cookies-policy {
        font-family: 'Arial', sans-serif;
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .cookies-policy h1 {
        color: #1a5276;
        border-bottom: 2px solid #eaecee;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    .cookies-policy h2 {
        color: #2874a6;
        margin-top: 30px;
        border-left: 4px solid #2874a6;
        padding-left: 10px;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .cookies-policy li {
        margin-bottom: 8px;
    }
    .cookies-policy .highlight {
        background-color: #f8f9f9;
        padding: 15px;
        border-radius: 5px;
        border-left: 4px solid #3498db;
        margin: 20px 0;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f2f2f2;
    }
    .cookies-policy .last-updated {
        font-style: italic;
        color: #7f8c8d;
        margin-top: 40px;
    }

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

footer p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-links a {
    display: block;
    color: #ddd;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '→';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

/* Cookie Notice Styles */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--secondary-color), 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    backdrop-filter: blur(5px);
}

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

.cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
}

.cookie-accept:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.cookie-learn-more {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--accent-color);
}

.cookie-learn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(272, 41%, 37%);
            --secondary: hsl(272, 41%, 22%);
            --accent: hsl(272, 41%, 62%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .dropdown-menu {
            background-color: var(--secondary);
            border: none;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .dropdown-item {
            color: white;
            padding: 10px 20px;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--accent);
            color: var(--secondary);
            transform: translateX(5px);
        }

.contact-section {
    padding: 80px 0;
    background: linear-gradient(to bottom right, hsl(272, 41%, 37%), hsl(272, 41%, 22%));
    color: white;
  }
  
  .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
  }
  
  .contact-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: hsl(272, 41%, 62%);
  }
  
  .contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  
  .form-control {
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    padding: 12px 15px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px hsla(272, 41%, 62%, 0.5);
    color: white;
  }
  
  .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }
  
  .submit-btn {
    background-color: hsl(272, 41%, 62%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .submit-btn:hover {
    background-color: hsl(272, 51%, 67%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  }
  
  .contact-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  
  .info-item {
    margin-bottom: 25px;
  }
  
  .info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: hsl(272, 41%, 62%);
  }
  
  .info-item p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .hours-list {
    list-style: none;
    padding-left: 0;
  }
  
  .hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
  }
  
  .map-placeholder {
    background-color: rgba(255, 255, 255, 0.15);
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-style: italic;
    margin-top: 20px;
  }

.about-section {
        padding: 4rem 0;
        background-color: #f8f9fa;
    }
    
    .about-header {
        color: hsl(272, 41%, 37%);
        margin-bottom: 2rem;
        font-weight: 700;
        text-align: center;
    }
    
    .about-subheader {
        color: hsl(272, 41%, 22%);
        margin-bottom: 1.5rem;
        font-weight: 600;
    }
    
    .about-text {
        color: #555;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    
    .about-image {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 2rem;
    }
    
    .about-highlight {
        background-color: hsl(272, 41%, 62%, 0.1);
        border-left: 4px solid hsl(272, 41%, 62%);
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 0 10px 10px 0;
    }
    
    .about-values-card {
        padding: 1.5rem;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        background-color: white;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }
    
    .about-values-card:hover {
        transform: translateY(-5px);
    }
    
    .about-values-card i {
        color: hsl(272, 41%, 37%);
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-values-title {
        color: hsl(272, 41%, 22%);
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    
    .about-values-text {
        color: #666;
    }
    
    .about-btn {
        background-color: hsl(272, 41%, 37%);
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .about-btn:hover {
        background-color: hsl(272, 41%, 22%);
        transform: translateY(-2px);
    }

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

footer p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-links a {
    display: block;
    color: #ddd;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '→';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

/* Cookie Notice Styles */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--secondary-color), 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    backdrop-filter: blur(5px);
}

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

.cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
}

.cookie-accept:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.cookie-learn-more {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--accent-color);
}

.cookie-learn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(272, 41%, 37%);
            --secondary: hsl(272, 41%, 22%);
            --accent: hsl(272, 41%, 62%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .dropdown-menu {
            background-color: var(--secondary);
            border: none;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .dropdown-item {
            color: white;
            padding: 10px 20px;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--accent);
            color: var(--secondary);
            transform: translateX(5px);
        }

.services-section {
        padding: 5rem 0;
        background-color: #f8f5fd;
    }
    
    .services-heading {
        color: hsl(272, 41%, 37%);
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .services-subheading {
        color: hsl(272, 41%, 22%);
        margin-bottom: 2.5rem;
        text-align: center;
        font-weight: 300;
    }
    
    .service-card {
        background-color: white;
        border-radius: 10px;
        padding: 2rem;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: hsl(272, 41%, 62%);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        background-color: hsl(272, 41%, 97%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: hsl(272, 41%, 37%);
        font-size: 1.8rem;
        transition: all 0.3s ease;
    }
    
    .service-card:hover .service-icon {
        background-color: hsl(272, 41%, 37%);
        color: white;
    }
    
    .service-title {
        color: hsl(272, 41%, 22%);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .service-description {
        color: #666;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(272, 41%, 37%);
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .service-condition {
        font-size: 0.85rem;
        color: #888;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
    
    .price-from {
        font-size: 0.8rem;
        font-weight: normal;
        color: #888;
    }

.newsletter-section {
    background: linear-gradient(135deg, hsl(272, 41%, 37%), hsl(272, 41%, 22%));
    color: white;
    padding: 4rem 0;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: hsl(272, 41%, 62%);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: hsl(272, 41%, 62%);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.newsletter-title {
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: hsl(272, 41%, 62%);
}

.newsletter-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

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

.benefit-icon {
    background-color: hsl(272, 41%, 62%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 25px;
    padding-left: 1.5rem;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control:focus {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.newsletter-btn {
    height: 50px;
    background-color: hsl(272, 41%, 62%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-btn:hover {
    background-color: hsl(272, 41%, 52%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.privacy-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

@media (max-width: 767.98px) {
    .newsletter-section {
        padding: 3rem 1.5rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 25px;
        margin-bottom: 1rem;
    }
    
    .newsletter-btn {
        width: 100%;
        border-radius: 25px;
    }
}

.testimonials-section {
  padding: 5rem 0;
  background-color: #f8f5fc;
}

.testimonials-heading {
  color: hsl(272, 41%, 37%);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.testimonials-subheading {
  color: hsl(272, 41%, 22%);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid hsl(272, 41%, 62%);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 700;
  color: hsl(272, 41%, 37%);
  margin-bottom: 0.25rem;
}

.testimonial-location {
  color: hsl(272, 41%, 62%);
  font-size: 0.9rem;
}

.testimonial-quote {
  font-size: 3rem;
  color: hsl(272, 41%, 62%);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

footer p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-links a {
    display: block;
    color: #ddd;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '→';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

/* Cookie Notice Styles */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--secondary-color), 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    backdrop-filter: blur(5px);
}

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

.cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
}

.cookie-accept:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.cookie-learn-more {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--accent-color);
}

.cookie-learn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(272, 41%, 37%);
            --secondary: hsl(272, 41%, 22%);
            --accent: hsl(272, 41%, 62%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .dropdown-menu {
            background-color: var(--secondary);
            border: none;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .dropdown-item {
            color: white;
            padding: 10px 20px;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--accent);
            color: var(--secondary);
            transform: translateX(5px);
        }

.terms-container {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .terms-header {
        border-bottom: 2px solid #d9534f;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
    
    .terms-header h1 {
        color: #d9534f;
        font-size: 2.2em;
        margin-bottom: 10px;
    }
    
    .terms-header p {
        font-style: italic;
        color: #777;
    }
    
    .terms-section {
        margin-bottom: 30px;
    }
    
    .terms-section h2 {
        color: #d9534f;
        font-size: 1.5em;
        border-left: 4px solid #d9534f;
        padding-left: 10px;
        margin-bottom: 15px;
    }
    
    .terms-section p, .terms-section ul {
        margin-bottom: 15px;
    }
    
    .terms-section ul {
        padding-left: 20px;
    }
    
    .terms-section ul li {
        margin-bottom: 8px;
    }
    
    .effective-date {
        font-weight: bold;
        text-align: right;
        margin-top: 40px;
        font-style: italic;
    }

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

footer p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-links a {
    display: block;
    color: #ddd;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '→';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

/* Cookie Notice Styles */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--secondary-color), 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    backdrop-filter: blur(5px);
}

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

.cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
}

.cookie-accept:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.cookie-learn-more {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--accent-color);
}

.cookie-learn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(272, 41%, 37%);
            --secondary: hsl(272, 41%, 22%);
            --accent: hsl(272, 41%, 62%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .dropdown-menu {
            background-color: var(--secondary);
            border: none;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .dropdown-item {
            color: white;
            padding: 10px 20px;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--accent);
            color: var(--secondary);
            transform: translateX(5px);
        }

.faq-section {
    padding: 80px 0;
    background-color: #f9f6ff;
  }
  
  .faq-title {
    color: hsl(272, 41%, 37%);
    margin-bottom: 40px;
    position: relative;
    text-align: center;
  }
  
  .faq-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: hsl(272, 41%, 62%);
    margin: 15px auto;
  }
  
  .faq-card {
    border: none;
    background-color: transparent;
    margin-bottom: 15px;
  }
  
  .faq-btn {
    background-color: white;
    color: hsl(272, 41%, 22%);
    font-weight: 600;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 15px 20px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .faq-btn:hover, .faq-btn:focus {
    background-color: hsl(272, 41%, 95%);
    color: hsl(272, 41%, 37%);
    text-decoration: none;
  }
  
  .faq-btn:not(.collapsed) {
    background-color: hsl(272, 41%, 37%);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .faq-btn:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }
  
  .faq-btn:not(.collapsed):after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  .faq-body {
    padding: 20px;
    background-color: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  }
  
  @media (max-width: 767px) {
    .faq-section {
      padding: 50px 0;
    }
  }

.about-section {
        padding: 4rem 0;
        background-color: #f8f9fa;
    }
    
    .about-header {
        color: hsl(272, 41%, 37%);
        margin-bottom: 2rem;
        font-weight: 700;
        text-align: center;
    }
    
    .about-subheader {
        color: hsl(272, 41%, 22%);
        margin-bottom: 1.5rem;
        font-weight: 600;
    }
    
    .about-text {
        color: #555;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    
    .about-image {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 2rem;
    }
    
    .about-highlight {
        background-color: hsl(272, 41%, 62%, 0.1);
        border-left: 4px solid hsl(272, 41%, 62%);
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 0 10px 10px 0;
    }
    
    .about-values-card {
        padding: 1.5rem;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        background-color: white;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }
    
    .about-values-card:hover {
        transform: translateY(-5px);
    }
    
    .about-values-card i {
        color: hsl(272, 41%, 37%);
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-values-title {
        color: hsl(272, 41%, 22%);
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    
    .about-values-text {
        color: #666;
    }
    
    .about-btn {
        background-color: hsl(272, 41%, 37%);
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .about-btn:hover {
        background-color: hsl(272, 41%, 22%);
        transform: translateY(-2px);
    }

.newsletter-section {
    background: linear-gradient(135deg, hsl(272, 41%, 37%), hsl(272, 41%, 22%));
    color: white;
    padding: 4rem 0;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: hsl(272, 41%, 62%);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: hsl(272, 41%, 62%);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.newsletter-title {
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: hsl(272, 41%, 62%);
}

.newsletter-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

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

.benefit-icon {
    background-color: hsl(272, 41%, 62%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 25px;
    padding-left: 1.5rem;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control:focus {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.newsletter-btn {
    height: 50px;
    background-color: hsl(272, 41%, 62%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-btn:hover {
    background-color: hsl(272, 41%, 52%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.privacy-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

@media (max-width: 767.98px) {
    .newsletter-section {
        padding: 3rem 1.5rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 25px;
        margin-bottom: 1rem;
    }
    
    .newsletter-btn {
        width: 100%;
        border-radius: 25px;
    }
}

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

footer p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-links a {
    display: block;
    color: #ddd;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '→';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

/* Cookie Notice Styles */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--secondary-color), 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    backdrop-filter: blur(5px);
}

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

.cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
}

.cookie-accept:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.cookie-learn-more {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--accent-color);
}

.cookie-learn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(272, 41%, 37%);
            --secondary: hsl(272, 41%, 22%);
            --accent: hsl(272, 41%, 62%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .dropdown-menu {
            background-color: var(--secondary);
            border: none;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .dropdown-item {
            color: white;
            padding: 10px 20px;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--accent);
            color: var(--secondary);
            transform: translateX(5px);
        }

:root {
    --primary: hsl(272, 41%, 37%);
    --secondary: hsl(272, 41%, 22%);
    --accent: hsl(272, 41%, 62%);
    --light: #f8f9fa;
    --dark: #212529;
  }

  .hero-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: var(--secondary);
    color: var(--light);
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
  }

  .hero-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 5px;
    background-color: var(--accent);
  }

  .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--accent);
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
  }

  .hero-benefits {
    margin-bottom: 2.5rem;
  }

  .hero-benefits li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
  }

  .hero-benefits li i {
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 5px;
  }

  .hero-image-container {
    position: relative;
    transform: translateY(-2rem);
  }

  .hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    shape-outside: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
  }

  .cta-primary {
    background-color: var(--accent);
    color: var(--dark);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    font-size: 1.1rem;
    margin-right: 1rem;
  }

  .cta-primary:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .cta-secondary {
    background-color: transparent;
    color: var(--light);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--light);
    font-size: 1.1rem;
  }

  .cta-secondary:hover {
    background-color: var(--light);
    color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .shape-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
  }

  .shape-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
  }

  .badge-accent {
    background-color: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
  }

  @media (max-width: 991px) {
    .hero-title {
      font-size: 2.8rem;
    }
    
    .hero-subtitle {
      font-size: 1.5rem;
    }
    
    .hero-image-container {
      margin-top: 3rem;
      transform: translateY(0);
    }
  }

.services-section {
        padding: 5rem 0;
        background-color: #f8f5fd;
    }
    
    .services-heading {
        color: hsl(272, 41%, 37%);
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .services-subheading {
        color: hsl(272, 41%, 22%);
        margin-bottom: 2.5rem;
        text-align: center;
        font-weight: 300;
    }
    
    .service-card {
        background-color: white;
        border-radius: 10px;
        padding: 2rem;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: hsl(272, 41%, 62%);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        background-color: hsl(272, 41%, 97%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: hsl(272, 41%, 37%);
        font-size: 1.8rem;
        transition: all 0.3s ease;
    }
    
    .service-card:hover .service-icon {
        background-color: hsl(272, 41%, 37%);
        color: white;
    }
    
    .service-title {
        color: hsl(272, 41%, 22%);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .service-description {
        color: #666;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(272, 41%, 37%);
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .service-condition {
        font-size: 0.85rem;
        color: #888;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
    
    .price-from {
        font-size: 0.8rem;
        font-weight: normal;
        color: #888;
    }

.contact-section {
    padding: 80px 0;
    background: linear-gradient(to bottom right, hsl(272, 41%, 37%), hsl(272, 41%, 22%));
    color: white;
  }
  
  .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
  }
  
  .contact-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: hsl(272, 41%, 62%);
  }
  
  .contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  
  .form-control {
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    padding: 12px 15px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px hsla(272, 41%, 62%, 0.5);
    color: white;
  }
  
  .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }
  
  .submit-btn {
    background-color: hsl(272, 41%, 62%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .submit-btn:hover {
    background-color: hsl(272, 51%, 67%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  }
  
  .contact-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  
  .info-item {
    margin-bottom: 25px;
  }
  
  .info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: hsl(272, 41%, 62%);
  }
  
  .info-item p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .hours-list {
    list-style: none;
    padding-left: 0;
  }
  
  .hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
  }
  
  .map-placeholder {
    background-color: rgba(255, 255, 255, 0.15);
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-style: italic;
    margin-top: 20px;
  }

.advantages-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .advantages-section h2 {
        color: hsl(272, 41%, 37%);
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-section h2:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: hsl(272, 41%, 62%);
    }
    
    .advantage-card {
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        background-color: white;
        transition: all 0.3s ease;
        height: 100%;
        border-bottom: 4px solid transparent;
        margin-bottom: 30px;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 4px solid hsl(272, 41%, 62%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: hsl(272, 41%, 37%);
    }
    
    .advantage-title {
        font-size: 1.5rem;
        color: hsl(272, 41%, 22%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .advantage-text {
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    @media (max-width: 767px) {
        .advantages-section {
            padding: 50px 0;
        }
        
        .advantage-card {
            margin-bottom: 20px;
        }
    }

.faq-section {
    padding: 80px 0;
    background-color: #f9f6ff;
  }
  
  .faq-title {
    color: hsl(272, 41%, 37%);
    margin-bottom: 40px;
    position: relative;
    text-align: center;
  }
  
  .faq-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: hsl(272, 41%, 62%);
    margin: 15px auto;
  }
  
  .faq-card {
    border: none;
    background-color: transparent;
    margin-bottom: 15px;
  }
  
  .faq-btn {
    background-color: white;
    color: hsl(272, 41%, 22%);
    font-weight: 600;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 15px 20px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .faq-btn:hover, .faq-btn:focus {
    background-color: hsl(272, 41%, 95%);
    color: hsl(272, 41%, 37%);
    text-decoration: none;
  }
  
  .faq-btn:not(.collapsed) {
    background-color: hsl(272, 41%, 37%);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .faq-btn:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }
  
  .faq-btn:not(.collapsed):after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  .faq-body {
    padding: 20px;
    background-color: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  }
  
  @media (max-width: 767px) {
    .faq-section {
      padding: 50px 0;
    }
  }

.about-section {
        padding: 4rem 0;
        background-color: #f8f9fa;
    }
    
    .about-header {
        color: hsl(272, 41%, 37%);
        margin-bottom: 2rem;
        font-weight: 700;
        text-align: center;
    }
    
    .about-subheader {
        color: hsl(272, 41%, 22%);
        margin-bottom: 1.5rem;
        font-weight: 600;
    }
    
    .about-text {
        color: #555;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    
    .about-image {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 2rem;
    }
    
    .about-highlight {
        background-color: hsl(272, 41%, 62%, 0.1);
        border-left: 4px solid hsl(272, 41%, 62%);
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 0 10px 10px 0;
    }
    
    .about-values-card {
        padding: 1.5rem;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        background-color: white;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }
    
    .about-values-card:hover {
        transform: translateY(-5px);
    }
    
    .about-values-card i {
        color: hsl(272, 41%, 37%);
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-values-title {
        color: hsl(272, 41%, 22%);
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    
    .about-values-text {
        color: #666;
    }
    
    .about-btn {
        background-color: hsl(272, 41%, 37%);
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .about-btn:hover {
        background-color: hsl(272, 41%, 22%);
        transform: translateY(-2px);
    }

.newsletter-section {
    background: linear-gradient(135deg, hsl(272, 41%, 37%), hsl(272, 41%, 22%));
    color: white;
    padding: 4rem 0;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: hsl(272, 41%, 62%);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: hsl(272, 41%, 62%);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.newsletter-title {
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: hsl(272, 41%, 62%);
}

.newsletter-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

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

.benefit-icon {
    background-color: hsl(272, 41%, 62%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 25px;
    padding-left: 1.5rem;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control:focus {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.newsletter-btn {
    height: 50px;
    background-color: hsl(272, 41%, 62%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-btn:hover {
    background-color: hsl(272, 41%, 52%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.privacy-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

@media (max-width: 767.98px) {
    .newsletter-section {
        padding: 3rem 1.5rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 25px;
        margin-bottom: 1rem;
    }
    
    .newsletter-btn {
        width: 100%;
        border-radius: 25px;
    }
}

.statistics-section {
        padding: 100px 0;
        background-color: hsl(272, 41%, 22%);
        color: white;
    }
    
    .statistics-section h2 {
        color: hsl(272, 41%, 62%);
        font-weight: 700;
        margin-bottom: 50px;
        text-align: center;
        font-size: 2.5rem;
    }
    
    .stat-item {
        text-align: center;
        margin-bottom: 40px;
        transition: transform 0.3s ease;
    }
    
    .stat-item:hover {
        transform: translateY(-10px);
    }
    
    .stat-number {
        font-size: 3.5rem;
        font-weight: 700;
        color: hsl(272, 41%, 62%);
        display: block;
        margin-bottom: 10px;
    }
    
    .stat-icon {
        font-size: 2.5rem;
        color: hsl(272, 41%, 37%);
        margin-bottom: 15px;
        background-color: rgba(255, 255, 255, 0.1);
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
        margin: 0 auto 20px;
    }
    
    .stat-description {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .statistics-divider {
        height: 3px;
        width: 70px;
        background-color: hsl(272, 41%, 37%);
        margin: 0 auto 20px;
    }
    
    @media (max-width: 768px) {
        .stat-number {
            font-size: 2.8rem;
        }
        
        .stat-icon {
            font-size: 2rem;
            width: 70px;
            height: 70px;
            line-height: 70px;
        }
    }

.testimonials-section {
  padding: 5rem 0;
  background-color: #f8f5fc;
}

.testimonials-heading {
  color: hsl(272, 41%, 37%);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.testimonials-subheading {
  color: hsl(272, 41%, 22%);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid hsl(272, 41%, 62%);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 700;
  color: hsl(272, 41%, 37%);
  margin-bottom: 0.25rem;
}

.testimonial-location {
  color: hsl(272, 41%, 62%);
  font-size: 0.9rem;
}

.testimonial-quote {
  font-size: 3rem;
  color: hsl(272, 41%, 62%);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

footer p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-links a {
    display: block;
    color: #ddd;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '→';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

/* Cookie Notice Styles */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--secondary-color), 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    backdrop-filter: blur(5px);
}

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

.cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
}

.cookie-accept:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.cookie-learn-more {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--accent-color);
}

.cookie-learn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}