:root {
            --primary-color: hsl(19, 32%, 35%);
            --secondary-color: hsl(19, 32%, 20%);
            --accent-color: hsl(19, 32%, 60%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin: 0;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
        }

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    color: white;
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(19, 32%, 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

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

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

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

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

.story-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(19, 32%, 60%);
    margin-bottom: 1.5rem;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(19, 32%, 60%);
    border-radius: 2px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: hsl(19, 32%, 60%);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.value-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.mission-highlight {
    background: linear-gradient(135deg, hsl(19, 32%, 60%), hsl(19, 32%, 35%));
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float 20s linear infinite;
}

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

.mission-text {
    font-size: 1.4rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-card {
        padding: 25px;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .story-title {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.advantages-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);
}

.advantages-subtitle {
    color: hsl(19, 32%, 60%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.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(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(19, 32%, 35%), hsl(19, 32%, 60%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.advantage-card:hover .advantage-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.advantage-title {
    color: hsl(19, 32%, 20%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(19, 32%, 35%);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
    }
    
    .advantages-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
    }
    
    .advantage-icon i {
        font-size: 2rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.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(19, 32%, 80%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(19, 32%, 60%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    color: hsl(19, 32%, 70%);
}

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

.stat-label {
    color: hsl(19, 32%, 85%);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

footer {
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(19, 32%, 60%), hsl(19, 32%, 45%));
}

.footer-brand h3 {
    color: hsl(19, 32%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: #e9ecef;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-links h5 {
    color: hsl(19, 32%, 60%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(19, 32%, 60%);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: hsl(19, 32%, 60%);
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(19, 32%, 60%);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    transform: translateX(3px);
}

.contact-info p {
    margin-bottom: 15px;
    color: #e9ecef;
    display: flex;
    align-items: center;
}

.contact-info p i {
    color: hsl(19, 32%, 60%);
    margin-right: 12px;
    width: 20px;
}

.contact-info a {
    color: #e9ecef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: hsl(19, 32%, 60%);
}

.footer-bottom {
    border-top: 1px solid hsl(19, 32%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 3px solid hsl(19, 32%, 60%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #e9ecef;
}

.cookie-notice .btn-accept {
    background: hsl(19, 32%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-notice .btn-accept:hover {
    background: hsl(19, 32%, 50%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(19, 32%, 60%);
    color: hsl(19, 32%, 60%);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background: hsl(19, 32%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(19, 32%, 35%);
            --secondary-color: hsl(19, 32%, 20%);
            --accent-color: hsl(19, 32%, 60%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin: 0;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
        }

.privacy-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);
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #2c5aa0;
}

.privacy-header h1 {
    font-size: 2.8em;
    color: #2c5aa0;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

.privacy-section {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #2c5aa0;
    transition: transform 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-2px);
}

.privacy-section h2 {
    color: #2c5aa0;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f0fe;
}

.privacy-section h3 {
    color: #1a4480;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
}

.privacy-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    margin-bottom: 8px;
}

.privacy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
    font-size: 1.2em;
}

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

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

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

.data-table th {
    background: #2c5aa0;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.data-table tr:nth-child(even) {
    background: #f8f9ff;
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f0f4f8;
    border-radius: 8px;
    color: #666;
    font-style: italic;
}

footer {
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(19, 32%, 60%), hsl(19, 32%, 45%));
}

.footer-brand h3 {
    color: hsl(19, 32%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: #e9ecef;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-links h5 {
    color: hsl(19, 32%, 60%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(19, 32%, 60%);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: hsl(19, 32%, 60%);
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(19, 32%, 60%);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    transform: translateX(3px);
}

.contact-info p {
    margin-bottom: 15px;
    color: #e9ecef;
    display: flex;
    align-items: center;
}

.contact-info p i {
    color: hsl(19, 32%, 60%);
    margin-right: 12px;
    width: 20px;
}

.contact-info a {
    color: #e9ecef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: hsl(19, 32%, 60%);
}

.footer-bottom {
    border-top: 1px solid hsl(19, 32%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 3px solid hsl(19, 32%, 60%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #e9ecef;
}

.cookie-notice .btn-accept {
    background: hsl(19, 32%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-notice .btn-accept:hover {
    background: hsl(19, 32%, 50%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(19, 32%, 60%);
    color: hsl(19, 32%, 60%);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background: hsl(19, 32%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(19, 32%, 35%);
            --secondary-color: hsl(19, 32%, 20%);
            --accent-color: hsl(19, 32%, 60%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin: 0;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
        }

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

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

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

.policy-header p {
    color: #7f8c8d;
    font-size: 1.1em;
    margin: 0;
}

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

.section-title {
    color: #2980b9;
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e74c3c;
}

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

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

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

.highlight-box h3 {
    margin-top: 0;
    font-weight: 600;
}

.consent-info {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.gdpr-compliance {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.important-note {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    font-weight: 500;
}

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

footer {
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(19, 32%, 60%), hsl(19, 32%, 45%));
}

.footer-brand h3 {
    color: hsl(19, 32%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: #e9ecef;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-links h5 {
    color: hsl(19, 32%, 60%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(19, 32%, 60%);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: hsl(19, 32%, 60%);
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(19, 32%, 60%);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    transform: translateX(3px);
}

.contact-info p {
    margin-bottom: 15px;
    color: #e9ecef;
    display: flex;
    align-items: center;
}

.contact-info p i {
    color: hsl(19, 32%, 60%);
    margin-right: 12px;
    width: 20px;
}

.contact-info a {
    color: #e9ecef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: hsl(19, 32%, 60%);
}

.footer-bottom {
    border-top: 1px solid hsl(19, 32%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 3px solid hsl(19, 32%, 60%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #e9ecef;
}

.cookie-notice .btn-accept {
    background: hsl(19, 32%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-notice .btn-accept:hover {
    background: hsl(19, 32%, 50%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(19, 32%, 60%);
    color: hsl(19, 32%, 60%);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background: hsl(19, 32%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(19, 32%, 35%);
            --secondary-color: hsl(19, 32%, 20%);
            --accent-color: hsl(19, 32%, 60%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin: 0;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(19, 32%, 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.info-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: hsl(19, 32%, 60%);
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.working-hours {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
    border-left: 4px solid hsl(19, 32%, 60%);
}

.hours-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(19, 32%, 60%);
}

.hours-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

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

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: hsl(19, 32%, 20%);
    text-align: center;
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: hsl(19, 32%, 20%);
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(19, 32%, 20%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(19, 32%, 60%);
    box-shadow: 0 0 0 3px rgba(150, 111, 87, 0.2);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

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

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 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;
}

.submit-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;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, hsl(19, 32%, 40%) 0%, hsl(19, 32%, 25%) 100%);
}

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

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

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    color: white;
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(19, 32%, 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

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

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

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

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

.story-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(19, 32%, 60%);
    margin-bottom: 1.5rem;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(19, 32%, 60%);
    border-radius: 2px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: hsl(19, 32%, 60%);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.value-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.mission-highlight {
    background: linear-gradient(135deg, hsl(19, 32%, 60%), hsl(19, 32%, 35%));
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float 20s linear infinite;
}

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

.mission-text {
    font-size: 1.4rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-card {
        padding: 25px;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .story-title {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(19, 32%, 60%), hsl(19, 32%, 45%));
}

.footer-brand h3 {
    color: hsl(19, 32%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: #e9ecef;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-links h5 {
    color: hsl(19, 32%, 60%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(19, 32%, 60%);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: hsl(19, 32%, 60%);
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(19, 32%, 60%);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    transform: translateX(3px);
}

.contact-info p {
    margin-bottom: 15px;
    color: #e9ecef;
    display: flex;
    align-items: center;
}

.contact-info p i {
    color: hsl(19, 32%, 60%);
    margin-right: 12px;
    width: 20px;
}

.contact-info a {
    color: #e9ecef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: hsl(19, 32%, 60%);
}

.footer-bottom {
    border-top: 1px solid hsl(19, 32%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 3px solid hsl(19, 32%, 60%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #e9ecef;
}

.cookie-notice .btn-accept {
    background: hsl(19, 32%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-notice .btn-accept:hover {
    background: hsl(19, 32%, 50%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(19, 32%, 60%);
    color: hsl(19, 32%, 60%);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background: hsl(19, 32%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(19, 32%, 35%);
            --secondary-color: hsl(19, 32%, 20%);
            --accent-color: hsl(19, 32%, 60%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin: 0;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    padding: 80px 0;
    color: white;
}

.services-title {
    color: hsl(19, 32%, 60%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(19, 32%, 60%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    color: hsl(19, 32%, 60%);
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(19, 32%, 60%);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.service-conditions {
    font-size: 0.9rem;
    opacity: 0.8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.service-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-content {
    flex: 1;
}

@media (max-width: 768px) {
    .service-row {
        flex-direction: column;
        text-align: center;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 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="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); }
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.newsletter-subtitle {
    color: hsl(19, 32%, 85%);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(19, 32%, 80%);
    margin-bottom: 1rem;
}

.benefit-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: hsl(19, 32%, 85%);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    align-items: stretch;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    color: hsl(19, 32%, 20%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input::placeholder {
    color: hsl(19, 32%, 50%);
}

.email-input:focus {
    border-color: hsl(19, 32%, 60%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

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

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(19, 32%, 65%) 0%, hsl(19, 32%, 50%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

.privacy-note {
    color: hsl(19, 32%, 80%);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.testimonials-scroll {
    height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.testimonials-scroll::-webkit-scrollbar {
    width: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: hsl(19, 32%, 60%);
    border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb:hover {
    background: hsl(19, 32%, 70%);
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-left: 5px solid hsl(19, 32%, 60%);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

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

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

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid hsl(19, 32%, 90%);
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: hsl(19, 32%, 35%);
    font-size: 1.1rem;
}

.author-location {
    color: hsl(19, 32%, 60%);
    font-size: 0.95rem;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-scroll {
        height: 400px;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(19, 32%, 60%), hsl(19, 32%, 45%));
}

.footer-brand h3 {
    color: hsl(19, 32%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: #e9ecef;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-links h5 {
    color: hsl(19, 32%, 60%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(19, 32%, 60%);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: hsl(19, 32%, 60%);
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(19, 32%, 60%);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    transform: translateX(3px);
}

.contact-info p {
    margin-bottom: 15px;
    color: #e9ecef;
    display: flex;
    align-items: center;
}

.contact-info p i {
    color: hsl(19, 32%, 60%);
    margin-right: 12px;
    width: 20px;
}

.contact-info a {
    color: #e9ecef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: hsl(19, 32%, 60%);
}

.footer-bottom {
    border-top: 1px solid hsl(19, 32%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 3px solid hsl(19, 32%, 60%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #e9ecef;
}

.cookie-notice .btn-accept {
    background: hsl(19, 32%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-notice .btn-accept:hover {
    background: hsl(19, 32%, 50%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(19, 32%, 60%);
    color: hsl(19, 32%, 60%);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background: hsl(19, 32%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(19, 32%, 35%);
            --secondary-color: hsl(19, 32%, 20%);
            --accent-color: hsl(19, 32%, 60%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin: 0;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
        }

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.terms-title {
    text-align: center;
    color: #1a252f;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.terms-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1em;
    margin-bottom: 40px;
    font-style: italic;
}

.terms-section {
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #007bff;
}

.section-title {
    color: #007bff;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

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

.highlight-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #f39c12;
}

.important-notice {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #17a2b8;
}

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

.terms-list li {
    margin-bottom: 8px;
    position: relative;
}

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

footer {
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(19, 32%, 60%), hsl(19, 32%, 45%));
}

.footer-brand h3 {
    color: hsl(19, 32%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: #e9ecef;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-links h5 {
    color: hsl(19, 32%, 60%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(19, 32%, 60%);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: hsl(19, 32%, 60%);
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(19, 32%, 60%);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    transform: translateX(3px);
}

.contact-info p {
    margin-bottom: 15px;
    color: #e9ecef;
    display: flex;
    align-items: center;
}

.contact-info p i {
    color: hsl(19, 32%, 60%);
    margin-right: 12px;
    width: 20px;
}

.contact-info a {
    color: #e9ecef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: hsl(19, 32%, 60%);
}

.footer-bottom {
    border-top: 1px solid hsl(19, 32%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 3px solid hsl(19, 32%, 60%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #e9ecef;
}

.cookie-notice .btn-accept {
    background: hsl(19, 32%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-notice .btn-accept:hover {
    background: hsl(19, 32%, 50%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(19, 32%, 60%);
    color: hsl(19, 32%, 60%);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background: hsl(19, 32%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(19, 32%, 35%);
            --secondary-color: hsl(19, 32%, 20%);
            --accent-color: hsl(19, 32%, 60%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin: 0;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-header p {
    font-size: 1.2rem;
    color: hsl(19, 32%, 80%);
    max-width: 600px;
    margin: 0 auto;
}

.faq-tabs {
    margin-bottom: 40px;
}

.nav-tabs {
    border-bottom: 2px solid hsl(19, 32%, 60%);
    justify-content: center;
}

.nav-tabs .nav-link {
    background: transparent;
    border: 2px solid transparent;
    color: hsl(19, 32%, 80%);
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: white;
    background: hsl(19, 32%, 60%);
    border-color: hsl(19, 32%, 60%);
}

.nav-tabs .nav-link.active {
    background: hsl(19, 32%, 60%);
    border-color: hsl(19, 32%, 60%);
    color: white;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: hsl(19, 32%, 60%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
    border-color: transparent;
}

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

.accordion-body {
    background: rgba(255, 255, 255, 0.05);
    color: hsl(19, 32%, 90%);
    padding: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.tab-content {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .nav-tabs .nav-link {
        padding: 12px 20px;
        margin: 5px;
        font-size: 0.9rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    color: white;
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(19, 32%, 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

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

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

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

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

.story-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(19, 32%, 60%);
    margin-bottom: 1.5rem;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(19, 32%, 60%);
    border-radius: 2px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: hsl(19, 32%, 60%);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.value-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.mission-highlight {
    background: linear-gradient(135deg, hsl(19, 32%, 60%), hsl(19, 32%, 35%));
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float 20s linear infinite;
}

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

.mission-text {
    font-size: 1.4rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-card {
        padding: 25px;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .story-title {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 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="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); }
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.newsletter-subtitle {
    color: hsl(19, 32%, 85%);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(19, 32%, 80%);
    margin-bottom: 1rem;
}

.benefit-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: hsl(19, 32%, 85%);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    align-items: stretch;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    color: hsl(19, 32%, 20%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input::placeholder {
    color: hsl(19, 32%, 50%);
}

.email-input:focus {
    border-color: hsl(19, 32%, 60%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

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

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(19, 32%, 65%) 0%, hsl(19, 32%, 50%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

.privacy-note {
    color: hsl(19, 32%, 80%);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(19, 32%, 60%), hsl(19, 32%, 45%));
}

.footer-brand h3 {
    color: hsl(19, 32%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: #e9ecef;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-links h5 {
    color: hsl(19, 32%, 60%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(19, 32%, 60%);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: hsl(19, 32%, 60%);
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(19, 32%, 60%);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    transform: translateX(3px);
}

.contact-info p {
    margin-bottom: 15px;
    color: #e9ecef;
    display: flex;
    align-items: center;
}

.contact-info p i {
    color: hsl(19, 32%, 60%);
    margin-right: 12px;
    width: 20px;
}

.contact-info a {
    color: #e9ecef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: hsl(19, 32%, 60%);
}

.footer-bottom {
    border-top: 1px solid hsl(19, 32%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 3px solid hsl(19, 32%, 60%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #e9ecef;
}

.cookie-notice .btn-accept {
    background: hsl(19, 32%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-notice .btn-accept:hover {
    background: hsl(19, 32%, 50%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(19, 32%, 60%);
    color: hsl(19, 32%, 60%);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background: hsl(19, 32%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(19, 32%, 35%);
            --secondary-color: hsl(19, 32%, 20%);
            --accent-color: hsl(19, 32%, 60%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin: 0;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: 
        "title image"
        "content image"
        "cta-buttons image";
    gap: 2rem;
    padding: 4rem 2rem;
    align-items: 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% 70%, hsla(19, 32%, 60%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-subtitle {
    color: hsl(19, 32%, 60%);
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 1rem;
    margin-bottom: 0;
}

.hero-content {
    grid-area: content;
    color: white;
    animation: slideInLeft 1s ease-out 0.3s both;
}

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

.hero-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

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

.hero-features i {
    color: hsl(19, 32%, 60%);
    margin-right: 1rem;
    font-size: 1.3rem;
    width: 24px;
}

.hero-image {
    grid-area: image;
    text-align: center;
    animation: slideInRight 1s ease-out 0.6s both;
}

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

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-cta {
    grid-area: cta-buttons;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.9s both;
}

.btn-primary-custom {
    background: hsl(19, 32%, 60%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    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-primary-custom:hover {
    background: hsl(19, 32%, 50%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
}

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

.btn-secondary-custom:hover {
    background: hsl(19, 32%, 60%);
    color: white;
    transform: translateY(-2px);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "title"
            "image"
            "content"
            "cta-buttons";
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image img {
        transform: none;
        max-width: 80%;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(19, 32%, 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.info-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: hsl(19, 32%, 60%);
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.working-hours {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
    border-left: 4px solid hsl(19, 32%, 60%);
}

.hours-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(19, 32%, 60%);
}

.hours-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

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

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: hsl(19, 32%, 20%);
    text-align: center;
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: hsl(19, 32%, 20%);
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(19, 32%, 20%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(19, 32%, 60%);
    box-shadow: 0 0 0 3px rgba(150, 111, 87, 0.2);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

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

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 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;
}

.submit-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;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, hsl(19, 32%, 40%) 0%, hsl(19, 32%, 25%) 100%);
}

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

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

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

.advantages-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.advantages-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);
}

.advantages-subtitle {
    color: hsl(19, 32%, 60%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.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(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(19, 32%, 35%), hsl(19, 32%, 60%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.advantage-card:hover .advantage-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.advantage-title {
    color: hsl(19, 32%, 20%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(19, 32%, 35%);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
    }
    
    .advantages-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
    }
    
    .advantage-icon i {
        font-size: 2rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 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="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); }
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.newsletter-subtitle {
    color: hsl(19, 32%, 85%);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(19, 32%, 80%);
    margin-bottom: 1rem;
}

.benefit-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: hsl(19, 32%, 85%);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    align-items: stretch;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    color: hsl(19, 32%, 20%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input::placeholder {
    color: hsl(19, 32%, 50%);
}

.email-input:focus {
    border-color: hsl(19, 32%, 60%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

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

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(19, 32%, 65%) 0%, hsl(19, 32%, 50%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

.privacy-note {
    color: hsl(19, 32%, 80%);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-header p {
    font-size: 1.2rem;
    color: hsl(19, 32%, 80%);
    max-width: 600px;
    margin: 0 auto;
}

.faq-tabs {
    margin-bottom: 40px;
}

.nav-tabs {
    border-bottom: 2px solid hsl(19, 32%, 60%);
    justify-content: center;
}

.nav-tabs .nav-link {
    background: transparent;
    border: 2px solid transparent;
    color: hsl(19, 32%, 80%);
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: white;
    background: hsl(19, 32%, 60%);
    border-color: hsl(19, 32%, 60%);
}

.nav-tabs .nav-link.active {
    background: hsl(19, 32%, 60%);
    border-color: hsl(19, 32%, 60%);
    color: white;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: hsl(19, 32%, 60%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
    border-color: transparent;
}

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

.accordion-body {
    background: rgba(255, 255, 255, 0.05);
    color: hsl(19, 32%, 90%);
    padding: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.tab-content {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .nav-tabs .nav-link {
        padding: 12px 20px;
        margin: 5px;
        font-size: 0.9rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.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(19, 32%, 80%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(19, 32%, 60%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    color: hsl(19, 32%, 70%);
}

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

.stat-label {
    color: hsl(19, 32%, 85%);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.testimonials-scroll {
    height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.testimonials-scroll::-webkit-scrollbar {
    width: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: hsl(19, 32%, 60%);
    border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb:hover {
    background: hsl(19, 32%, 70%);
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-left: 5px solid hsl(19, 32%, 60%);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

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

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

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid hsl(19, 32%, 90%);
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: hsl(19, 32%, 35%);
    font-size: 1.1rem;
}

.author-location {
    color: hsl(19, 32%, 60%);
    font-size: 0.95rem;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-scroll {
        height: 400px;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    color: white;
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(19, 32%, 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

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

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

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

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

.story-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(19, 32%, 60%);
    margin-bottom: 1.5rem;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(19, 32%, 60%);
    border-radius: 2px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: hsl(19, 32%, 60%);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.value-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.mission-highlight {
    background: linear-gradient(135deg, hsl(19, 32%, 60%), hsl(19, 32%, 35%));
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float 20s linear infinite;
}

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

.mission-text {
    font-size: 1.4rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-card {
        padding: 25px;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .story-title {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(19, 32%, 35%) 0%, hsl(19, 32%, 20%) 100%);
    padding: 80px 0;
    color: white;
}

.services-title {
    color: hsl(19, 32%, 60%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(19, 32%, 60%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    color: hsl(19, 32%, 60%);
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(19, 32%, 60%);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.service-conditions {
    font-size: 0.9rem;
    opacity: 0.8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.service-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-content {
    flex: 1;
}

@media (max-width: 768px) {
    .service-row {
        flex-direction: column;
        text-align: center;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(19, 32%, 60%), hsl(19, 32%, 45%));
}

.footer-brand h3 {
    color: hsl(19, 32%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: #e9ecef;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-links h5 {
    color: hsl(19, 32%, 60%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(19, 32%, 60%);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: hsl(19, 32%, 60%);
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(19, 32%, 60%);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    transform: translateX(3px);
}

.contact-info p {
    margin-bottom: 15px;
    color: #e9ecef;
    display: flex;
    align-items: center;
}

.contact-info p i {
    color: hsl(19, 32%, 60%);
    margin-right: 12px;
    width: 20px;
}

.contact-info a {
    color: #e9ecef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: hsl(19, 32%, 60%);
}

.footer-bottom {
    border-top: 1px solid hsl(19, 32%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #adb5bd;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(19, 32%, 20%), hsl(19, 32%, 15%));
    color: #f8f9fa;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 3px solid hsl(19, 32%, 60%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #e9ecef;
}

.cookie-notice .btn-accept {
    background: hsl(19, 32%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-notice .btn-accept:hover {
    background: hsl(19, 32%, 50%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(19, 32%, 60%);
    color: hsl(19, 32%, 60%);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cookie-notice .btn-learn:hover {
    background: hsl(19, 32%, 60%);
    color: white;
    transform: translateY(-2px);
}

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