:root {
            --primary-color: hsl(245, 38%, 44%);
            --secondary-color: hsl(245, 38%, 29%);
            --accent-color: hsl(245, 38%, 69%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }

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

.about-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="tea-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="hsl(245, 38%, 69%)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tea-pattern)"/></svg>');
    pointer-events: none;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(245, 38%, 29%);
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(245, 38%, 44%), hsl(245, 38%, 69%));
    border-radius: 2px;
}

.story-block {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border-left: 5px solid hsl(245, 38%, 44%);
    backdrop-filter: blur(10px);
}

.story-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(245, 38%, 29%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.story-title::before {
    content: '🍃';
    margin-right: 12px;
    font-size: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(245, 38%, 44%) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.about-image:hover::before {
    opacity: 0.1;
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

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

.mission-highlight {
    background: linear-gradient(135deg, hsl(245, 38%, 44%), hsl(245, 38%, 29%));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.mission-text {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(245, 38%, 69%);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top-color: hsl(245, 38%, 44%);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(245, 38%, 29%);
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .story-block {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .mission-highlight {
        padding: 25px;
        margin: 30px 0;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

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

.advantages-subtitle {
    color: hsl(245, 38%, 69%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(245, 38%, 69%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(245, 38%, 44%), hsl(245, 38%, 29%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(245, 38%, 29%), hsl(245, 38%, 44%));
}

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

.advantage-title {
    color: hsl(245, 38%, 29%);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: scale(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(245, 38%, 69%);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(245, 38%, 69%) 0%, white 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat-icon i {
    font-size: 2.2rem;
    color: hsl(245, 38%, 29%);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(245, 38%, 69%);
    font-weight: 500;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.highlight-number {
    background: linear-gradient(135deg, hsl(245, 38%, 69%) 0%, white 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(245, 38%, 29%) 0%, hsl(245, 38%, 44%) 100%);
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(245, 38%, 69%);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(245, 38%, 69%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(245, 38%, 69%);
}

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

.footer-contact a {
    color: hsl(245, 38%, 69%);
    text-decoration: none;
}

.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(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
    background-color: hsl(245, 38%, 69%);
    border: none;
    color: hsl(245, 38%, 29%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background-color: white;
    color: hsl(245, 38%, 29%);
    transform: translateY(-2px);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid hsl(245, 38%, 69%);
    color: hsl(245, 38%, 69%);
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background-color: hsl(245, 38%, 69%);
    color: hsl(245, 38%, 29%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-notice .btn:last-child {
        margin-bottom: 0;
    }
}

:root {
            --primary-color: hsl(245, 38%, 44%);
            --secondary-color: hsl(245, 38%, 29%);
            --accent-color: hsl(245, 38%, 69%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }

.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', 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);
}

.privacy-policy h1 {
    color: #27ae60;
    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 #27ae60;
    padding-bottom: 15px;
}

.privacy-policy h2 {
    color: #2c5530;
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: linear-gradient(45deg, #e8f5e8, #d4edda);
    border-left: 5px solid #27ae60;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.privacy-policy h3 {
    color: #34495e;
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid #95a5a6;
}

.privacy-policy p {
    margin-bottom: 18px;
    text-align: justify;
    padding: 0 10px;
    font-size: 1.1em;
}

.privacy-policy ul {
    margin: 20px 0;
    padding-left: 40px;
}

.privacy-policy li {
    margin-bottom: 12px;
    font-size: 1.05em;
    position: relative;
}

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

.highlight-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #f39c12;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(243,156,18,0.2);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.data-table th, .data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.data-table th {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    font-weight: bold;
}

.data-table tr:hover {
    background-color: #f8f9fa;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
}

footer {
    background: linear-gradient(135deg, hsl(245, 38%, 29%) 0%, hsl(245, 38%, 44%) 100%);
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(245, 38%, 69%);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(245, 38%, 69%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(245, 38%, 69%);
}

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

.footer-contact a {
    color: hsl(245, 38%, 69%);
    text-decoration: none;
}

.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(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
    background-color: hsl(245, 38%, 69%);
    border: none;
    color: hsl(245, 38%, 29%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background-color: white;
    color: hsl(245, 38%, 29%);
    transform: translateY(-2px);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid hsl(245, 38%, 69%);
    color: hsl(245, 38%, 69%);
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background-color: hsl(245, 38%, 69%);
    color: hsl(245, 38%, 29%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-notice .btn:last-child {
        margin-bottom: 0;
    }
}

:root {
            --primary-color: hsl(245, 38%, 44%);
            --secondary-color: hsl(245, 38%, 29%);
            --accent-color: hsl(245, 38%, 69%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }

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

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

.cookies-policy h2 {
    color: #4a7c59;
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: linear-gradient(90deg, #e8f5e8, transparent);
    border-left: 5px solid #4a7c59;
    border-radius: 0 10px 10px 0;
}

.cookies-policy h3 {
    color: #2c5530;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cookies-policy p {
    margin-bottom: 18px;
    text-align: justify;
    padding: 0 10px;
}

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

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

.cookies-policy li::before {
    content: "🍃";
    position: absolute;
    left: -25px;
    top: 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #4a7c59;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-table tr:hover {
    background-color: #f8f9fa;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(255,193,7,0.2);
}

.consent-notice {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    border: 1px solid #17a2b8;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(23,162,184,0.2);
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
}

footer {
    background: linear-gradient(135deg, hsl(245, 38%, 29%) 0%, hsl(245, 38%, 44%) 100%);
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(245, 38%, 69%);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(245, 38%, 69%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(245, 38%, 69%);
}

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

.footer-contact a {
    color: hsl(245, 38%, 69%);
    text-decoration: none;
}

.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(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
    background-color: hsl(245, 38%, 69%);
    border: none;
    color: hsl(245, 38%, 29%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background-color: white;
    color: hsl(245, 38%, 29%);
    transform: translateY(-2px);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid hsl(245, 38%, 69%);
    color: hsl(245, 38%, 69%);
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background-color: hsl(245, 38%, 69%);
    color: hsl(245, 38%, 29%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-notice .btn:last-child {
        margin-bottom: 0;
    }
}

:root {
            --primary-color: hsl(245, 38%, 44%);
            --secondary-color: hsl(245, 38%, 29%);
            --accent-color: hsl(245, 38%, 69%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }

.contact-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(245, 38%, 69%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(245, 38%, 69%);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.form-floating {
    margin-bottom: 1.5rem;
}

.form-floating .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    padding: 1.2rem 1rem;
    transition: all 0.3s ease;
}

.form-floating .form-control:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: hsl(245, 38%, 69%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    color: white;
}

.form-floating .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-floating label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(245, 38%, 69%), hsl(245, 38%, 44%));
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, white, hsl(245, 38%, 69%));
    color: hsl(245, 38%, 29%);
}

.contact-info {
    padding: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(245, 38%, 69%);
    margin-bottom: 1rem;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.consultation-process {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border-left: 5px solid hsl(245, 38%, 69%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.step-number {
    background: hsl(245, 38%, 69%);
    color: hsl(245, 38%, 29%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.working-hours {
    background: linear-gradient(45deg, hsl(245, 38%, 69%), hsl(245, 38%, 44%));
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.hours-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.hours-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form,
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

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

.about-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="tea-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="hsl(245, 38%, 69%)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tea-pattern)"/></svg>');
    pointer-events: none;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(245, 38%, 29%);
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(245, 38%, 44%), hsl(245, 38%, 69%));
    border-radius: 2px;
}

.story-block {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border-left: 5px solid hsl(245, 38%, 44%);
    backdrop-filter: blur(10px);
}

.story-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(245, 38%, 29%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.story-title::before {
    content: '🍃';
    margin-right: 12px;
    font-size: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(245, 38%, 44%) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.about-image:hover::before {
    opacity: 0.1;
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

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

.mission-highlight {
    background: linear-gradient(135deg, hsl(245, 38%, 44%), hsl(245, 38%, 29%));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.mission-text {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(245, 38%, 69%);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top-color: hsl(245, 38%, 44%);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(245, 38%, 29%);
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .story-block {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .mission-highlight {
        padding: 25px;
        margin: 30px 0;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(245, 38%, 29%) 0%, hsl(245, 38%, 44%) 100%);
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(245, 38%, 69%);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(245, 38%, 69%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(245, 38%, 69%);
}

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

.footer-contact a {
    color: hsl(245, 38%, 69%);
    text-decoration: none;
}

.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(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
    background-color: hsl(245, 38%, 69%);
    border: none;
    color: hsl(245, 38%, 29%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background-color: white;
    color: hsl(245, 38%, 29%);
    transform: translateY(-2px);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid hsl(245, 38%, 69%);
    color: hsl(245, 38%, 69%);
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background-color: hsl(245, 38%, 69%);
    color: hsl(245, 38%, 29%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-notice .btn:last-child {
        margin-bottom: 0;
    }
}

:root {
            --primary-color: hsl(245, 38%, 44%);
            --secondary-color: hsl(245, 38%, 29%);
            --accent-color: hsl(245, 38%, 69%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }

.services-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-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="tea-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23tea-pattern)"/></svg>');
    opacity: 0.3;
}

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

.section-subtitle {
    color: hsl(245, 38%, 69%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, hsl(245, 38%, 69%), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 0.1;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: hsl(245, 38%, 69%);
}

.service-icon {
    font-size: 3rem;
    color: hsl(245, 38%, 44%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(245, 38%, 29%);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    color: hsl(245, 38%, 29%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-price {
    color: hsl(245, 38%, 44%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-conditions {
    background: hsl(245, 38%, 69%);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.row {
    position: relative;
    z-index: 1;
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 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"><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)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: hsl(245, 38%, 29%);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(245, 38%, 44%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 500;
}

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

.benefits-list li {
    color: hsl(245, 38%, 29%);
    padding: 12px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.benefits-list li::before {
    content: '🍃';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
}

.newsletter-form {
    margin-top: 40px;
}

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(245, 38%, 69%);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    outline: none;
    border-color: hsl(245, 38%, 44%);
    box-shadow: 0 0 0 3px rgba(115, 103, 178, 0.1);
    background: white;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    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::before {
    left: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(115, 103, 178, 0.4);
}

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(245, 38%, 44%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(245, 38%, 69%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(245, 38%, 44%), hsl(245, 38%, 69%));
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(245, 38%, 69%);
}

.testimonial-card.large {
    grid-row: span 2;
}

.testimonial-card.wide {
    grid-column: span 2;
}

.quote-icon {
    font-size: 3rem;
    color: hsl(245, 38%, 69%);
    opacity: 0.6;
    margin-bottom: 15px;
    line-height: 1;
}

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

.client-info {
    border-top: 1px solid hsl(245, 38%, 89%);
    padding-top: 20px;
}

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

.client-location {
    color: hsl(245, 38%, 59%);
    font-size: 0.95rem;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.wide {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(245, 38%, 29%) 0%, hsl(245, 38%, 44%) 100%);
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(245, 38%, 69%);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(245, 38%, 69%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(245, 38%, 69%);
}

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

.footer-contact a {
    color: hsl(245, 38%, 69%);
    text-decoration: none;
}

.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(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
    background-color: hsl(245, 38%, 69%);
    border: none;
    color: hsl(245, 38%, 29%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background-color: white;
    color: hsl(245, 38%, 29%);
    transform: translateY(-2px);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid hsl(245, 38%, 69%);
    color: hsl(245, 38%, 69%);
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background-color: hsl(245, 38%, 69%);
    color: hsl(245, 38%, 29%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-notice .btn:last-child {
        margin-bottom: 0;
    }
}

:root {
            --primary-color: hsl(245, 38%, 44%);
            --secondary-color: hsl(245, 38%, 29%);
            --accent-color: hsl(245, 38%, 69%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #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 #27ae60;
}

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

.terms-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-style: italic;
}

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

.section-title {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #27ae60;
    border-radius: 2px;
}

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

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

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

.terms-list li::before {
    content: '🍃';
    position: absolute;
    left: 0;
    top: 0;
}

.highlight-box {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(39,174,96,0.3);
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #bdc3c7;
}

footer {
    background: linear-gradient(135deg, hsl(245, 38%, 29%) 0%, hsl(245, 38%, 44%) 100%);
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(245, 38%, 69%);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(245, 38%, 69%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(245, 38%, 69%);
}

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

.footer-contact a {
    color: hsl(245, 38%, 69%);
    text-decoration: none;
}

.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(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
    background-color: hsl(245, 38%, 69%);
    border: none;
    color: hsl(245, 38%, 29%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background-color: white;
    color: hsl(245, 38%, 29%);
    transform: translateY(-2px);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid hsl(245, 38%, 69%);
    color: hsl(245, 38%, 69%);
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background-color: hsl(245, 38%, 69%);
    color: hsl(245, 38%, 29%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-notice .btn:last-child {
        margin-bottom: 0;
    }
}

:root {
            --primary-color: hsl(245, 38%, 44%);
            --secondary-color: hsl(245, 38%, 29%);
            --accent-color: hsl(245, 38%, 69%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }

.faq-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 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="80" 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-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.faq-subtitle {
    color: hsl(245, 38%, 69%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.faq-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(245, 38%, 44%), hsl(245, 38%, 69%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-card:hover::before {
    transform: scaleX(1);
}

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

.faq-question {
    color: hsl(245, 38%, 29%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-question::before {
    content: '?';
    background: linear-gradient(135deg, hsl(245, 38%, 44%), hsl(245, 38%, 69%));
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-answer {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-left: 3rem;
}

.faq-highlight {
    color: hsl(245, 38%, 44%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        margin-left: 2rem;
        font-size: 1rem;
    }
}

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

.about-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="tea-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="hsl(245, 38%, 69%)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tea-pattern)"/></svg>');
    pointer-events: none;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(245, 38%, 29%);
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(245, 38%, 44%), hsl(245, 38%, 69%));
    border-radius: 2px;
}

.story-block {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border-left: 5px solid hsl(245, 38%, 44%);
    backdrop-filter: blur(10px);
}

.story-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(245, 38%, 29%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.story-title::before {
    content: '🍃';
    margin-right: 12px;
    font-size: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(245, 38%, 44%) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.about-image:hover::before {
    opacity: 0.1;
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

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

.mission-highlight {
    background: linear-gradient(135deg, hsl(245, 38%, 44%), hsl(245, 38%, 29%));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.mission-text {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(245, 38%, 69%);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top-color: hsl(245, 38%, 44%);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(245, 38%, 29%);
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .story-block {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .mission-highlight {
        padding: 25px;
        margin: 30px 0;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 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"><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)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: hsl(245, 38%, 29%);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(245, 38%, 44%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 500;
}

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

.benefits-list li {
    color: hsl(245, 38%, 29%);
    padding: 12px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.benefits-list li::before {
    content: '🍃';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
}

.newsletter-form {
    margin-top: 40px;
}

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(245, 38%, 69%);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    outline: none;
    border-color: hsl(245, 38%, 44%);
    box-shadow: 0 0 0 3px rgba(115, 103, 178, 0.1);
    background: white;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    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::before {
    left: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(115, 103, 178, 0.4);
}

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(245, 38%, 44%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(245, 38%, 29%) 0%, hsl(245, 38%, 44%) 100%);
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(245, 38%, 69%);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(245, 38%, 69%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(245, 38%, 69%);
}

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

.footer-contact a {
    color: hsl(245, 38%, 69%);
    text-decoration: none;
}

.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(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
    background-color: hsl(245, 38%, 69%);
    border: none;
    color: hsl(245, 38%, 29%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background-color: white;
    color: hsl(245, 38%, 29%);
    transform: translateY(-2px);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid hsl(245, 38%, 69%);
    color: hsl(245, 38%, 69%);
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background-color: hsl(245, 38%, 69%);
    color: hsl(245, 38%, 29%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-notice .btn:last-child {
        margin-bottom: 0;
    }
}

:root {
            --primary-color: hsl(245, 38%, 44%);
            --secondary-color: hsl(245, 38%, 29%);
            --accent-color: hsl(245, 38%, 69%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }

.hero-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: hsl(245, 38%, 69%);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.hero-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(245, 38%, 69%);
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-buttons {
    margin: 3rem 0 4rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: hsl(245, 38%, 69%);
    border: none;
    color: hsl(245, 38%, 29%);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    background: white;
    color: hsl(245, 38%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid hsl(245, 38%, 69%);
    color: hsl(245, 38%, 69%);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: hsl(245, 38%, 69%);
    color: hsl(245, 38%, 29%);
    transform: translateY(-2px);
}

.hero-image-container {
    margin-top: 3rem;
    position: relative;
}

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description,
    .hero-benefits li {
        font-size: 1rem;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-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="tea-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23tea-pattern)"/></svg>');
    opacity: 0.3;
}

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

.section-subtitle {
    color: hsl(245, 38%, 69%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, hsl(245, 38%, 69%), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 0.1;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: hsl(245, 38%, 69%);
}

.service-icon {
    font-size: 3rem;
    color: hsl(245, 38%, 44%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(245, 38%, 29%);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    color: hsl(245, 38%, 29%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-price {
    color: hsl(245, 38%, 44%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-conditions {
    background: hsl(245, 38%, 69%);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.row {
    position: relative;
    z-index: 1;
}

.advantages-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

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

.advantages-subtitle {
    color: hsl(245, 38%, 69%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(245, 38%, 69%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(245, 38%, 44%), hsl(245, 38%, 29%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(245, 38%, 29%), hsl(245, 38%, 44%));
}

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

.advantage-title {
    color: hsl(245, 38%, 29%);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(245, 38%, 69%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(245, 38%, 44%), hsl(245, 38%, 69%));
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(245, 38%, 69%);
}

.testimonial-card.large {
    grid-row: span 2;
}

.testimonial-card.wide {
    grid-column: span 2;
}

.quote-icon {
    font-size: 3rem;
    color: hsl(245, 38%, 69%);
    opacity: 0.6;
    margin-bottom: 15px;
    line-height: 1;
}

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

.client-info {
    border-top: 1px solid hsl(245, 38%, 89%);
    padding-top: 20px;
}

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

.client-location {
    color: hsl(245, 38%, 59%);
    font-size: 0.95rem;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.wide {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: scale(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(245, 38%, 69%);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(245, 38%, 69%) 0%, white 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat-icon i {
    font-size: 2.2rem;
    color: hsl(245, 38%, 29%);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(245, 38%, 69%);
    font-weight: 500;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.highlight-number {
    background: linear-gradient(135deg, hsl(245, 38%, 69%) 0%, white 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

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

.about-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="tea-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="hsl(245, 38%, 69%)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tea-pattern)"/></svg>');
    pointer-events: none;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(245, 38%, 29%);
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(245, 38%, 44%), hsl(245, 38%, 69%));
    border-radius: 2px;
}

.story-block {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border-left: 5px solid hsl(245, 38%, 44%);
    backdrop-filter: blur(10px);
}

.story-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(245, 38%, 29%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.story-title::before {
    content: '🍃';
    margin-right: 12px;
    font-size: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(245, 38%, 44%) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.about-image:hover::before {
    opacity: 0.1;
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

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

.mission-highlight {
    background: linear-gradient(135deg, hsl(245, 38%, 44%), hsl(245, 38%, 29%));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.mission-text {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(245, 38%, 69%);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top-color: hsl(245, 38%, 44%);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(245, 38%, 29%);
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .story-block {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .mission-highlight {
        padding: 25px;
        margin: 30px 0;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 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="80" 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-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.faq-subtitle {
    color: hsl(245, 38%, 69%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.faq-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(245, 38%, 44%), hsl(245, 38%, 69%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-card:hover::before {
    transform: scaleX(1);
}

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

.faq-question {
    color: hsl(245, 38%, 29%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-question::before {
    content: '?';
    background: linear-gradient(135deg, hsl(245, 38%, 44%), hsl(245, 38%, 69%));
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-answer {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-left: 3rem;
}

.faq-highlight {
    color: hsl(245, 38%, 44%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        margin-left: 2rem;
        font-size: 1rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 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"><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)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: hsl(245, 38%, 29%);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(245, 38%, 44%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 500;
}

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

.benefits-list li {
    color: hsl(245, 38%, 29%);
    padding: 12px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.benefits-list li::before {
    content: '🍃';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
}

.newsletter-form {
    margin-top: 40px;
}

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(245, 38%, 69%);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    outline: none;
    border-color: hsl(245, 38%, 44%);
    box-shadow: 0 0 0 3px rgba(115, 103, 178, 0.1);
    background: white;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    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::before {
    left: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(115, 103, 178, 0.4);
}

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(245, 38%, 44%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(245, 38%, 69%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(245, 38%, 69%);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.form-floating {
    margin-bottom: 1.5rem;
}

.form-floating .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    padding: 1.2rem 1rem;
    transition: all 0.3s ease;
}

.form-floating .form-control:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: hsl(245, 38%, 69%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    color: white;
}

.form-floating .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-floating label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(245, 38%, 69%), hsl(245, 38%, 44%));
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, white, hsl(245, 38%, 69%));
    color: hsl(245, 38%, 29%);
}

.contact-info {
    padding: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(245, 38%, 69%);
    margin-bottom: 1rem;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.consultation-process {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border-left: 5px solid hsl(245, 38%, 69%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.step-number {
    background: hsl(245, 38%, 69%);
    color: hsl(245, 38%, 29%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.working-hours {
    background: linear-gradient(45deg, hsl(245, 38%, 69%), hsl(245, 38%, 44%));
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.hours-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.hours-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form,
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(245, 38%, 29%) 0%, hsl(245, 38%, 44%) 100%);
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(245, 38%, 69%);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(245, 38%, 69%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(245, 38%, 69%);
}

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

.footer-contact a {
    color: hsl(245, 38%, 69%);
    text-decoration: none;
}

.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(245, 38%, 44%) 0%, hsl(245, 38%, 29%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
    background-color: hsl(245, 38%, 69%);
    border: none;
    color: hsl(245, 38%, 29%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background-color: white;
    color: hsl(245, 38%, 29%);
    transform: translateY(-2px);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid hsl(245, 38%, 69%);
    color: hsl(245, 38%, 69%);
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background-color: hsl(245, 38%, 69%);
    color: hsl(245, 38%, 29%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-notice .btn:last-child {
        margin-bottom: 0;
    }
}