:root {
            --primary-color: hsl(28, 67%, 48%);
            --secondary-color: hsl(28, 67%, 33%);
            --accent-color: hsl(28, 67%, 73%);
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.5rem;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            font-size: 1.1rem;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28193, 125, 58, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.about-section {
        padding: 5rem 0;
        color: #333;
        font-family: 'Playfair Display', serif;
    }
    
    .about-heading {
        color: hsl(28, 67%, 33%);
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
        font-size: 2.5rem;
    }
    
    .about-subheading {
        color: hsl(28, 67%, 48%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .about-text {
        line-height: 1.8;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .about-card {
        background-color: white;
        border-radius: 8px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .about-card:hover {
        transform: translateY(-5px);
    }
    
    .about-card-icon {
        font-size: 2.5rem;
        color: hsl(28, 67%, 48%);
        margin-bottom: 1rem;
    }
    
    .about-divider {
        height: 3px;
        width: 80px;
        background-color: hsl(28, 67%, 73%);
        margin: 2rem auto;
    }
    
    .about-quote {
        font-style: italic;
        font-size: 1.3rem;
        color: hsl(28, 67%, 33%);
        text-align: center;
        margin: 2rem 0;
        padding: 1rem;
        border-left: 4px solid hsl(28, 67%, 73%);
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .about-heading {
            font-size: 2rem;
        }
        
        .about-subheading {
            font-size: 1.5rem;
        }
        
        .order-md-1 {
            order: 2 !important;
        }
        
        .order-md-2 {
            order: 1 !important;
        }
    }

.advantages-section {
    padding: 80px 0;
    background-color: #faf6f2;
}

.advantages-section h2 {
    color: hsl(28, 67%, 33%);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.advantages-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: hsl(28, 67%, 48%);
    margin: 15px auto 0;
}

.advantage-card {
    padding: 30px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 3px solid hsl(28, 67%, 48%);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: hsl(28, 67%, 48%);
    display: inline-block;
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: hsl(28, 67%, 33%);
    font-weight: 600;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .advantages-section {
        padding: 50px 0;
    }
    
    .advantage-card {
        padding: 25px 15px;
    }
}

.stats-section {
    padding: 80px 0;
    background-color: #fff;
}

.stats-section h2 {
    color: hsl(28, 67%, 33%);
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.stats-card {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stats-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: hsl(28, 67%, 48%);
}

.stats-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: hsl(28, 67%, 33%);
}

.stats-text {
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
}

.stats-description {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    color: #666;
}

@media (max-width: 768px) {
    .stats-card {
        margin-bottom: 20px;
    }
    
    .stats-number {
        font-size: 2.2rem;
    }
    
    .stats-icon {
        font-size: 2rem;
    }
}

:root {
    --primary-color: hsl(28, 67%, 48%);
    --secondary-color: hsl(28, 67%, 33%);
    --accent-color: hsl(28, 67%, 73%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    display: none;
    border-top: 3px solid var(--primary-color);
}

.cookie-notice p {
    margin-bottom: 1rem;
    color: #333;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

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

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

.cookie-btn.outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

:root {
            --primary-color: hsl(28, 67%, 48%);
            --secondary-color: hsl(28, 67%, 33%);
            --accent-color: hsl(28, 67%, 73%);
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.5rem;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            font-size: 1.1rem;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28193, 125, 58, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.privacy-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    
    .privacy-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .privacy-title {
        font-size: 36px;
        color: #2c3e50;
        margin-bottom: 15px;
    }
    
    .privacy-subtitle {
        font-size: 18px;
        color: #7f8c8d;
        font-weight: normal;
    }
    
    .privacy-section {
        margin-bottom: 30px;
    }
    
    .privacy-section h2 {
        color: #2c3e50;
        font-size: 24px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .privacy-section h3 {
        color: #34495e;
        font-size: 20px;
        margin: 20px 0 10px;
    }
    
    .privacy-date {
        text-align: right;
        font-style: italic;
        color: #95a5a6;
        margin-top: 40px;
    }
    
    .privacy-list {
        padding-left: 20px;
    }
    
    .privacy-list li {
        margin-bottom: 10px;
    }
    
    .privacy-emphasis {
        font-weight: bold;
        color: #e74c3c;
    }
    
    .privacy-contact {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 5px;
        margin-top: 30px;
    }

:root {
    --primary-color: hsl(28, 67%, 48%);
    --secondary-color: hsl(28, 67%, 33%);
    --accent-color: hsl(28, 67%, 73%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    display: none;
    border-top: 3px solid var(--primary-color);
}

.cookie-notice p {
    margin-bottom: 1rem;
    color: #333;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

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

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

.cookie-btn.outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

:root {
            --primary-color: hsl(28, 67%, 48%);
            --secondary-color: hsl(28, 67%, 33%);
            --accent-color: hsl(28, 67%, 73%);
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.5rem;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            font-size: 1.1rem;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28193, 125, 58, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.cookies-policy {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    .cookies-policy h1 {
        color: #1a365d;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 10px;
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    .cookies-policy h2 {
        color: #2a4365;
        margin-top: 2rem;
        font-size: 1.5rem;
        border-left: 4px solid #4299e1;
        padding-left: 10px;
    }
    .cookies-policy p {
        margin-bottom: 1rem;
        text-align: justify;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-left: 2rem;
        margin-bottom: 1.5rem;
    }
    .cookies-policy li {
        margin-bottom: 0.5rem;
    }
    .cookies-policy .highlight {
        background-color: #ebf8ff;
        padding: 15px;
        border-radius: 5px;
        border-left: 5px solid #4299e1;
        margin: 20px 0;
    }
    .cookies-policy .table-container {
        overflow-x: auto;
        margin: 20px 0;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
    }
    .cookies-policy th {
        background-color: #e6f2ff;
        padding: 12px;
        text-align: left;
        border: 1px solid #b3d7ff;
    }
    .cookies-policy td {
        padding: 10px;
        border: 1px solid #e2e8f0;
    }
    .cookies-policy tr:nth-child(even) {
        background-color: #f8fafc;
    }

:root {
    --primary-color: hsl(28, 67%, 48%);
    --secondary-color: hsl(28, 67%, 33%);
    --accent-color: hsl(28, 67%, 73%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    display: none;
    border-top: 3px solid var(--primary-color);
}

.cookie-notice p {
    margin-bottom: 1rem;
    color: #333;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

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

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

.cookie-btn.outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

:root {
            --primary-color: hsl(28, 67%, 48%);
            --secondary-color: hsl(28, 67%, 33%);
            --accent-color: hsl(28, 67%, 73%);
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.5rem;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            font-size: 1.1rem;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28193, 125, 58, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.contact-section {
        padding: 100px 0;
        background-color: #f9f6f2;
    }
    
    .contact-heading {
        color: hsl(28, 67%, 33%);
        font-weight: 700;
        margin-bottom: 30px;
    }
    
    .contact-subheading {
        color: hsl(28, 67%, 48%);
        margin-bottom: 20px;
        font-style: italic;
    }
    
    .contact-info p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #555;
    }
    
    .contact-hours {
        background-color: hsl(28, 67%, 73%);
        padding: 20px;
        border-radius: 10px;
        margin-top: 30px;
    }
    
    .contact-hours h4 {
        color: hsl(28, 67%, 33%);
        margin-bottom: 15px;
    }
    
    .contact-hours p {
        margin-bottom: 10px;
        color: #333;
    }
    
    .contact-form {
        background-color: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .form-label {
        color: hsl(28, 67%, 33%);
        font-weight: 600;
    }
    
    .form-control {
        border: 2px solid #eee;
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 5px;
    }
    
    .form-control:focus {
        border-color: hsl(28, 67%, 48%);
        box-shadow: 0 0 0 0.2rem hsla(28, 67%, 48%, 0.25);
    }
    
    .btn-submit {
        background-color: hsl(28, 67%, 48%);
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .btn-submit:hover {
        background-color: hsl(28, 67%, 33%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.about-section {
        padding: 5rem 0;
        color: #333;
        font-family: 'Playfair Display', serif;
    }
    
    .about-heading {
        color: hsl(28, 67%, 33%);
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
        font-size: 2.5rem;
    }
    
    .about-subheading {
        color: hsl(28, 67%, 48%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .about-text {
        line-height: 1.8;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .about-card {
        background-color: white;
        border-radius: 8px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .about-card:hover {
        transform: translateY(-5px);
    }
    
    .about-card-icon {
        font-size: 2.5rem;
        color: hsl(28, 67%, 48%);
        margin-bottom: 1rem;
    }
    
    .about-divider {
        height: 3px;
        width: 80px;
        background-color: hsl(28, 67%, 73%);
        margin: 2rem auto;
    }
    
    .about-quote {
        font-style: italic;
        font-size: 1.3rem;
        color: hsl(28, 67%, 33%);
        text-align: center;
        margin: 2rem 0;
        padding: 1rem;
        border-left: 4px solid hsl(28, 67%, 73%);
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .about-heading {
            font-size: 2rem;
        }
        
        .about-subheading {
            font-size: 1.5rem;
        }
        
        .order-md-1 {
            order: 2 !important;
        }
        
        .order-md-2 {
            order: 1 !important;
        }
    }

:root {
    --primary-color: hsl(28, 67%, 48%);
    --secondary-color: hsl(28, 67%, 33%);
    --accent-color: hsl(28, 67%, 73%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    display: none;
    border-top: 3px solid var(--primary-color);
}

.cookie-notice p {
    margin-bottom: 1rem;
    color: #333;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

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

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

.cookie-btn.outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

:root {
            --primary-color: hsl(28, 67%, 48%);
            --secondary-color: hsl(28, 67%, 33%);
            --accent-color: hsl(28, 67%, 73%);
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.5rem;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            font-size: 1.1rem;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28193, 125, 58, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.services-section {
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .section-title {
        color: hsl(28, 67%, 33%);
        margin-bottom: 3rem;
        position: relative;
    }
    
    .section-title::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(28, 67%, 48%);
    }
    
    .services-section .nav-tabs {
        border-bottom: 2px solid hsl(28, 67%, 73%);
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    .services-section .nav-link {
        color: #555;
        border: none;
        font-weight: 500;
        padding: 0.75rem 1.5rem;
        margin-right: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .services-section .nav-link:hover {
        color: hsl(28, 67%, 48%);
    }
    
    .services-section .nav-link.active {
        color: hsl(28, 67%, 33%);
        background-color: transparent;
        border-bottom: 3px solid hsl(28, 67%, 48%);
    }
    
    .service-card {
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        background-color: #fff;
        border: 1px solid #eee;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: hsl(28, 67%, 73%);
    }
    
    .service-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        background-color: hsl(28, 67%, 73%);
        border-radius: 50%;
        margin-bottom: 1.5rem;
        color: hsl(28, 67%, 33%);
        font-size: 1.75rem;
    }
    
    .service-title {
        font-weight: 600;
        margin-bottom: 1rem;
        color: hsl(28, 67%, 33%);
    }
    
    .service-price {
        font-weight: bold;
        color: hsl(28, 67%, 48%);
        font-size: 1.25rem;
        margin: 1rem 0;
    }
    
    .service-description {
        color: #666;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .service-terms {
        font-size: 0.85rem;
        color: #888;
        border-top: 1px dashed #ddd;
        padding-top: 1rem;
        margin-top: 1rem;
    }

.newsletter-section {
    background: linear-gradient(to right, hsl(28, 67%, 48%), hsl(28, 67%, 33%));
    padding: 5rem 2rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.newsletter-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

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

.newsletter-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.newsletter-button {
    padding: 1rem 2rem;
    background-color: hsl(28, 67%, 73%);
    color: hsl(28, 67%, 33%);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.newsletter-button:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

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

.benefit-item::before {
    content: "✓";
    margin-right: 0.75rem;
    color: hsl(28, 67%, 73%);
    font-weight: bold;
}

.privacy-notice {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .newsletter-heading {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
}

.testimonials-section {
        background: linear-gradient(to bottom, #fff, hsl(28, 67%, 73%, 0.3));
        padding: 80px 0;
    }

    .testimonials-section h2 {
        color: hsl(28, 67%, 33%);
        font-size: 2.5rem;
        margin-bottom: 50px;
        text-align: center;
        font-weight: 700;
    }

    .testimonial-card {
        background-color: #fff;
        border-radius: 10px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 4px solid hsl(28, 67%, 48%);
    }

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

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

    .testimonial-author {
        font-weight: 600;
        color: hsl(28, 67%, 33%);
        margin-bottom: 5px;
    }

    .testimonial-location {
        color: hsl(28, 67%, 48%);
        font-size: 0.9rem;
    }

    .testimonial-quote {
        font-size: 2rem;
        color: hsl(28, 67%, 73%);
        margin-bottom: 10px;
        display: block;
    }

:root {
    --primary-color: hsl(28, 67%, 48%);
    --secondary-color: hsl(28, 67%, 33%);
    --accent-color: hsl(28, 67%, 73%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    display: none;
    border-top: 3px solid var(--primary-color);
}

.cookie-notice p {
    margin-bottom: 1rem;
    color: #333;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

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

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

.cookie-btn.outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

:root {
            --primary-color: hsl(28, 67%, 48%);
            --secondary-color: hsl(28, 67%, 33%);
            --accent-color: hsl(28, 67%, 73%);
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.5rem;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            font-size: 1.1rem;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28193, 125, 58, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.terms-container {
        font-family: 'Arial', sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    
    .terms-header {
        border-bottom: 2px solid #b8860b;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    
    .terms-title {
        color: #b8860b;
        font-size: 2em;
        margin-bottom: 10px;
    }
    
    .terms-subtitle {
        font-style: italic;
        color: #666;
        margin-bottom: 20px;
    }
    
    .terms-section {
        margin-bottom: 30px;
    }
    
    .terms-section-title {
        color: #b8860b;
        font-size: 1.4em;
        margin-bottom: 15px;
        border-left: 4px solid #b8860b;
        padding-left: 10px;
    }
    
    .terms-paragraph {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .terms-list {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    
    .terms-list-item {
        margin-bottom: 8px;
    }
    
    .terms-footer {
        border-top: 1px solid #ddd;
        padding-top: 20px;
        font-style: italic;
        color: #666;
    }
    
    .terms-date {
        font-weight: bold;
    }

:root {
    --primary-color: hsl(28, 67%, 48%);
    --secondary-color: hsl(28, 67%, 33%);
    --accent-color: hsl(28, 67%, 73%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    display: none;
    border-top: 3px solid var(--primary-color);
}

.cookie-notice p {
    margin-bottom: 1rem;
    color: #333;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

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

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

.cookie-btn.outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

:root {
            --primary-color: hsl(28, 67%, 48%);
            --secondary-color: hsl(28, 67%, 33%);
            --accent-color: hsl(28, 67%, 73%);
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.5rem;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            font-size: 1.1rem;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28193, 125, 58, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

#faq {
        padding: 70px 0;
        background-color: #fff;
    }
    .faq-container h2 {
        color: hsl(28, 67%, 33%);
        margin-bottom: 40px;
        font-weight: 700;
        text-align: center;
    }
    .faq-card {
        border: none;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    }
    .faq-card .card-header {
        background-color: hsl(28, 67%, 73%);
        border: none;
        padding: 18px 25px;
        cursor: pointer;
    }
    .faq-card .card-header h5 {
        color: hsl(28, 67%, 33%);
        font-weight: 600;
        font-size: 18px;
        margin: 0;
    }
    .faq-card .card-body {
        padding: 25px;
        color: #444;
        line-height: 1.7;
        font-size: 16px;
    }
    .faq-card .card-body p:last-child {
        margin-bottom: 0;
    }
    .faq-intro {
        text-align: center;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .faq-intro p {
        color: #666;
        font-size: 18px;
        line-height: 1.6;
    }
    @media (max-width: 768px) {
        .faq-card .card-header h5 {
            font-size: 16px;
        }
        .faq-card .card-body {
            font-size: 15px;
            padding: 20px;
        }
    }

.about-section {
        padding: 5rem 0;
        color: #333;
        font-family: 'Playfair Display', serif;
    }
    
    .about-heading {
        color: hsl(28, 67%, 33%);
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
        font-size: 2.5rem;
    }
    
    .about-subheading {
        color: hsl(28, 67%, 48%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .about-text {
        line-height: 1.8;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .about-card {
        background-color: white;
        border-radius: 8px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .about-card:hover {
        transform: translateY(-5px);
    }
    
    .about-card-icon {
        font-size: 2.5rem;
        color: hsl(28, 67%, 48%);
        margin-bottom: 1rem;
    }
    
    .about-divider {
        height: 3px;
        width: 80px;
        background-color: hsl(28, 67%, 73%);
        margin: 2rem auto;
    }
    
    .about-quote {
        font-style: italic;
        font-size: 1.3rem;
        color: hsl(28, 67%, 33%);
        text-align: center;
        margin: 2rem 0;
        padding: 1rem;
        border-left: 4px solid hsl(28, 67%, 73%);
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .about-heading {
            font-size: 2rem;
        }
        
        .about-subheading {
            font-size: 1.5rem;
        }
        
        .order-md-1 {
            order: 2 !important;
        }
        
        .order-md-2 {
            order: 1 !important;
        }
    }

.newsletter-section {
    background: linear-gradient(to right, hsl(28, 67%, 48%), hsl(28, 67%, 33%));
    padding: 5rem 2rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.newsletter-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

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

.newsletter-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.newsletter-button {
    padding: 1rem 2rem;
    background-color: hsl(28, 67%, 73%);
    color: hsl(28, 67%, 33%);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.newsletter-button:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

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

.benefit-item::before {
    content: "✓";
    margin-right: 0.75rem;
    color: hsl(28, 67%, 73%);
    font-weight: bold;
}

.privacy-notice {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .newsletter-heading {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
}

:root {
    --primary-color: hsl(28, 67%, 48%);
    --secondary-color: hsl(28, 67%, 33%);
    --accent-color: hsl(28, 67%, 73%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    display: none;
    border-top: 3px solid var(--primary-color);
}

.cookie-notice p {
    margin-bottom: 1rem;
    color: #333;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

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

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

.cookie-btn.outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

:root {
            --primary-color: hsl(28, 67%, 48%);
            --secondary-color: hsl(28, 67%, 33%);
            --accent-color: hsl(28, 67%, 73%);
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.5rem;
            letter-spacing: 1px;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            font-size: 1.1rem;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28193, 125, 58, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.hero-section {
    position: relative;
    min-height: 80vh;
    color: #fff;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 1rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: hsl(28, 67%, 73%);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .hero-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
  }
  
  .hero-benefits {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: left;
  }
  
  .hero-benefits li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
  }
  
  .hero-benefits i {
    color: hsl(28, 67%, 73%);
    margin-right: 0.75rem;
  }
  
  .hero-image {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }
  
  .cta-primary {
    background-color: hsl(28, 67%, 48%);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-right: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .cta-primary:hover {
    background-color: hsl(28, 67%, 33%);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  .cta-secondary {
    background-color: transparent;
    border: 2px solid hsl(28, 67%, 73%);
    color: hsl(28, 67%, 73%);
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .cta-secondary:hover {
    background-color: hsl(28, 67%, 73%);
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

.stats-section {
    padding: 80px 0;
    background-color: #fff;
}

.stats-section h2 {
    color: hsl(28, 67%, 33%);
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.stats-card {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stats-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: hsl(28, 67%, 48%);
}

.stats-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: hsl(28, 67%, 33%);
}

.stats-text {
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
}

.stats-description {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    color: #666;
}

@media (max-width: 768px) {
    .stats-card {
        margin-bottom: 20px;
    }
    
    .stats-number {
        font-size: 2.2rem;
    }
    
    .stats-icon {
        font-size: 2rem;
    }
}

.about-section {
        padding: 5rem 0;
        color: #333;
        font-family: 'Playfair Display', serif;
    }
    
    .about-heading {
        color: hsl(28, 67%, 33%);
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
        font-size: 2.5rem;
    }
    
    .about-subheading {
        color: hsl(28, 67%, 48%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .about-text {
        line-height: 1.8;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .about-card {
        background-color: white;
        border-radius: 8px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .about-card:hover {
        transform: translateY(-5px);
    }
    
    .about-card-icon {
        font-size: 2.5rem;
        color: hsl(28, 67%, 48%);
        margin-bottom: 1rem;
    }
    
    .about-divider {
        height: 3px;
        width: 80px;
        background-color: hsl(28, 67%, 73%);
        margin: 2rem auto;
    }
    
    .about-quote {
        font-style: italic;
        font-size: 1.3rem;
        color: hsl(28, 67%, 33%);
        text-align: center;
        margin: 2rem 0;
        padding: 1rem;
        border-left: 4px solid hsl(28, 67%, 73%);
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .about-heading {
            font-size: 2rem;
        }
        
        .about-subheading {
            font-size: 1.5rem;
        }
        
        .order-md-1 {
            order: 2 !important;
        }
        
        .order-md-2 {
            order: 1 !important;
        }
    }

.contact-section {
        padding: 100px 0;
        background-color: #f9f6f2;
    }
    
    .contact-heading {
        color: hsl(28, 67%, 33%);
        font-weight: 700;
        margin-bottom: 30px;
    }
    
    .contact-subheading {
        color: hsl(28, 67%, 48%);
        margin-bottom: 20px;
        font-style: italic;
    }
    
    .contact-info p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #555;
    }
    
    .contact-hours {
        background-color: hsl(28, 67%, 73%);
        padding: 20px;
        border-radius: 10px;
        margin-top: 30px;
    }
    
    .contact-hours h4 {
        color: hsl(28, 67%, 33%);
        margin-bottom: 15px;
    }
    
    .contact-hours p {
        margin-bottom: 10px;
        color: #333;
    }
    
    .contact-form {
        background-color: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .form-label {
        color: hsl(28, 67%, 33%);
        font-weight: 600;
    }
    
    .form-control {
        border: 2px solid #eee;
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 5px;
    }
    
    .form-control:focus {
        border-color: hsl(28, 67%, 48%);
        box-shadow: 0 0 0 0.2rem hsla(28, 67%, 48%, 0.25);
    }
    
    .btn-submit {
        background-color: hsl(28, 67%, 48%);
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .btn-submit:hover {
        background-color: hsl(28, 67%, 33%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.newsletter-section {
    background: linear-gradient(to right, hsl(28, 67%, 48%), hsl(28, 67%, 33%));
    padding: 5rem 2rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.newsletter-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

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

.newsletter-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.newsletter-button {
    padding: 1rem 2rem;
    background-color: hsl(28, 67%, 73%);
    color: hsl(28, 67%, 33%);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.newsletter-button:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

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

.benefit-item::before {
    content: "✓";
    margin-right: 0.75rem;
    color: hsl(28, 67%, 73%);
    font-weight: bold;
}

.privacy-notice {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .newsletter-heading {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
}

.testimonials-section {
        background: linear-gradient(to bottom, #fff, hsl(28, 67%, 73%, 0.3));
        padding: 80px 0;
    }

    .testimonials-section h2 {
        color: hsl(28, 67%, 33%);
        font-size: 2.5rem;
        margin-bottom: 50px;
        text-align: center;
        font-weight: 700;
    }

    .testimonial-card {
        background-color: #fff;
        border-radius: 10px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 4px solid hsl(28, 67%, 48%);
    }

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

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

    .testimonial-author {
        font-weight: 600;
        color: hsl(28, 67%, 33%);
        margin-bottom: 5px;
    }

    .testimonial-location {
        color: hsl(28, 67%, 48%);
        font-size: 0.9rem;
    }

    .testimonial-quote {
        font-size: 2rem;
        color: hsl(28, 67%, 73%);
        margin-bottom: 10px;
        display: block;
    }

#faq {
        padding: 70px 0;
        background-color: #fff;
    }
    .faq-container h2 {
        color: hsl(28, 67%, 33%);
        margin-bottom: 40px;
        font-weight: 700;
        text-align: center;
    }
    .faq-card {
        border: none;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    }
    .faq-card .card-header {
        background-color: hsl(28, 67%, 73%);
        border: none;
        padding: 18px 25px;
        cursor: pointer;
    }
    .faq-card .card-header h5 {
        color: hsl(28, 67%, 33%);
        font-weight: 600;
        font-size: 18px;
        margin: 0;
    }
    .faq-card .card-body {
        padding: 25px;
        color: #444;
        line-height: 1.7;
        font-size: 16px;
    }
    .faq-card .card-body p:last-child {
        margin-bottom: 0;
    }
    .faq-intro {
        text-align: center;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .faq-intro p {
        color: #666;
        font-size: 18px;
        line-height: 1.6;
    }
    @media (max-width: 768px) {
        .faq-card .card-header h5 {
            font-size: 16px;
        }
        .faq-card .card-body {
            font-size: 15px;
            padding: 20px;
        }
    }

.advantages-section {
    padding: 80px 0;
    background-color: #faf6f2;
}

.advantages-section h2 {
    color: hsl(28, 67%, 33%);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.advantages-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: hsl(28, 67%, 48%);
    margin: 15px auto 0;
}

.advantage-card {
    padding: 30px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 3px solid hsl(28, 67%, 48%);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: hsl(28, 67%, 48%);
    display: inline-block;
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: hsl(28, 67%, 33%);
    font-weight: 600;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .advantages-section {
        padding: 50px 0;
    }
    
    .advantage-card {
        padding: 25px 15px;
    }
}

.services-section {
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .section-title {
        color: hsl(28, 67%, 33%);
        margin-bottom: 3rem;
        position: relative;
    }
    
    .section-title::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(28, 67%, 48%);
    }
    
    .services-section .nav-tabs {
        border-bottom: 2px solid hsl(28, 67%, 73%);
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    .services-section .nav-link {
        color: #555;
        border: none;
        font-weight: 500;
        padding: 0.75rem 1.5rem;
        margin-right: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .services-section .nav-link:hover {
        color: hsl(28, 67%, 48%);
    }
    
    .services-section .nav-link.active {
        color: hsl(28, 67%, 33%);
        background-color: transparent;
        border-bottom: 3px solid hsl(28, 67%, 48%);
    }
    
    .service-card {
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        background-color: #fff;
        border: 1px solid #eee;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: hsl(28, 67%, 73%);
    }
    
    .service-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        background-color: hsl(28, 67%, 73%);
        border-radius: 50%;
        margin-bottom: 1.5rem;
        color: hsl(28, 67%, 33%);
        font-size: 1.75rem;
    }
    
    .service-title {
        font-weight: 600;
        margin-bottom: 1rem;
        color: hsl(28, 67%, 33%);
    }
    
    .service-price {
        font-weight: bold;
        color: hsl(28, 67%, 48%);
        font-size: 1.25rem;
        margin: 1rem 0;
    }
    
    .service-description {
        color: #666;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .service-terms {
        font-size: 0.85rem;
        color: #888;
        border-top: 1px dashed #ddd;
        padding-top: 1rem;
        margin-top: 1rem;
    }

:root {
    --primary-color: hsl(28, 67%, 48%);
    --secondary-color: hsl(28, 67%, 33%);
    --accent-color: hsl(28, 67%, 73%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    display: none;
    border-top: 3px solid var(--primary-color);
}

.cookie-notice p {
    margin-bottom: 1rem;
    color: #333;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

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

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

.cookie-btn.outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}