:root {
            --primary-color: hsl(21, 56%, 49%);
            --secondary-color: hsl(21, 56%, 34%);
            --accent-color: hsl(21, 56%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .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: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }

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

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

.section-title {
    color: hsl(21, 56%, 34%);
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(21, 56%, 49%);
    border-radius: 2px;
}

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

.about-image:hover {
    transform: translateY(-10px);
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 5px solid hsl(21, 56%, 49%);
    transition: transform 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
}

.block-title {
    color: hsl(21, 56%, 34%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.block-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: hsl(21, 56%, 49%);
    border-radius: 50%;
    margin-right: 15px;
}

.block-text {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.highlight-text {
    color: hsl(21, 56%, 49%);
    font-weight: 600;
}

.story-section {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

.story-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(21, 56%, 74%);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-top-color: hsl(21, 56%, 49%);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(21, 56%, 49%), hsl(21, 56%, 74%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.value-title {
    color: hsl(21, 56%, 34%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-text {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .story-section {
        padding: 30px 25px;
    }
    
    .about-image {
        height: 300px;
    }
}

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

.advantages-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.advantages-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(196, 115, 68, 0.2);
    border-color: hsl(21, 56%, 74%);
}

.advantage-icon {
    font-size: 3rem;
    color: hsl(21, 56%, 49%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.advantages-card:hover .advantage-icon {
    color: hsl(21, 56%, 34%);
    transform: scale(1.1);
}

.advantage-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(21, 56%, 34%);
    margin-bottom: 15px;
    line-height: 1.3;
}

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

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

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: hsl(21, 56%, 34%);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .advantages-card {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    padding: 80px 0;
    color: white;
    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"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.12)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

.section-subtitle {
    color: hsl(21, 56%, 74%);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.stat-item::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.5s ease;
}

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

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(21, 56%, 74%);
    margin-bottom: 1rem;
    display: block;
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(21, 56%, 74%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h4 {
    color: hsl(21, 56%, 74%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: hsl(21, 56%, 74%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(21, 56%, 74%);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 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-in-out;
}

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

.cookie-notice .btn-accept {
    background: hsl(21, 56%, 74%);
    border: none;
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(21, 56%, 49%);
            --secondary-color: hsl(21, 56%, 34%);
            --accent-color: hsl(21, 56%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .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: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }

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

.privacy-policy h1 {
    color: #d35400;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #e67e22;
    padding-bottom: 15px;
}

.privacy-policy h2 {
    color: #c0392b;
    font-size: 1.6em;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 5px solid #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
}

.privacy-policy h3 {
    color: #8e44ad;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-policy p {
    margin-bottom: 18px;
    text-align: justify;
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #3498db;
}

.privacy-policy ul {
    margin: 20px 0;
    padding-left: 30px;
    background: rgba(255,255,255,0.5);
    border-radius: 8px;
    padding: 20px 30px;
}

.privacy-policy li {
    margin-bottom: 12px;
    position: relative;
}

.privacy-policy li::marker {
    color: #e67e22;
    font-weight: bold;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    background: rgba(127, 140, 141, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px dashed #bdc3c7;
}

.highlight-box {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

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

.rights-item {
    background: rgba(52, 152, 219, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #3498db;
}

footer {
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h4 {
    color: hsl(21, 56%, 74%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: hsl(21, 56%, 74%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(21, 56%, 74%);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 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-in-out;
}

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

.cookie-notice .btn-accept {
    background: hsl(21, 56%, 74%);
    border: none;
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(21, 56%, 49%);
            --secondary-color: hsl(21, 56%, 34%);
            --accent-color: hsl(21, 56%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .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: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.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, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cookies-policy h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookies-policy h2 {
    color: #34495e;
    font-size: 1.8rem;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #e74c3c;
    font-weight: 600;
}

.cookies-policy h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

.cookies-policy p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.1rem;
    color: #555;
}

.cookies-policy ul {
    margin: 20px 0;
    padding-left: 30px;
}

.cookies-policy li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #666;
}

.cookie-type {
    background: #fff;
    padding: 25px;
    margin: 20px 0;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.cookie-type:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

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

.consent-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid #f39c12;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
    font-size: 1rem;
}

.gdpr-section {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(116, 185, 255, 0.3);
}

.gdpr-section h3 {
    color: white;
    margin-top: 0;
}

footer {
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h4 {
    color: hsl(21, 56%, 74%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: hsl(21, 56%, 74%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(21, 56%, 74%);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 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-in-out;
}

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

.cookie-notice .btn-accept {
    background: hsl(21, 56%, 74%);
    border: none;
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(21, 56%, 49%);
            --secondary-color: hsl(21, 56%, 34%);
            --accent-color: hsl(21, 56%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .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: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }

.contact-section {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    padding: 80px 0;
    color: white;
}

.contact-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.contact-info {
    color: hsl(21, 56%, 34%);
}

.contact-info h3 {
    color: hsl(21, 56%, 34%);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hours-info {
    background: hsl(21, 56%, 74%);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.hours-info h4 {
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    margin-bottom: 15px;
}

.hours-info p {
    color: hsl(21, 56%, 34%);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: hsl(21, 56%, 34%);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

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

.form-control:focus {
    border-color: hsl(21, 56%, 49%);
    box-shadow: 0 0 0 0.2rem rgba(207, 114, 77, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(21, 56%, 64%);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(207, 114, 77, 0.4);
    background: linear-gradient(135deg, hsl(21, 56%, 54%) 0%, hsl(21, 56%, 39%) 100%);
}

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

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-content {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

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

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

.section-title {
    color: hsl(21, 56%, 34%);
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(21, 56%, 49%);
    border-radius: 2px;
}

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

.about-image:hover {
    transform: translateY(-10px);
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 5px solid hsl(21, 56%, 49%);
    transition: transform 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
}

.block-title {
    color: hsl(21, 56%, 34%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.block-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: hsl(21, 56%, 49%);
    border-radius: 50%;
    margin-right: 15px;
}

.block-text {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.highlight-text {
    color: hsl(21, 56%, 49%);
    font-weight: 600;
}

.story-section {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

.story-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(21, 56%, 74%);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-top-color: hsl(21, 56%, 49%);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(21, 56%, 49%), hsl(21, 56%, 74%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.value-title {
    color: hsl(21, 56%, 34%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-text {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .story-section {
        padding: 30px 25px;
    }
    
    .about-image {
        height: 300px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h4 {
    color: hsl(21, 56%, 74%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: hsl(21, 56%, 74%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(21, 56%, 74%);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 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-in-out;
}

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

.cookie-notice .btn-accept {
    background: hsl(21, 56%, 74%);
    border: none;
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(21, 56%, 49%);
            --secondary-color: hsl(21, 56%, 34%);
            --accent-color: hsl(21, 56%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .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: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }

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

.section-title {
    color: hsl(21, 56%, 34%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    color: hsl(21, 56%, 49%);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 40px;
}

.nav-tabs .nav-link {
    border: 2px solid hsl(21, 56%, 74%);
    border-radius: 25px;
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    margin: 0 10px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    background: white;
}

.nav-tabs .nav-link:hover {
    background: hsl(21, 56%, 74%);
    color: white;
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: hsl(21, 56%, 49%);
    border-color: hsl(21, 56%, 49%);
    color: white;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid hsl(21, 56%, 90%);
    height: 100%;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(21, 56%, 49%), hsl(21, 56%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
}

.service-title {
    color: hsl(21, 56%, 34%);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

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

.service-conditions {
    background: hsl(21, 56%, 95%);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: hsl(21, 56%, 34%);
}

.tab-content {
    min-height: 600px;
}

@media (max-width: 768px) {
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 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="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

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

.newsletter-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(21, 56%, 34%);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.3rem;
    color: hsl(21, 56%, 49%);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(21, 56%, 49%), hsl(21, 56%, 74%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(21, 56%, 34%);
    margin-bottom: 10px;
}

.benefit-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    outline: none;
}

.email-input:focus {
    border-color: hsl(21, 56%, 49%);
    box-shadow: 0 0 0 3px rgba(207, 118, 70, 0.1);
    transform: translateY(-2px);
}

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

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(207, 118, 70, 0.4);
    background: linear-gradient(135deg, hsl(21, 56%, 54%) 0%, hsl(21, 56%, 39%) 100%);
}

.subscribe-btn:hover::before {
    left: 100%;
}

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

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 20px;
    line-height: 1.5;
}

.privacy-note a {
    color: hsl(21, 56%, 49%);
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .newsletter-content {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

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

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(21, 56%, 74%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    z-index: 2;
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    animation: scrollTestimonials 45s linear infinite;
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px;
    margin: 0 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 2px solid hsl(21, 56%, 74%);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

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

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(21, 56%, 49%);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(21, 56%, 74%);
    padding-top: 20px;
}

.author-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: hsl(21, 56%, 34%);
}

.author-location {
    color: hsl(21, 56%, 49%);
    font-size: 1rem;
    font-weight: 500;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 5px;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 25px;
    }
    
    .testimonials-container {
        height: 400px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h4 {
    color: hsl(21, 56%, 74%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: hsl(21, 56%, 74%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(21, 56%, 74%);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 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-in-out;
}

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

.cookie-notice .btn-accept {
    background: hsl(21, 56%, 74%);
    border: none;
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(21, 56%, 49%);
            --secondary-color: hsl(21, 56%, 34%);
            --accent-color: hsl(21, 56%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .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: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 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 #e67e22;
}

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

.terms-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 10px;
}

.effective-date {
    font-size: 1rem;
    color: #95a5a6;
    font-weight: 600;
}

.terms-section {
    margin-bottom: 35px;
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #e67e22;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 1.6rem;
    color: #c0392b;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: justify;
}

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

.terms-list li {
    list-style: none;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.terms-list li::before {
    content: "🍽️";
    position: absolute;
    left: 0;
    top: 0;
}

.highlight-box {
    background: linear-gradient(45deg, #fff3e0, #ffe0b2);
    border: 2px solid #ff9800;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    font-weight: 600;
    color: #e65100;
}

.important-notice {
    background: linear-gradient(45deg, #ffebee, #ffcdd2);
    border: 2px solid #f44336;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    font-weight: 600;
    color: #c62828;
}

footer {
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h4 {
    color: hsl(21, 56%, 74%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: hsl(21, 56%, 74%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(21, 56%, 74%);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 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-in-out;
}

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

.cookie-notice .btn-accept {
    background: hsl(21, 56%, 74%);
    border: none;
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(21, 56%, 49%);
            --secondary-color: hsl(21, 56%, 34%);
            --accent-color: hsl(21, 56%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .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: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }

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

.faq-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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.faq-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(21, 56%, 74%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.accordion {
    --bs-accordion-border-radius: 15px;
    --bs-accordion-border-color: rgba(255,255,255,0.2);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255,255,255,0.3) !important;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: hsl(21, 56%, 74%) !important;
}

.accordion-button {
    background: transparent !important;
    border: none !important;
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(21, 56%, 34%) !important;
    box-shadow: none !important;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(21, 56%, 74%) 0%, hsl(21, 56%, 49%) 100%) !important;
    color: white !important;
}

.accordion-button::after {
    background-image: none !important;
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: hsl(21, 56%, 49%);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    color: white;
    transform: rotate(0deg);
}

.accordion-body {
    padding: 0 30px 30px 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(21, 56%, 34%);
    background: white;
}

.faq-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    fill: hsl(21, 56%, 49%);
    flex-shrink: 0;
}

.accordion-button:not(.collapsed) .faq-icon {
    fill: white;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .accordion-body {
        padding: 0 20px 25px 20px;
        font-size: 1rem;
    }
}

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

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

.section-title {
    color: hsl(21, 56%, 34%);
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(21, 56%, 49%);
    border-radius: 2px;
}

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

.about-image:hover {
    transform: translateY(-10px);
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 5px solid hsl(21, 56%, 49%);
    transition: transform 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
}

.block-title {
    color: hsl(21, 56%, 34%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.block-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: hsl(21, 56%, 49%);
    border-radius: 50%;
    margin-right: 15px;
}

.block-text {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.highlight-text {
    color: hsl(21, 56%, 49%);
    font-weight: 600;
}

.story-section {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

.story-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(21, 56%, 74%);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-top-color: hsl(21, 56%, 49%);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(21, 56%, 49%), hsl(21, 56%, 74%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.value-title {
    color: hsl(21, 56%, 34%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-text {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .story-section {
        padding: 30px 25px;
    }
    
    .about-image {
        height: 300px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 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="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

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

.newsletter-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(21, 56%, 34%);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.3rem;
    color: hsl(21, 56%, 49%);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(21, 56%, 49%), hsl(21, 56%, 74%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(21, 56%, 34%);
    margin-bottom: 10px;
}

.benefit-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    outline: none;
}

.email-input:focus {
    border-color: hsl(21, 56%, 49%);
    box-shadow: 0 0 0 3px rgba(207, 118, 70, 0.1);
    transform: translateY(-2px);
}

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

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(207, 118, 70, 0.4);
    background: linear-gradient(135deg, hsl(21, 56%, 54%) 0%, hsl(21, 56%, 39%) 100%);
}

.subscribe-btn:hover::before {
    left: 100%;
}

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

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 20px;
    line-height: 1.5;
}

.privacy-note a {
    color: hsl(21, 56%, 49%);
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .newsletter-content {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h4 {
    color: hsl(21, 56%, 74%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: hsl(21, 56%, 74%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(21, 56%, 74%);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 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-in-out;
}

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

.cookie-notice .btn-accept {
    background: hsl(21, 56%, 74%);
    border: none;
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(21, 56%, 49%);
            --secondary-color: hsl(21, 56%, 34%);
            --accent-color: hsl(21, 56%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .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: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }

.hero-section {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.5rem;
    color: hsl(21, 56%, 74%);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
}

.hero-benefits {
    margin: 2rem 0;
}

.hero-benefits ul {
    list-style: none;
    padding: 0;
}

.hero-benefits li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.hero-benefits li i {
    color: hsl(21, 56%, 74%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

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

.cta-buttons {
    margin-top: 3rem;
}

.btn-primary-custom {
    background: hsl(21, 56%, 74%);
    border: none;
    color: hsl(21, 56%, 34%);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: white;
    color: hsl(21, 56%, 34%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(21, 56%, 74%);
    color: hsl(21, 56%, 74%);
    padding: 13px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: hsl(21, 56%, 74%);
    color: hsl(21, 56%, 34%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-image img {
        height: 300px;
    }
}

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

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(21, 56%, 74%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    z-index: 2;
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    animation: scrollTestimonials 45s linear infinite;
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px;
    margin: 0 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 2px solid hsl(21, 56%, 74%);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

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

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(21, 56%, 49%);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(21, 56%, 74%);
    padding-top: 20px;
}

.author-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: hsl(21, 56%, 34%);
}

.author-location {
    color: hsl(21, 56%, 49%);
    font-size: 1rem;
    font-weight: 500;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 5px;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 25px;
    }
    
    .testimonials-container {
        height: 400px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    padding: 80px 0;
    color: white;
}

.contact-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.contact-info {
    color: hsl(21, 56%, 34%);
}

.contact-info h3 {
    color: hsl(21, 56%, 34%);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hours-info {
    background: hsl(21, 56%, 74%);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.hours-info h4 {
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    margin-bottom: 15px;
}

.hours-info p {
    color: hsl(21, 56%, 34%);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: hsl(21, 56%, 34%);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

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

.form-control:focus {
    border-color: hsl(21, 56%, 49%);
    box-shadow: 0 0 0 0.2rem rgba(207, 114, 77, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(21, 56%, 64%);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(207, 114, 77, 0.4);
    background: linear-gradient(135deg, hsl(21, 56%, 54%) 0%, hsl(21, 56%, 39%) 100%);
}

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

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-content {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

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

.faq-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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.faq-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(21, 56%, 74%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.accordion {
    --bs-accordion-border-radius: 15px;
    --bs-accordion-border-color: rgba(255,255,255,0.2);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255,255,255,0.3) !important;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: hsl(21, 56%, 74%) !important;
}

.accordion-button {
    background: transparent !important;
    border: none !important;
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(21, 56%, 34%) !important;
    box-shadow: none !important;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(21, 56%, 74%) 0%, hsl(21, 56%, 49%) 100%) !important;
    color: white !important;
}

.accordion-button::after {
    background-image: none !important;
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: hsl(21, 56%, 49%);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    color: white;
    transform: rotate(0deg);
}

.accordion-body {
    padding: 0 30px 30px 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(21, 56%, 34%);
    background: white;
}

.faq-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    fill: hsl(21, 56%, 49%);
    flex-shrink: 0;
}

.accordion-button:not(.collapsed) .faq-icon {
    fill: white;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .accordion-body {
        padding: 0 20px 25px 20px;
        font-size: 1rem;
    }
}

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

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

.section-title {
    color: hsl(21, 56%, 34%);
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(21, 56%, 49%);
    border-radius: 2px;
}

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

.about-image:hover {
    transform: translateY(-10px);
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 5px solid hsl(21, 56%, 49%);
    transition: transform 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
}

.block-title {
    color: hsl(21, 56%, 34%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.block-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: hsl(21, 56%, 49%);
    border-radius: 50%;
    margin-right: 15px;
}

.block-text {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.highlight-text {
    color: hsl(21, 56%, 49%);
    font-weight: 600;
}

.story-section {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

.story-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(21, 56%, 74%);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-top-color: hsl(21, 56%, 49%);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(21, 56%, 49%), hsl(21, 56%, 74%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.value-title {
    color: hsl(21, 56%, 34%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-text {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .story-section {
        padding: 30px 25px;
    }
    
    .about-image {
        height: 300px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 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="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

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

.newsletter-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(21, 56%, 34%);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.3rem;
    color: hsl(21, 56%, 49%);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(21, 56%, 49%), hsl(21, 56%, 74%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(21, 56%, 34%);
    margin-bottom: 10px;
}

.benefit-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    outline: none;
}

.email-input:focus {
    border-color: hsl(21, 56%, 49%);
    box-shadow: 0 0 0 3px rgba(207, 118, 70, 0.1);
    transform: translateY(-2px);
}

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

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(207, 118, 70, 0.4);
    background: linear-gradient(135deg, hsl(21, 56%, 54%) 0%, hsl(21, 56%, 39%) 100%);
}

.subscribe-btn:hover::before {
    left: 100%;
}

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

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 20px;
    line-height: 1.5;
}

.privacy-note a {
    color: hsl(21, 56%, 49%);
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .newsletter-content {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

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

.section-title {
    color: hsl(21, 56%, 34%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    color: hsl(21, 56%, 49%);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 40px;
}

.nav-tabs .nav-link {
    border: 2px solid hsl(21, 56%, 74%);
    border-radius: 25px;
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    margin: 0 10px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    background: white;
}

.nav-tabs .nav-link:hover {
    background: hsl(21, 56%, 74%);
    color: white;
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: hsl(21, 56%, 49%);
    border-color: hsl(21, 56%, 49%);
    color: white;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid hsl(21, 56%, 90%);
    height: 100%;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(21, 56%, 49%), hsl(21, 56%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
}

.service-title {
    color: hsl(21, 56%, 34%);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

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

.service-conditions {
    background: hsl(21, 56%, 95%);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: hsl(21, 56%, 34%);
}

.tab-content {
    min-height: 600px;
}

@media (max-width: 768px) {
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(21, 56%, 49%) 0%, hsl(21, 56%, 34%) 100%);
    padding: 80px 0;
    color: white;
    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"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.12)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

.section-subtitle {
    color: hsl(21, 56%, 74%);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.stat-item::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.5s ease;
}

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

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(21, 56%, 74%);
    margin-bottom: 1rem;
    display: block;
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(21, 56%, 74%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

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

.advantages-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.advantages-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(196, 115, 68, 0.2);
    border-color: hsl(21, 56%, 74%);
}

.advantage-icon {
    font-size: 3rem;
    color: hsl(21, 56%, 49%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.advantages-card:hover .advantage-icon {
    color: hsl(21, 56%, 34%);
    transform: scale(1.1);
}

.advantage-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(21, 56%, 34%);
    margin-bottom: 15px;
    line-height: 1.3;
}

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

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

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: hsl(21, 56%, 34%);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .advantages-card {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h4 {
    color: hsl(21, 56%, 74%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: hsl(21, 56%, 74%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(21, 56%, 74%);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(21, 56%, 34%) 0%, hsl(21, 56%, 49%) 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-in-out;
}

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

.cookie-notice .btn-accept {
    background: hsl(21, 56%, 74%);
    border: none;
    color: hsl(21, 56%, 34%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}