:root {
            --primary: hsl(340, 59%, 31%);
            --secondary: hsl(340, 59%, 16%);
            --accent: hsl(340, 59%, 56%);
        }
        
        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 {
            display: flex;
            align-items: center;
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: #fff;
            opacity: 0.9;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #fff !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: #fff;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                border-radius: 0.5rem;
                margin-top: 0.5rem;
            }
            
            .nav-link:after {
                display: none;
            }
        }

.about-section {
        padding: 100px 0;
        background-color: #f9f5f6;
        color: #333;
        font-family: 'Playfair Display', serif;
    }
    
    .about-title {
        color: hsl(340, 59%, 31%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .about-title:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 3px;
        background-color: hsl(340, 59%, 56%);
    }
    
    .about-subtitle {
        color: hsl(340, 59%, 16%);
        font-weight: 600;
        margin: 25px 0 15px;
    }
    
    .about-text {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #444;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .about-image:hover {
        transform: translateY(-5px);
    }
    
    .about-values {
        margin-top: 40px;
    }
    
    .value-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: hsl(340, 59%, 31%);
        color: white;
        border-radius: 50%;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .value-content {
        flex-grow: 1;
    }
    
    .value-title {
        font-weight: 600;
        color: hsl(340, 59%, 31%);
        margin-bottom: 5px;
    }
    
    .reversed-row {
        flex-direction: row-reverse;
    }
    
    .bg-light-wood {
        background-color: #f9f5f1;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 60px 0;
        }
        
        .value-item {
            flex-direction: column;
        }
        
        .value-icon {
            margin-bottom: 15px;
        }
    }

