:root {
            --primary-color: hsl(26, 50%, 49%);
            --secondary-color: hsl(26, 50%, 34%);
            --accent-color: hsl(26, 50%, 74%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--secondary-color);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-bottom: 60px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    color: hsl(26, 50%, 34%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(26, 50%, 49%);
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.highlight-box {
    background: linear-gradient(135deg, hsl(26, 50%, 74%) 0%, hsl(26, 50%, 49%) 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
    margin: 40px 0;
}

.highlight-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.95;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid hsl(26, 50%, 49%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.value-item h4 {
    color: hsl(26, 50%, 34%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .image-container img {
        height: 300px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 74%) 50%, hsl(26, 50%, 34%) 100%);
}

.section-title {
    color: hsl(26, 50%, 34%);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: hsl(26, 50%, 49%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(26, 50, 49, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(26, 50%, 49%), hsl(26, 50%, 74%));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.advantage-card:hover::before {
    transform: translateX(0);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(26, 50%, 74%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(26, 50%, 49%), hsl(26, 50%, 74%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.advantage-card:hover .advantage-icon::before {
    width: 100px;
    height: 100px;
}

.advantage-icon i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
    position: relative;
}

.advantage-title {
    color: hsl(26, 50%, 34%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stats-container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(26, 50%, 74%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(26, 50%, 74%);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(26, 50%, 74%);
    font-weight: 600;
    margin-bottom: 15px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.chart-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-bar-custom {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(26, 50%, 74%), white);
    border-radius: 10px;
    transition: width 2s ease-in-out;
}

.chart-label {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.percentage {
    color: hsl(26, 50%, 74%);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(26, 50%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: hsl(26, 50%, 49%);
    border-radius: 2px;
}

footer p {
    color: #e9ecef;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: hsl(26, 50%, 74%);
    transform: translateX(5px);
}

.footer-contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid hsl(26, 50%, 49%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid hsl(26, 50%, 49%);
}

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

.cookie-notice .btn-accept {
    background: hsl(26, 50%, 49%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-accept:hover {
    background: hsl(26, 50%, 54%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(26, 50%, 74%);
    color: hsl(26, 50%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(26, 50%, 74%);
    color: hsl(26, 50%, 34%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

:root {
            --primary-color: hsl(26, 50%, 49%);
            --secondary-color: hsl(26, 50%, 34%);
            --accent-color: hsl(26, 50%, 74%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--secondary-color);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }

.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-header h1 {
    color: #2c5530;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.privacy-header .subtitle {
    color: #666;
    font-size: 1.1em;
    font-style: italic;
}

.privacy-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    color: #2c5530;
    font-size: 1.8em;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #8fbc8f;
    font-weight: 600;
}

.section-title:first-of-type {
    margin-top: 0;
}

.privacy-content p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05em;
}

.privacy-list {
    margin: 20px 0;
    padding-left: 0;
}

.privacy-list li {
    list-style: none;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #8fbc8f;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.privacy-list li:hover {
    background: #e8f5e8;
    transform: translateX(5px);
}

.highlight-box {
    background: linear-gradient(135deg, #8fbc8f, #6b8e6b);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.highlight-box h3 {
    margin-top: 0;
    font-size: 1.4em;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.rights-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.rights-card:hover {
    background: #e8f5e8;
    border-color: #8fbc8f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rights-card h4 {
    color: #2c5530;
    margin-top: 0;
    font-size: 1.2em;
}

.effective-date {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #2c5530;
    color: white;
    border-radius: 10px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 20px 10px;
    }
    
    .privacy-content {
        padding: 25px;
    }
    
    .privacy-header h1 {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.5em;
    }
}

footer {
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(26, 50%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: hsl(26, 50%, 49%);
    border-radius: 2px;
}

footer p {
    color: #e9ecef;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: hsl(26, 50%, 74%);
    transform: translateX(5px);
}

.footer-contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid hsl(26, 50%, 49%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid hsl(26, 50%, 49%);
}

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

.cookie-notice .btn-accept {
    background: hsl(26, 50%, 49%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-accept:hover {
    background: hsl(26, 50%, 54%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(26, 50%, 74%);
    color: hsl(26, 50%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(26, 50%, 74%);
    color: hsl(26, 50%, 34%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

:root {
            --primary-color: hsl(26, 50%, 49%);
            --secondary-color: hsl(26, 50%, 34%);
            --accent-color: hsl(26, 50%, 74%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--secondary-color);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }

.cookies-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.policy-header h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-header .subtitle {
    color: #7f8c8d;
    font-size: 1.2em;
    font-weight: 300;
}

.policy-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ecf0f1;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: #34495e;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.policy-section h3 {
    color: #2c3e50;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

.policy-section p {
    margin-bottom: 15px;
    text-align: justify;
    color: #555;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.cookie-type {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.cookie-type h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.cookie-type p {
    margin: 0;
    font-size: 0.95em;
    color: #666;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.highlight-box h3 {
    color: white;
    margin-top: 0;
}

.consent-notice {
    background: #e8f5e8;
    border: 1px solid #27ae60;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.consent-notice h4 {
    color: #27ae60;
    margin-top: 0;
    font-weight: 600;
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #34495e;
    color: white;
    border-radius: 10px;
    font-weight: 500;
}

ul {
    padding-left: 25px;
    margin: 15px 0;
}

ul li {
    margin-bottom: 8px;
    color: #555;
}

strong {
    color: #2c3e50;
    font-weight: 600;
}

footer {
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(26, 50%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: hsl(26, 50%, 49%);
    border-radius: 2px;
}

footer p {
    color: #e9ecef;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: hsl(26, 50%, 74%);
    transform: translateX(5px);
}

.footer-contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid hsl(26, 50%, 49%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid hsl(26, 50%, 49%);
}

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

.cookie-notice .btn-accept {
    background: hsl(26, 50%, 49%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-accept:hover {
    background: hsl(26, 50%, 54%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(26, 50%, 74%);
    color: hsl(26, 50%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(26, 50%, 74%);
    color: hsl(26, 50%, 34%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

:root {
            --primary-color: hsl(26, 50%, 49%);
            --secondary-color: hsl(26, 50%, 34%);
            --accent-color: hsl(26, 50%, 74%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--secondary-color);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }

.contact-section {
    background: linear-gradient(135deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 34%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: fit-content;
}

.form-label {
    color: hsl(26, 50%, 34%);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid hsl(26, 50%, 74%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(26, 50%, 34%);
}

.form-control:focus {
    border-color: hsl(26, 50%, 49%);
    box-shadow: 0 0 0 0.2rem rgba(165, 108, 64, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(26, 50%, 74%);
}

.submit-btn {
    background: linear-gradient(135deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 34%) 100%);
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(165, 108, 64, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(165, 108, 64, 0.4);
    background: linear-gradient(135deg, hsl(26, 50%, 54%) 0%, hsl(26, 50%, 39%) 100%);
}

.info-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid hsl(26, 50%, 74%);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: hsl(26, 50%, 74%);
}

.info-text {
    line-height: 1.6;
    opacity: 0.9;
}

.consultation-process {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.process-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: hsl(26, 50%, 74%);
}

.process-steps {
    list-style: none;
    padding: 0;
}

.process-steps li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.process-steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 10px;
    background: hsl(26, 50%, 74%);
    color: hsl(26, 50%, 34%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.process-steps {
    counter-reset: step-counter;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-bottom: 60px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    color: hsl(26, 50%, 34%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(26, 50%, 49%);
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.highlight-box {
    background: linear-gradient(135deg, hsl(26, 50%, 74%) 0%, hsl(26, 50%, 49%) 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
    margin: 40px 0;
}

.highlight-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.95;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid hsl(26, 50%, 49%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.value-item h4 {
    color: hsl(26, 50%, 34%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .image-container img {
        height: 300px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(26, 50%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: hsl(26, 50%, 49%);
    border-radius: 2px;
}

footer p {
    color: #e9ecef;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: hsl(26, 50%, 74%);
    transform: translateX(5px);
}

.footer-contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid hsl(26, 50%, 49%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid hsl(26, 50%, 49%);
}

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

.cookie-notice .btn-accept {
    background: hsl(26, 50%, 49%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-accept:hover {
    background: hsl(26, 50%, 54%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(26, 50%, 74%);
    color: hsl(26, 50%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(26, 50%, 74%);
    color: hsl(26, 50%, 34%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

:root {
            --primary-color: hsl(26, 50%, 49%);
            --secondary-color: hsl(26, 50%, 34%);
            --accent-color: hsl(26, 50%, 74%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--secondary-color);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }

.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.services-title {
    color: hsl(26, 50%, 34%);
    font-weight: 700;
    margin-bottom: 20px;
}

.services-subtitle {
    color: hsl(26, 50%, 49%);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(26, 50%, 74%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 34%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(26, 50%, 74%) 0%, hsl(26, 50%, 49%) 100%);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    color: hsl(26, 50%, 34%);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    color: hsl(26, 50%, 49%);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(26, 50%, 74%, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(26, 50%, 74%);
}

.service-conditions small {
    color: hsl(26, 50%, 34%);
    font-weight: 500;
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="deck-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none"/><rect x="0" y="0" width="18" height="2" fill="rgba(255,255,255,0.05)"/><rect x="0" y="4" width="18" height="2" fill="rgba(255,255,255,0.05)"/><rect x="0" y="8" width="18" height="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23deck-pattern)"/></svg>') repeat;
    opacity: 0.3;
}

.newsletter-container {
    position: relative;
    z-index: 2;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

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

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

.newsletter-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border-left: 4px solid hsl(26, 50%, 74%);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: hsl(26, 50%, 74%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: hsl(26, 50%, 34%);
    flex-shrink: 0;
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.email-input-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: hsl(26, 50%, 74%);
    box-shadow: 0 0 0 3px rgba(186, 132, 91, 0.3);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: #666;
}

.subscribe-btn {
    padding: 15px 35px;
    background: linear-gradient(45deg, hsl(26, 50%, 74%) 0%, hsl(26, 50%, 64%) 100%);
    color: hsl(26, 50%, 34%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-width: 160px;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(26, 50%, 84%) 0%, hsl(26, 50%, 74%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.subscribe-btn:active {
    transform: translateY(-1px);
}

.privacy-note {
    font-size: 0.85rem;
    margin-top: 20px;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
    }
    
    .email-input-group {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(26, 50%, 74%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonial-carousel {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 0 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: hsl(26, 50%, 74%);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    color: hsl(26, 50%, 34%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.client-info {
    border-top: 2px solid hsl(26, 50%, 74%);
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.client-name {
    color: hsl(26, 50%, 49%);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-location {
    color: hsl(26, 50%, 34%);
    font-size: 0.95rem;
    opacity: 0.8;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: hsl(26, 50%, 49%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: hsl(26, 50%, 34%);
    transform: translateY(-50%) scale(1.1);
}

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

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: hsl(26, 50%, 74%);
    border: 2px solid white;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: white;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 30px 20px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: -25px;
    }
    
    .carousel-control-next {
        right: -25px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(26, 50%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: hsl(26, 50%, 49%);
    border-radius: 2px;
}

footer p {
    color: #e9ecef;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: hsl(26, 50%, 74%);
    transform: translateX(5px);
}

.footer-contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid hsl(26, 50%, 49%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid hsl(26, 50%, 49%);
}

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

.cookie-notice .btn-accept {
    background: hsl(26, 50%, 49%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-accept:hover {
    background: hsl(26, 50%, 54%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(26, 50%, 74%);
    color: hsl(26, 50%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(26, 50%, 74%);
    color: hsl(26, 50%, 34%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

:root {
            --primary-color: hsl(26, 50%, 49%);
            --secondary-color: hsl(26, 50%, 34%);
            --accent-color: hsl(26, 50%, 74%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--secondary-color);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #8b4513;
}

.terms-title {
    font-size: 2.8em;
    color: #8b4513;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    font-weight: bold;
}

.terms-subtitle {
    font-size: 1.2em;
    color: #6c757d;
    font-style: italic;
}

.section-title {
    font-size: 1.6em;
    color: #8b4513;
    margin: 35px 0 20px 0;
    padding: 15px 0;
    border-bottom: 2px solid #deb887;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-content {
    font-size: 1.1em;
    margin-bottom: 25px;
    text-align: justify;
    padding: 20px;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    border-left: 5px solid #8b4513;
}

.highlight-box {
    background: linear-gradient(45deg, #fff3cd, #ffeaa7);
    border: 2px solid #f39c12;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(243,156,18,0.2);
}

.list-item {
    margin: 15px 0;
    padding-left: 20px;
    position: relative;
}

.list-item:before {
    content: "▶";
    color: #8b4513;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 40px;
    padding: 20px;
    background: rgba(139,69,19,0.1);
    border-radius: 10px;
}

footer {
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(26, 50%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: hsl(26, 50%, 49%);
    border-radius: 2px;
}

footer p {
    color: #e9ecef;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: hsl(26, 50%, 74%);
    transform: translateX(5px);
}

.footer-contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid hsl(26, 50%, 49%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid hsl(26, 50%, 49%);
}

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

.cookie-notice .btn-accept {
    background: hsl(26, 50%, 49%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-accept:hover {
    background: hsl(26, 50%, 54%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(26, 50%, 74%);
    color: hsl(26, 50%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(26, 50%, 74%);
    color: hsl(26, 50%, 34%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

:root {
            --primary-color: hsl(26, 50%, 49%);
            --secondary-color: hsl(26, 50%, 34%);
            --accent-color: hsl(26, 50%, 74%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--secondary-color);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }

.faq-section {
    background: linear-gradient(135deg, hsl(26, 50%, 97%) 0%, hsl(26, 30%, 95%) 100%);
    padding: 80px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    color: hsl(26, 50%, 34%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(26, 50%, 49%);
    border-radius: 2px;
}

.faq-header p {
    color: hsl(26, 50%, 34%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.accordion-button {
    background: white;
    border: 2px solid hsl(26, 50%, 74%);
    color: hsl(26, 50%, 34%);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:not(.collapsed) {
    background: hsl(26, 50%, 49%);
    color: white;
    border-color: hsl(26, 50%, 49%);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(185, 120, 87, 0.25);
    border-color: hsl(26, 50%, 49%);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b97857'%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");
    width: 1.5rem;
    height: 1.5rem;
}

.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='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: white;
    padding: 25px;
    color: hsl(26, 50%, 34%);
    line-height: 1.7;
    font-size: 1rem;
    border-radius: 0 0 12px 12px;
    border: 2px solid hsl(26, 50%, 74%);
    border-top: none;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-column {
    padding: 0 15px;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-column {
        margin-bottom: 30px;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 18px 20px;
    }
    
    .accordion-body {
        padding: 20px;
    }
}

.highlight {
    color: hsl(26, 50%, 49%);
    font-weight: 600;
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-bottom: 60px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    color: hsl(26, 50%, 34%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(26, 50%, 49%);
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.highlight-box {
    background: linear-gradient(135deg, hsl(26, 50%, 74%) 0%, hsl(26, 50%, 49%) 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
    margin: 40px 0;
}

.highlight-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.95;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid hsl(26, 50%, 49%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.value-item h4 {
    color: hsl(26, 50%, 34%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .image-container img {
        height: 300px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="deck-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none"/><rect x="0" y="0" width="18" height="2" fill="rgba(255,255,255,0.05)"/><rect x="0" y="4" width="18" height="2" fill="rgba(255,255,255,0.05)"/><rect x="0" y="8" width="18" height="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23deck-pattern)"/></svg>') repeat;
    opacity: 0.3;
}

.newsletter-container {
    position: relative;
    z-index: 2;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

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

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

.newsletter-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border-left: 4px solid hsl(26, 50%, 74%);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: hsl(26, 50%, 74%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: hsl(26, 50%, 34%);
    flex-shrink: 0;
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.email-input-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: hsl(26, 50%, 74%);
    box-shadow: 0 0 0 3px rgba(186, 132, 91, 0.3);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: #666;
}

.subscribe-btn {
    padding: 15px 35px;
    background: linear-gradient(45deg, hsl(26, 50%, 74%) 0%, hsl(26, 50%, 64%) 100%);
    color: hsl(26, 50%, 34%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-width: 160px;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(26, 50%, 84%) 0%, hsl(26, 50%, 74%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.subscribe-btn:active {
    transform: translateY(-1px);
}

.privacy-note {
    font-size: 0.85rem;
    margin-top: 20px;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
    }
    
    .email-input-group {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
    }
}

footer {
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(26, 50%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: hsl(26, 50%, 49%);
    border-radius: 2px;
}

footer p {
    color: #e9ecef;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: hsl(26, 50%, 74%);
    transform: translateX(5px);
}

.footer-contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid hsl(26, 50%, 49%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid hsl(26, 50%, 49%);
}

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

.cookie-notice .btn-accept {
    background: hsl(26, 50%, 49%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-accept:hover {
    background: hsl(26, 50%, 54%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(26, 50%, 74%);
    color: hsl(26, 50%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(26, 50%, 74%);
    color: hsl(26, 50%, 34%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

:root {
            --primary-color: hsl(26, 50%, 49%);
            --secondary-color: hsl(26, 50%, 34%);
            --accent-color: hsl(26, 50%, 74%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--secondary-color);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }

.hero-section {
    background: linear-gradient(135deg, hsl(26, 50%, 74%) 0%, hsl(26, 50%, 49%) 100%);
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: 
        "title image"
        "subtitle image"
        "content cta";
    gap: 40px;
    align-items: center;
    min-height: 80vh;
}

.hero-title {
    grid-area: title;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    margin: 0;
}

.hero-subtitle {
    grid-area: subtitle;
    font-size: 1.4rem;
    color: white;
    font-weight: 300;
    margin: 0;
    opacity: 0.95;
}

.hero-image {
    grid-area: image;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.hero-content {
    grid-area: content;
    color: white;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hero-features i {
    color: hsl(26, 50%, 34%);
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

.hero-cta {
    grid-area: cta;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.btn-primary-custom {
    background: hsl(26, 50%, 34%);
    border: none;
    color: white;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    background: hsl(26, 50%, 29%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: white;
    color: hsl(26, 50%, 34%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "title"
            "subtitle"
            "image"
            "content"
            "cta";
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        text-align: center;
        align-items: center;
    }
    
    .hero-image img {
        height: 300px;
    }
}

.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.services-title {
    color: hsl(26, 50%, 34%);
    font-weight: 700;
    margin-bottom: 20px;
}

.services-subtitle {
    color: hsl(26, 50%, 49%);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(26, 50%, 74%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 34%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(26, 50%, 74%) 0%, hsl(26, 50%, 49%) 100%);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    color: hsl(26, 50%, 34%);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    color: hsl(26, 50%, 49%);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(26, 50%, 74%, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(26, 50%, 74%);
}

.service-conditions small {
    color: hsl(26, 50%, 34%);
    font-weight: 500;
}

.statistics-section {
    background: linear-gradient(135deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stats-container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(26, 50%, 74%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(26, 50%, 74%);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(26, 50%, 74%);
    font-weight: 600;
    margin-bottom: 15px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.chart-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-bar-custom {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(26, 50%, 74%), white);
    border-radius: 10px;
    transition: width 2s ease-in-out;
}

.chart-label {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.percentage {
    color: hsl(26, 50%, 74%);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="deck-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none"/><rect x="0" y="0" width="18" height="2" fill="rgba(255,255,255,0.05)"/><rect x="0" y="4" width="18" height="2" fill="rgba(255,255,255,0.05)"/><rect x="0" y="8" width="18" height="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23deck-pattern)"/></svg>') repeat;
    opacity: 0.3;
}

.newsletter-container {
    position: relative;
    z-index: 2;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

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

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

.newsletter-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border-left: 4px solid hsl(26, 50%, 74%);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: hsl(26, 50%, 74%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: hsl(26, 50%, 34%);
    flex-shrink: 0;
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.email-input-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: hsl(26, 50%, 74%);
    box-shadow: 0 0 0 3px rgba(186, 132, 91, 0.3);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: #666;
}

.subscribe-btn {
    padding: 15px 35px;
    background: linear-gradient(45deg, hsl(26, 50%, 74%) 0%, hsl(26, 50%, 64%) 100%);
    color: hsl(26, 50%, 34%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-width: 160px;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(26, 50%, 84%) 0%, hsl(26, 50%, 74%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.subscribe-btn:active {
    transform: translateY(-1px);
}

.privacy-note {
    font-size: 0.85rem;
    margin-top: 20px;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
    }
    
    .email-input-group {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-bottom: 60px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    color: hsl(26, 50%, 34%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(26, 50%, 49%);
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.highlight-box {
    background: linear-gradient(135deg, hsl(26, 50%, 74%) 0%, hsl(26, 50%, 49%) 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
    margin: 40px 0;
}

.highlight-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.95;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid hsl(26, 50%, 49%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.value-item h4 {
    color: hsl(26, 50%, 34%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .image-container img {
        height: 300px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 74%) 50%, hsl(26, 50%, 34%) 100%);
}

.section-title {
    color: hsl(26, 50%, 34%);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: hsl(26, 50%, 49%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(26, 50, 49, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(26, 50%, 49%), hsl(26, 50%, 74%));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.advantage-card:hover::before {
    transform: translateX(0);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(26, 50%, 74%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(26, 50%, 49%), hsl(26, 50%, 74%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.advantage-card:hover .advantage-icon::before {
    width: 100px;
    height: 100px;
}

.advantage-icon i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
    position: relative;
}

.advantage-title {
    color: hsl(26, 50%, 34%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 34%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: fit-content;
}

.form-label {
    color: hsl(26, 50%, 34%);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid hsl(26, 50%, 74%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(26, 50%, 34%);
}

.form-control:focus {
    border-color: hsl(26, 50%, 49%);
    box-shadow: 0 0 0 0.2rem rgba(165, 108, 64, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(26, 50%, 74%);
}

.submit-btn {
    background: linear-gradient(135deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 34%) 100%);
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(165, 108, 64, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(165, 108, 64, 0.4);
    background: linear-gradient(135deg, hsl(26, 50%, 54%) 0%, hsl(26, 50%, 39%) 100%);
}

.info-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid hsl(26, 50%, 74%);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: hsl(26, 50%, 74%);
}

.info-text {
    line-height: 1.6;
    opacity: 0.9;
}

.consultation-process {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.process-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: hsl(26, 50%, 74%);
}

.process-steps {
    list-style: none;
    padding: 0;
}

.process-steps li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.process-steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 10px;
    background: hsl(26, 50%, 74%);
    color: hsl(26, 50%, 34%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.process-steps {
    counter-reset: step-counter;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(26, 50%, 49%) 0%, hsl(26, 50%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(26, 50%, 74%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonial-carousel {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 0 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: hsl(26, 50%, 74%);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    color: hsl(26, 50%, 34%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.client-info {
    border-top: 2px solid hsl(26, 50%, 74%);
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.client-name {
    color: hsl(26, 50%, 49%);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-location {
    color: hsl(26, 50%, 34%);
    font-size: 0.95rem;
    opacity: 0.8;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: hsl(26, 50%, 49%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: hsl(26, 50%, 34%);
    transform: translateY(-50%) scale(1.1);
}

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

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: hsl(26, 50%, 74%);
    border: 2px solid white;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: white;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 30px 20px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: -25px;
    }
    
    .carousel-control-next {
        right: -25px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(26, 50%, 97%) 0%, hsl(26, 30%, 95%) 100%);
    padding: 80px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    color: hsl(26, 50%, 34%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(26, 50%, 49%);
    border-radius: 2px;
}

.faq-header p {
    color: hsl(26, 50%, 34%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.accordion-button {
    background: white;
    border: 2px solid hsl(26, 50%, 74%);
    color: hsl(26, 50%, 34%);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:not(.collapsed) {
    background: hsl(26, 50%, 49%);
    color: white;
    border-color: hsl(26, 50%, 49%);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(185, 120, 87, 0.25);
    border-color: hsl(26, 50%, 49%);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b97857'%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");
    width: 1.5rem;
    height: 1.5rem;
}

.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='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: white;
    padding: 25px;
    color: hsl(26, 50%, 34%);
    line-height: 1.7;
    font-size: 1rem;
    border-radius: 0 0 12px 12px;
    border: 2px solid hsl(26, 50%, 74%);
    border-top: none;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-column {
    padding: 0 15px;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-column {
        margin-bottom: 30px;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 18px 20px;
    }
    
    .accordion-body {
        padding: 20px;
    }
}

.highlight {
    color: hsl(26, 50%, 49%);
    font-weight: 600;
}

footer {
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(26, 50%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: hsl(26, 50%, 49%);
    border-radius: 2px;
}

footer p {
    color: #e9ecef;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: hsl(26, 50%, 74%);
    transform: translateX(5px);
}

.footer-contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid hsl(26, 50%, 49%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(26, 50%, 34%) 0%, hsl(26, 50%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid hsl(26, 50%, 49%);
}

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

.cookie-notice .btn-accept {
    background: hsl(26, 50%, 49%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-accept:hover {
    background: hsl(26, 50%, 54%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(26, 50%, 74%);
    color: hsl(26, 50%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(26, 50%, 74%);
    color: hsl(26, 50%, 34%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}