.advantages-section {
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .advantages-heading {
        text-align: center;
        margin-bottom: 3.5rem;
    }
    
    .advantages-title {
        font-size: 2.5rem;
        color: hsl(340, 59%, 31%);
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .advantages-subtitle {
        font-size: 1.2rem;
        color: #555;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .advantage-card {
        background-color: #f9f9f9;
        border-radius: 10px;
        padding: 2rem;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid #eee;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: hsl(340, 59%, 56%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(340, 59%, 31%);
        margin-bottom: 1.2rem;
    }
    
    .advantage-title {
        font-size: 1.4rem;
        color: hsl(340, 59%, 16%);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .advantage-text {
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    @media (max-width: 767px) {
        .advantage-card {
            margin-bottom: 2rem;
        }
    }

.statistics-section {
    padding: 5rem 0;
    background-color: #f9f5f6;
}

.statistics-section .section-title {
    color: hsl(340, 59%, 31%);
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.statistics-section .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(340, 59%, 56%);
}

.statistics-section .counter-box {
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.statistics-section .counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.statistics-section .counter-icon {
    font-size: 2.5rem;
    color: hsl(340, 59%, 56%);
    margin-bottom: 1rem;
}

.statistics-section .counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(340, 59%, 31%);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.statistics-section .counter-text {
    font-size: 1.1rem;
    color: hsl(340, 59%, 16%);
}

@media (max-width: 768px) {
    .statistics-section .counter-number {
        font-size: 2.5rem;
    }
    
    .statistics-section .counter-text {
        font-size: 1rem;
    }
}

:root {
    --primary-color: hsl(340, 59%, 31%);
    --secondary-color: hsl(340, 59%, 16%);
    --accent-color: hsl(340, 59%, 56%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Raleway', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.5rem;
}

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

.footer-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.footer-links a:hover:before {
    opacity: 1;
    left: -10px;
}

.contact-info {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

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

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(24, 24, 24, 0.95);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-btn-learn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cookie-btn-learn:hover {
    background-color: #fff;
    color: #333;
}

:root {
            --primary: hsl(340, 59%, 31%);
            --secondary: hsl(340, 59%, 16%);
            --accent: hsl(340, 59%, 56%);
        }
        
        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 {
            display: flex;
            align-items: center;
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: #fff;
            opacity: 0.9;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #fff !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: #fff;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                border-radius: 0.5rem;
                margin-top: 0.5rem;
            }
            
            .nav-link:after {
                display: none;
            }
        }

.privacy-container {
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    
    .privacy-header {
        text-align: center;
        margin-bottom: 40px;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 20px;
    }
    
    .privacy-title {
        font-size: 2.5rem;
        color: #5d4037;
        margin-bottom: 10px;
    }
    
    .privacy-subtitle {
        font-size: 1.2rem;
        color: #795548;
        font-weight: normal;
    }
    
    .privacy-section {
        margin-bottom: 30px;
    }
    
    .privacy-section-title {
        font-size: 1.5rem;
        color: #5d4037;
        border-left: 4px solid #8d6e63;
        padding-left: 15px;
        margin-bottom: 20px;
    }
    
    .privacy-content {
        padding: 0 20px;
    }
    
    .privacy-content p {
        margin-bottom: 15px;
    }
    
    .privacy-content ul {
        margin-left: 20px;
        margin-bottom: 15px;
    }
    
    .privacy-content li {
        margin-bottom: 8px;
    }
    
    .privacy-date {
        text-align: right;
        font-style: italic;
        margin-top: 40px;
        color: #757575;
    }
    
    .privacy-highlight {
        background-color: #f5f5f5;
        padding: 20px;
        border-radius: 5px;
        border-left: 4px solid #8d6e63;
        margin: 20px 0;
    }

:root {
    --primary-color: hsl(340, 59%, 31%);
    --secondary-color: hsl(340, 59%, 16%);
    --accent-color: hsl(340, 59%, 56%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Raleway', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.5rem;
}

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

.footer-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.footer-links a:hover:before {
    opacity: 1;
    left: -10px;
}

.contact-info {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

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

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(24, 24, 24, 0.95);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-btn-learn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cookie-btn-learn:hover {
    background-color: #fff;
    color: #333;
}

:root {
            --primary: hsl(340, 59%, 31%);
            --secondary: hsl(340, 59%, 16%);
            --accent: hsl(340, 59%, 56%);
        }
        
        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 {
            display: flex;
            align-items: center;
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: #fff;
            opacity: 0.9;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #fff !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: #fff;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                border-radius: 0.5rem;
                margin-top: 0.5rem;
            }
            
            .nav-link:after {
                display: none;
            }
        }

.cookies-policy {
        font-family: 'Helvetica Neue', Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    .cookies-policy h1 {
        color: #5a3921;
        font-size: 32px;
        margin-bottom: 25px;
        border-bottom: 2px solid #e0d2c3;
        padding-bottom: 10px;
    }
    .cookies-policy h2 {
        color: #7d5a3c;
        font-size: 24px;
        margin: 30px 0 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #e0d2c3;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-bottom: 20px;
        padding-left: 25px;
    }
    .cookies-policy li {
        margin-bottom: 8px;
    }
    .cookies-policy .highlight {
        background-color: #f9f3ee;
        padding: 15px;
        border-left: 4px solid #7d5a3c;
        margin: 20px 0;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #e0d2c3;
        padding: 10px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f9f3ee;
        color: #5a3921;
    }
    .cookies-policy tr:nth-child(even) {
        background-color: #fcfaf8;
    }

:root {
    --primary-color: hsl(340, 59%, 31%);
    --secondary-color: hsl(340, 59%, 16%);
    --accent-color: hsl(340, 59%, 56%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Raleway', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.5rem;
}

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

.footer-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.footer-links a:hover:before {
    opacity: 1;
    left: -10px;
}

.contact-info {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

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

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(24, 24, 24, 0.95);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-btn-learn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cookie-btn-learn:hover {
    background-color: #fff;
    color: #333;
}

:root {
            --primary: hsl(340, 59%, 31%);
            --secondary: hsl(340, 59%, 16%);
            --accent: hsl(340, 59%, 56%);
        }
        
        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 {
            display: flex;
            align-items: center;
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: #fff;
            opacity: 0.9;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #fff !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: #fff;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                border-radius: 0.5rem;
                margin-top: 0.5rem;
            }
            
            .nav-link:after {
                display: none;
            }
        }

.contact-section {
        padding: 120px 0;
        background-color: #f9f5f6;
    }
    
    .contact-heading {
        color: hsl(340, 59%, 31%);
        font-weight: 700;
        margin-bottom: 30px;
    }
    
    .contact-subheading {
        color: hsl(340, 59%, 16%);
        margin-bottom: 40px;
        font-size: 18px;
        line-height: 1.6;
    }
    
    .contact-info-item {
        margin-bottom: 25px;
    }
    
    .contact-info-item i {
        color: hsl(340, 59%, 56%);
        font-size: 24px;
        margin-right: 15px;
    }
    
    .contact-info-title {
        font-weight: 600;
        color: hsl(340, 59%, 31%);
        margin-bottom: 5px;
    }
    
    .contact-info-text {
        color: #555;
        line-height: 1.5;
    }
    
    .consultation-process {
        background-color: #fff;
        border-left: 4px solid hsl(340, 59%, 56%);
        padding: 20px;
        border-radius: 0 8px 8px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin: 40px 0;
    }
    
    .consultation-process h3 {
        color: hsl(340, 59%, 31%);
        margin-bottom: 15px;
    }
    
    .consultation-process p {
        color: #444;
        line-height: 1.6;
    }
    
    .contact-form {
        background-color: white;
        padding: 35px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    
    .form-label {
        color: hsl(340, 59%, 31%);
        font-weight: 600;
    }
    
    .form-control {
        border: 2px solid #f0e0e5;
        padding: 12px 15px;
        height: auto;
        border-radius: 6px;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: hsl(340, 59%, 56%);
        box-shadow: 0 0 0 0.2rem rgba(196, 50, 88, 0.15);
    }
    
    textarea.form-control {
        min-height: 150px;
    }
    
    .submit-btn {
        background-color: hsl(340, 59%, 31%);
        color: white;
        border: none;
        padding: 14px 30px;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        width: 100%;
        text-transform: uppercase;
    }
    
    .submit-btn:hover {
        background-color: hsl(340, 59%, 56%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .business-hours {
        background-color: hsl(340, 59%, 16%);
        color: white;
        border-radius: 8px;
        padding: 20px;
        margin-top: 30px;
    }
    
    .business-hours h4 {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    
    .business-hours p {
        margin-bottom: 8px;
    }
    
    .hours-day {
        font-weight: 600;
    }

.about-section {
        padding: 100px 0;
        background-color: #f9f5f6;
        color: #333;
        font-family: 'Playfair Display', serif;
    }
    
    .about-title {
        color: hsl(340, 59%, 31%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .about-title:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 3px;
        background-color: hsl(340, 59%, 56%);
    }
    
    .about-subtitle {
        color: hsl(340, 59%, 16%);
        font-weight: 600;
        margin: 25px 0 15px;
    }
    
    .about-text {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #444;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .about-image:hover {
        transform: translateY(-5px);
    }
    
    .about-values {
        margin-top: 40px;
    }
    
    .value-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: hsl(340, 59%, 31%);
        color: white;
        border-radius: 50%;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .value-content {
        flex-grow: 1;
    }
    
    .value-title {
        font-weight: 600;
        color: hsl(340, 59%, 31%);
        margin-bottom: 5px;
    }
    
    .reversed-row {
        flex-direction: row-reverse;
    }
    
    .bg-light-wood {
        background-color: #f9f5f1;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 60px 0;
        }
        
        .value-item {
            flex-direction: column;
        }
        
        .value-icon {
            margin-bottom: 15px;
        }
    }

:root {
    --primary-color: hsl(340, 59%, 31%);
    --secondary-color: hsl(340, 59%, 16%);
    --accent-color: hsl(340, 59%, 56%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Raleway', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.5rem;
}

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

.footer-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.footer-links a:hover:before {
    opacity: 1;
    left: -10px;
}

.contact-info {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

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

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(24, 24, 24, 0.95);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-btn-learn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cookie-btn-learn:hover {
    background-color: #fff;
    color: #333;
}

:root {
            --primary: hsl(340, 59%, 31%);
            --secondary: hsl(340, 59%, 16%);
            --accent: hsl(340, 59%, 56%);
        }
        
        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 {
            display: flex;
            align-items: center;
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: #fff;
            opacity: 0.9;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #fff !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: #fff;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                border-radius: 0.5rem;
                margin-top: 0.5rem;
            }
            
            .nav-link:after {
                display: none;
            }
        }

.services-section {
        padding: 5rem 0;
        background-color: #fafafa;
    }
    
    .services-section h2 {
        color: hsl(340, 59%, 31%);
        font-weight: 700;
        margin-bottom: 3rem;
        text-align: center;
        position: relative;
    }
    
    .services-section h2::after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(340, 59%, 56%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .service-card {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 30px 25px;
        height: 100%;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        margin-bottom: 30px;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(340, 59%, 56%);
    }
    
    .service-icon {
        font-size: 2.5rem;
        color: hsl(340, 59%, 31%);
        margin-bottom: 20px;
    }
    
    .service-title {
        color: hsl(340, 59%, 16%);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.25rem;
    }
    
    .service-description {
        color: #555;
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .service-price {
        color: hsl(340, 59%, 31%);
        font-weight: 700;
        font-size: 1.2rem;
        display: block;
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px dashed #eee;
    }
    
    .service-terms {
        font-size: 0.8rem;
        color: #777;
        margin-top: 5px;
    }

.newsletter-section {
    background: linear-gradient(to right, hsl(340, 59%, 31%), hsl(340, 59%, 16%));
    color: #fff;
    padding: 5rem 0;
    border-radius: 8px;
    margin: 4rem 0;
  }
  
  .newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .newsletter-section h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: hsl(340, 59%, 56%);
  }
  
  .newsletter-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  .newsletter-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
  
  .newsletter-form:hover {
    transform: translateY(-5px);
  }
  
  .newsletter-form input[type="email"] {
    height: 55px;
    border-radius: 4px;
    border: none;
    padding-left: 20px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
  }
  
  .newsletter-form input[type="email"]:focus {
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(238, 82, 132, 0.2);
  }
  
  .newsletter-form button {
    height: 55px;
    background-color: hsl(340, 59%, 56%);
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .newsletter-form button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
  }
  
  .newsletter-form button:hover {
    background-color: hsl(340, 59%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .newsletter-form button:hover:before {
    left: 100%;
  }
  
  .newsletter-benefits {
    margin-top: 2rem;
  }
  
  .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .benefit-icon {
    background-color: hsla(340, 59%, 56%, 0.2);
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
  }
  
  .newsletter-tag {
    display: inline-block;
    background-color: hsla(340, 59%, 56%, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-weight: 500;
  }

  @media (max-width: 767px) {
    .newsletter-section {
      padding: 3rem 1rem;
    }
    
    .newsletter-form {
      padding: 1.5rem;
    }
    
    .newsletter-form input[type="email"] {
      margin-bottom: 1rem;
    }
  }

.testimonials-section {
    padding: 100px 0;
    background-color: #f9f5f6;
}

.testimonials-section h2 {
    color: hsl(340, 59%, 31%);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.testimonials-section h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: hsl(340, 59%, 56%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    margin: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

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

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

.testimonial-author {
    font-weight: 700;
    color: hsl(340, 59%, 31%);
    margin-bottom: 5px;
}

.testimonial-location {
    color: hsl(340, 59%, 56%);
    font-size: 14px;
}

.testimonial-rating {
    color: gold;
    margin-bottom: 15px;
}

.carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    background: hsl(340, 59%, 31%);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .carousel-control-prev {
        left: 0;
    }
    
    .carousel-control-next {
        right: 0;
    }
}

:root {
    --primary-color: hsl(340, 59%, 31%);
    --secondary-color: hsl(340, 59%, 16%);
    --accent-color: hsl(340, 59%, 56%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Raleway', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.5rem;
}

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

.footer-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.footer-links a:hover:before {
    opacity: 1;
    left: -10px;
}

.contact-info {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

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

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(24, 24, 24, 0.95);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-btn-learn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cookie-btn-learn:hover {
    background-color: #fff;
    color: #333;
}

:root {
            --primary: hsl(340, 59%, 31%);
            --secondary: hsl(340, 59%, 16%);
            --accent: hsl(340, 59%, 56%);
        }
        
        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 {
            display: flex;
            align-items: center;
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: #fff;
            opacity: 0.9;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #fff !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: #fff;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                border-radius: 0.5rem;
                margin-top: 0.5rem;
            }
            
            .nav-link:after {
                display: none;
            }
        }

.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 #8B4513;
        padding-bottom: 10px;
        margin-bottom: 25px;
    }
    .terms-section {
        margin-bottom: 30px;
    }
    .terms-title {
        color: #5D4037;
        font-size: 28px;
        font-weight: 700;
    }
    .section-title {
        color: #8B4513;
        font-size: 20px;
        font-weight: 600;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .terms-date {
        font-style: italic;
        color: #666;
        margin-bottom: 20px;
    }
    .terms-text {
        text-align: justify;
        margin-bottom: 15px;
    }
    .terms-list {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    .terms-list li {
        margin-bottom: 8px;
    }
    .highlight {
        background-color: #FFF3E0;
        padding: 15px;
        border-left: 4px solid #8B4513;
        margin-bottom: 20px;
    }

:root {
    --primary-color: hsl(340, 59%, 31%);
    --secondary-color: hsl(340, 59%, 16%);
    --accent-color: hsl(340, 59%, 56%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Raleway', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.5rem;
}

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

.footer-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.footer-links a:hover:before {
    opacity: 1;
    left: -10px;
}

.contact-info {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

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

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(24, 24, 24, 0.95);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-btn-learn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cookie-btn-learn:hover {
    background-color: #fff;
    color: #333;
}

:root {
            --primary: hsl(340, 59%, 31%);
            --secondary: hsl(340, 59%, 16%);
            --accent: hsl(340, 59%, 56%);
        }
        
        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 {
            display: flex;
            align-items: center;
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: #fff;
            opacity: 0.9;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #fff !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: #fff;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                border-radius: 0.5rem;
                margin-top: 0.5rem;
            }
            
            .nav-link:after {
                display: none;
            }
        }

.faq-section {
    padding: 4rem 0;
    background-color: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    color: hsl(340, 59%, 31%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    background-color: #fff;
}

.accordion-button {
    font-weight: 600;
    color: hsl(340, 59%, 31%);
    background-color: #fff;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: hsl(340, 59%, 31%);
    background-color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

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

.accordion-body {
    padding: 1.25rem 1.5rem;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
}

.about-section {
        padding: 100px 0;
        background-color: #f9f5f6;
        color: #333;
        font-family: 'Playfair Display', serif;
    }
    
    .about-title {
        color: hsl(340, 59%, 31%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .about-title:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 3px;
        background-color: hsl(340, 59%, 56%);
    }
    
    .about-subtitle {
        color: hsl(340, 59%, 16%);
        font-weight: 600;
        margin: 25px 0 15px;
    }
    
    .about-text {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #444;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .about-image:hover {
        transform: translateY(-5px);
    }
    
    .about-values {
        margin-top: 40px;
    }
    
    .value-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: hsl(340, 59%, 31%);
        color: white;
        border-radius: 50%;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .value-content {
        flex-grow: 1;
    }
    
    .value-title {
        font-weight: 600;
        color: hsl(340, 59%, 31%);
        margin-bottom: 5px;
    }
    
    .reversed-row {
        flex-direction: row-reverse;
    }
    
    .bg-light-wood {
        background-color: #f9f5f1;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 60px 0;
        }
        
        .value-item {
            flex-direction: column;
        }
        
        .value-icon {
            margin-bottom: 15px;
        }
    }

.newsletter-section {
    background: linear-gradient(to right, hsl(340, 59%, 31%), hsl(340, 59%, 16%));
    color: #fff;
    padding: 5rem 0;
    border-radius: 8px;
    margin: 4rem 0;
  }
  
  .newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .newsletter-section h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: hsl(340, 59%, 56%);
  }
  
  .newsletter-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  .newsletter-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
  
  .newsletter-form:hover {
    transform: translateY(-5px);
  }
  
  .newsletter-form input[type="email"] {
    height: 55px;
    border-radius: 4px;
    border: none;
    padding-left: 20px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
  }
  
  .newsletter-form input[type="email"]:focus {
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(238, 82, 132, 0.2);
  }
  
  .newsletter-form button {
    height: 55px;
    background-color: hsl(340, 59%, 56%);
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .newsletter-form button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
  }
  
  .newsletter-form button:hover {
    background-color: hsl(340, 59%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .newsletter-form button:hover:before {
    left: 100%;
  }
  
  .newsletter-benefits {
    margin-top: 2rem;
  }
  
  .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .benefit-icon {
    background-color: hsla(340, 59%, 56%, 0.2);
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
  }
  
  .newsletter-tag {
    display: inline-block;
    background-color: hsla(340, 59%, 56%, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-weight: 500;
  }

  @media (max-width: 767px) {
    .newsletter-section {
      padding: 3rem 1rem;
    }
    
    .newsletter-form {
      padding: 1.5rem;
    }
    
    .newsletter-form input[type="email"] {
      margin-bottom: 1rem;
    }
  }

:root {
    --primary-color: hsl(340, 59%, 31%);
    --secondary-color: hsl(340, 59%, 16%);
    --accent-color: hsl(340, 59%, 56%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Raleway', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.5rem;
}

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

.footer-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.footer-links a:hover:before {
    opacity: 1;
    left: -10px;
}

.contact-info {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

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

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(24, 24, 24, 0.95);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-btn-learn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cookie-btn-learn:hover {
    background-color: #fff;
    color: #333;
}

:root {
            --primary: hsl(340, 59%, 31%);
            --secondary: hsl(340, 59%, 16%);
            --accent: hsl(340, 59%, 56%);
        }
        
        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 {
            display: flex;
            align-items: center;
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: #fff;
            opacity: 0.9;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #fff !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: #fff;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                border-radius: 0.5rem;
                margin-top: 0.5rem;
            }
            
            .nav-link:after {
                display: none;
            }
        }

.hero-section {
        max-width: 800px;
        margin: 0 auto;
        padding: 60px 20px;
        text-align: center;
        font-family: 'Roboto', sans-serif;
        color: #333;
    }

    .hero-logo {
        max-width: 120px;
        margin-bottom: 20px;
        animation: fadeIn 1.2s ease-in-out;
    }

    .hero-img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        transition: transform 0.3s ease;
        animation: slideUp 0.8s ease-in-out;
    }

    .hero-img:hover {
        transform: translateY(-5px);
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: hsl(340, 59%, 31%);
        animation: fadeIn 0.8s ease-in-out;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 25px;
        color: hsl(340, 59%, 16%);
        font-weight: 300;
        animation: fadeIn 1s ease-in-out;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 30px;
        text-align: left;
        animation: fadeIn 1.2s ease-in-out;
    }

    .hero-features {
        text-align: left;
        margin-bottom: 35px;
        padding-left: 20px;
        animation: fadeIn 1.4s ease-in-out;
    }

    .hero-features li {
        margin-bottom: 12px;
        display: flex;
        align-items: baseline;
    }

    .hero-features i {
        color: hsl(340, 59%, 56%);
        margin-right: 10px;
    }

    .btn-primary {
        background-color: hsl(340, 59%, 31%);
        border: none;
        padding: 12px 28px;
        border-radius: 30px;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        margin-right: 15px;
        animation: fadeIn 1.6s ease-in-out;
    }

    .btn-secondary {
        background-color: transparent;
        border: 2px solid hsl(340, 59%, 31%);
        padding: 12px 28px;
        border-radius: 30px;
        color: hsl(340, 59%, 31%);
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        animation: fadeIn 1.8s ease-in-out;
    }

    .btn-primary:hover {
        background-color: hsl(340, 59%, 56%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .btn-secondary:hover {
        background-color: hsl(340, 59%, 16%);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .cta-container {
        margin-top: 30px;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

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

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2rem;
        }
        .hero-subtitle {
            font-size: 1.2rem;
        }
        .cta-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }
        .btn-primary, .btn-secondary {
            margin: 0;
            width: 80%;
        }
    }

.about-section {
        padding: 100px 0;
        background-color: #f9f5f6;
        color: #333;
        font-family: 'Playfair Display', serif;
    }
    
    .about-title {
        color: hsl(340, 59%, 31%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .about-title:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 3px;
        background-color: hsl(340, 59%, 56%);
    }
    
    .about-subtitle {
        color: hsl(340, 59%, 16%);
        font-weight: 600;
        margin: 25px 0 15px;
    }
    
    .about-text {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #444;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .about-image:hover {
        transform: translateY(-5px);
    }
    
    .about-values {
        margin-top: 40px;
    }
    
    .value-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: hsl(340, 59%, 31%);
        color: white;
        border-radius: 50%;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .value-content {
        flex-grow: 1;
    }
    
    .value-title {
        font-weight: 600;
        color: hsl(340, 59%, 31%);
        margin-bottom: 5px;
    }
    
    .reversed-row {
        flex-direction: row-reverse;
    }
    
    .bg-light-wood {
        background-color: #f9f5f1;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 60px 0;
        }
        
        .value-item {
            flex-direction: column;
        }
        
        .value-icon {
            margin-bottom: 15px;
        }
    }

.faq-section {
    padding: 4rem 0;
    background-color: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    color: hsl(340, 59%, 31%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    background-color: #fff;
}

.accordion-button {
    font-weight: 600;
    color: hsl(340, 59%, 31%);
    background-color: #fff;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: hsl(340, 59%, 31%);
    background-color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

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

.accordion-body {
    padding: 1.25rem 1.5rem;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
}

.testimonials-section {
    padding: 100px 0;
    background-color: #f9f5f6;
}

.testimonials-section h2 {
    color: hsl(340, 59%, 31%);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.testimonials-section h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: hsl(340, 59%, 56%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    margin: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

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

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

.testimonial-author {
    font-weight: 700;
    color: hsl(340, 59%, 31%);
    margin-bottom: 5px;
}

.testimonial-location {
    color: hsl(340, 59%, 56%);
    font-size: 14px;
}

.testimonial-rating {
    color: gold;
    margin-bottom: 15px;
}

.carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    background: hsl(340, 59%, 31%);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .carousel-control-prev {
        left: 0;
    }
    
    .carousel-control-next {
        right: 0;
    }
}

.services-section {
        padding: 5rem 0;
        background-color: #fafafa;
    }
    
    .services-section h2 {
        color: hsl(340, 59%, 31%);
        font-weight: 700;
        margin-bottom: 3rem;
        text-align: center;
        position: relative;
    }
    
    .services-section h2::after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(340, 59%, 56%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .service-card {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 30px 25px;
        height: 100%;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        margin-bottom: 30px;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(340, 59%, 56%);
    }
    
    .service-icon {
        font-size: 2.5rem;
        color: hsl(340, 59%, 31%);
        margin-bottom: 20px;
    }
    
    .service-title {
        color: hsl(340, 59%, 16%);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.25rem;
    }
    
    .service-description {
        color: #555;
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .service-price {
        color: hsl(340, 59%, 31%);
        font-weight: 700;
        font-size: 1.2rem;
        display: block;
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px dashed #eee;
    }
    
    .service-terms {
        font-size: 0.8rem;
        color: #777;
        margin-top: 5px;
    }

.newsletter-section {
    background: linear-gradient(to right, hsl(340, 59%, 31%), hsl(340, 59%, 16%));
    color: #fff;
    padding: 5rem 0;
    border-radius: 8px;
    margin: 4rem 0;
  }
  
  .newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .newsletter-section h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: hsl(340, 59%, 56%);
  }
  
  .newsletter-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  .newsletter-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
  
  .newsletter-form:hover {
    transform: translateY(-5px);
  }
  
  .newsletter-form input[type="email"] {
    height: 55px;
    border-radius: 4px;
    border: none;
    padding-left: 20px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
  }
  
  .newsletter-form input[type="email"]:focus {
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(238, 82, 132, 0.2);
  }
  
  .newsletter-form button {
    height: 55px;
    background-color: hsl(340, 59%, 56%);
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .newsletter-form button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
  }
  
  .newsletter-form button:hover {
    background-color: hsl(340, 59%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .newsletter-form button:hover:before {
    left: 100%;
  }
  
  .newsletter-benefits {
    margin-top: 2rem;
  }
  
  .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .benefit-icon {
    background-color: hsla(340, 59%, 56%, 0.2);
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
  }
  
  .newsletter-tag {
    display: inline-block;
    background-color: hsla(340, 59%, 56%, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-weight: 500;
  }

  @media (max-width: 767px) {
    .newsletter-section {
      padding: 3rem 1rem;
    }
    
    .newsletter-form {
      padding: 1.5rem;
    }
    
    .newsletter-form input[type="email"] {
      margin-bottom: 1rem;
    }
  }

.advantages-section {
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .advantages-heading {
        text-align: center;
        margin-bottom: 3.5rem;
    }
    
    .advantages-title {
        font-size: 2.5rem;
        color: hsl(340, 59%, 31%);
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .advantages-subtitle {
        font-size: 1.2rem;
        color: #555;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .advantage-card {
        background-color: #f9f9f9;
        border-radius: 10px;
        padding: 2rem;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid #eee;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: hsl(340, 59%, 56%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(340, 59%, 31%);
        margin-bottom: 1.2rem;
    }
    
    .advantage-title {
        font-size: 1.4rem;
        color: hsl(340, 59%, 16%);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .advantage-text {
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    @media (max-width: 767px) {
        .advantage-card {
            margin-bottom: 2rem;
        }
    }

.statistics-section {
    padding: 5rem 0;
    background-color: #f9f5f6;
}

.statistics-section .section-title {
    color: hsl(340, 59%, 31%);
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.statistics-section .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(340, 59%, 56%);
}

.statistics-section .counter-box {
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.statistics-section .counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.statistics-section .counter-icon {
    font-size: 2.5rem;
    color: hsl(340, 59%, 56%);
    margin-bottom: 1rem;
}

.statistics-section .counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(340, 59%, 31%);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.statistics-section .counter-text {
    font-size: 1.1rem;
    color: hsl(340, 59%, 16%);
}

@media (max-width: 768px) {
    .statistics-section .counter-number {
        font-size: 2.5rem;
    }
    
    .statistics-section .counter-text {
        font-size: 1rem;
    }
}

.contact-section {
        padding: 120px 0;
        background-color: #f9f5f6;
    }
    
    .contact-heading {
        color: hsl(340, 59%, 31%);
        font-weight: 700;
        margin-bottom: 30px;
    }
    
    .contact-subheading {
        color: hsl(340, 59%, 16%);
        margin-bottom: 40px;
        font-size: 18px;
        line-height: 1.6;
    }
    
    .contact-info-item {
        margin-bottom: 25px;
    }
    
    .contact-info-item i {
        color: hsl(340, 59%, 56%);
        font-size: 24px;
        margin-right: 15px;
    }
    
    .contact-info-title {
        font-weight: 600;
        color: hsl(340, 59%, 31%);
        margin-bottom: 5px;
    }
    
    .contact-info-text {
        color: #555;
        line-height: 1.5;
    }
    
    .consultation-process {
        background-color: #fff;
        border-left: 4px solid hsl(340, 59%, 56%);
        padding: 20px;
        border-radius: 0 8px 8px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin: 40px 0;
    }
    
    .consultation-process h3 {
        color: hsl(340, 59%, 31%);
        margin-bottom: 15px;
    }
    
    .consultation-process p {
        color: #444;
        line-height: 1.6;
    }
    
    .contact-form {
        background-color: white;
        padding: 35px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    
    .form-label {
        color: hsl(340, 59%, 31%);
        font-weight: 600;
    }
    
    .form-control {
        border: 2px solid #f0e0e5;
        padding: 12px 15px;
        height: auto;
        border-radius: 6px;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: hsl(340, 59%, 56%);
        box-shadow: 0 0 0 0.2rem rgba(196, 50, 88, 0.15);
    }
    
    textarea.form-control {
        min-height: 150px;
    }
    
    .submit-btn {
        background-color: hsl(340, 59%, 31%);
        color: white;
        border: none;
        padding: 14px 30px;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        width: 100%;
        text-transform: uppercase;
    }
    
    .submit-btn:hover {
        background-color: hsl(340, 59%, 56%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .business-hours {
        background-color: hsl(340, 59%, 16%);
        color: white;
        border-radius: 8px;
        padding: 20px;
        margin-top: 30px;
    }
    
    .business-hours h4 {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    
    .business-hours p {
        margin-bottom: 8px;
    }
    
    .hours-day {
        font-weight: 600;
    }

:root {
    --primary-color: hsl(340, 59%, 31%);
    --secondary-color: hsl(340, 59%, 16%);
    --accent-color: hsl(340, 59%, 56%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Raleway', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.5rem;
}

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

.footer-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.footer-links a:hover:before {
    opacity: 1;
    left: -10px;
}

.contact-info {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

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

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(24, 24, 24, 0.95);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-btn-learn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cookie-btn-learn:hover {
    background-color: #fff;
    color: #333;
}