:root {
            --primary-color: hsl(14, 41%, 38%);
            --secondary-color: hsl(14, 41%, 23%);
            --accent-color: hsl(14, 41%, 63%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-container {
            background: white;
            border-radius: 50%;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

.about-content {
    margin-bottom: 60px;
}

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

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

.section-title {
    color: hsl(14, 41%, 23%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: hsl(14, 41%, 63%);
    border-radius: 2px;
}

.about-text {
    color: hsl(14, 41%, 38%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-box {
    background: linear-gradient(135deg, hsl(14, 41%, 63%) 0%, hsl(14, 41%, 38%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mission-title {
    color: hsl(14, 41%, 23%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.value-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(14, 41%, 63%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.value-title {
    color: hsl(14, 41%, 23%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-text {
    color: hsl(14, 41%, 38%);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .highlight-box {
        padding: 20px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(14, 41%, 95%) 0%, hsl(14, 41%, 90%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, hsl(14, 41%, 38%), hsl(14, 41%, 63%), hsl(14, 41%, 38%));
}

.section-title {
    color: hsl(14, 41%, 23%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    color: hsl(14, 41%, 38%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid hsl(14, 41%, 85%);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, hsl(14, 41%, 38%), hsl(14, 41%, 63%));
    transition: left 0.4s ease;
}

.advantage-card:hover::before {
    left: 0;
}

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

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(14, 41%, 38%), hsl(14, 41%, 63%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(14, 41%, 23%), hsl(14, 41%, 38%));
}

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

.advantage-title {
    color: hsl(14, 41%, 23%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(14, 41%, 38%);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

.row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

.statistics-section {
    background: linear-gradient(135deg, hsl(14, 41%, 38%) 0%, hsl(14, 41%, 23%) 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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

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

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

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

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

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

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

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

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

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

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

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

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.chart-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.progress-bars {
    display: grid;
    gap: 25px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.progress-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    min-width: 150px;
    font-size: 1rem;
}

.progress-bar-wrapper {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(14, 41%, 63%), hsl(14, 41%, 38%));
    border-radius: 10px;
    transition: width 1s ease-in-out;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-percentage {
    color: white;
    font-weight: 600;
    min-width: 50px;
    text-align: right;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

.stat-card {
    animation: countUp 0.6s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:nth-child(5) { animation-delay: 0.5s; }
.stat-card:nth-child(6) { animation-delay: 0.6s; }
.stat-card:nth-child(7) { animation-delay: 0.7s; }
.stat-card:nth-child(8) { animation-delay: 0.8s; }

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .progress-item {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .progress-label {
        min-width: auto;
        text-align: center;
    }
}

footer {
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(14, 41%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-section h6 {
    color: hsl(14, 41%, 63%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-link {
    color: #d1d1d1;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.footer-link:hover {
    color: hsl(14, 41%, 63%);
    border-left-color: hsl(14, 41%, 63%);
    padding-left: 20px;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e8e8e8;
}

.contact-icon {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(14, 41%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-text {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-btn {
    border: 2px solid hsl(14, 41%, 63%);
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 5px;
}

.cookie-btn:hover {
    background: transparent;
    color: hsl(14, 41%, 63%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    color: hsl(14, 41%, 63%);
    border: 2px solid hsl(14, 41%, 63%);
}

.cookie-btn-secondary:hover {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 20px 0;
    }
    
    .cookie-btn {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(14, 41%, 38%);
            --secondary-color: hsl(14, 41%, 23%);
            --accent-color: hsl(14, 41%, 63%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-container {
            background: white;
            border-radius: 50%;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.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, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

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

.privacy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 500;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 40px 0 20px 0;
    padding-left: 20px;
    border-left: 5px solid #667eea;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #764ba2;
    border-radius: 50%;
}

.privacy-content {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: justify;
    padding: 0 10px;
}

.highlight-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 20px rgba(240, 147, 251, 0.3);
}

.rights-list {
    background: #f8f9ff;
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
    border-left: 5px solid #667eea;
}

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

.rights-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e6ff;
    position: relative;
    padding-left: 30px;
}

.rights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.data-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #764ba2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.data-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

@media (max-width: 768px) {
    .privacy-container {
        padding: 30px 25px;
    }
    
    .privacy-title {
        font-size: 2.2rem;
    }
    
    .data-types {
        grid-template-columns: 1fr;
    }
}

footer {
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(14, 41%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-section h6 {
    color: hsl(14, 41%, 63%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-link {
    color: #d1d1d1;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.footer-link:hover {
    color: hsl(14, 41%, 63%);
    border-left-color: hsl(14, 41%, 63%);
    padding-left: 20px;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e8e8e8;
}

.contact-icon {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(14, 41%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-text {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-btn {
    border: 2px solid hsl(14, 41%, 63%);
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 5px;
}

.cookie-btn:hover {
    background: transparent;
    color: hsl(14, 41%, 63%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    color: hsl(14, 41%, 63%);
    border: 2px solid hsl(14, 41%, 63%);
}

.cookie-btn-secondary:hover {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 20px 0;
    }
    
    .cookie-btn {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(14, 41%, 38%);
            --secondary-color: hsl(14, 41%, 23%);
            --accent-color: hsl(14, 41%, 63%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-container {
            background: white;
            border-radius: 50%;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.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: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cookies-policy h1 {
    font-size: 2.8rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookies-policy h2 {
    font-size: 1.8rem;
    color: #2d3748;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
    position: relative;
}

.cookies-policy h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #764ba2;
}

.cookies-policy h3 {
    font-size: 1.4rem;
    color: #4a5568;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.cookies-policy p {
    margin-bottom: 18px;
    text-align: justify;
    font-size: 1.05rem;
}

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

.cookies-policy li {
    list-style: none;
    margin-bottom: 12px;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #667eea;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookies-policy li:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cookies-policy li::before {
    content: '🍪';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.cookie-type {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #90caf9;
}

.cookie-type h4 {
    color: #1565c0;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
}

.highlight-box::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: #ff9800;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 1.1rem;
}

.consent-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #dee2e6;
    font-size: 0.95rem;
}

.gdpr-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 10px 0;
}

footer {
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(14, 41%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-section h6 {
    color: hsl(14, 41%, 63%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-link {
    color: #d1d1d1;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.footer-link:hover {
    color: hsl(14, 41%, 63%);
    border-left-color: hsl(14, 41%, 63%);
    padding-left: 20px;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e8e8e8;
}

.contact-icon {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(14, 41%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-text {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-btn {
    border: 2px solid hsl(14, 41%, 63%);
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 5px;
}

.cookie-btn:hover {
    background: transparent;
    color: hsl(14, 41%, 63%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    color: hsl(14, 41%, 63%);
    border: 2px solid hsl(14, 41%, 63%);
}

.cookie-btn-secondary:hover {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 20px 0;
    }
    
    .cookie-btn {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(14, 41%, 38%);
            --secondary-color: hsl(14, 41%, 23%);
            --accent-color: hsl(14, 41%, 63%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-container {
            background: white;
            border-radius: 50%;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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 ease-in-out infinite;
}

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

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

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

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 1.1rem;
}

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

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

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: hsl(14, 41%, 63%);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    color: white;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(14, 41%, 63%), hsl(14, 41%, 38%));
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    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.4), transparent);
    transition: left 0.5s;
}

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, hsl(14, 41%, 68%), hsl(14, 41%, 43%));
}

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

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(14, 41%, 63%);
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.consultation-process {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid hsl(14, 41%, 63%);
}

.step-number {
    background: hsl(14, 41%, 63%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.step-content p {
    margin: 0;
    opacity: 0.8;
    line-height: 1.6;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.working-hours h4 {
    color: hsl(14, 41%, 63%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hours-text {
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

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

.about-content {
    margin-bottom: 60px;
}

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

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

.section-title {
    color: hsl(14, 41%, 23%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: hsl(14, 41%, 63%);
    border-radius: 2px;
}

.about-text {
    color: hsl(14, 41%, 38%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-box {
    background: linear-gradient(135deg, hsl(14, 41%, 63%) 0%, hsl(14, 41%, 38%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mission-title {
    color: hsl(14, 41%, 23%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.value-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(14, 41%, 63%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.value-title {
    color: hsl(14, 41%, 23%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-text {
    color: hsl(14, 41%, 38%);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .highlight-box {
        padding: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(14, 41%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-section h6 {
    color: hsl(14, 41%, 63%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-link {
    color: #d1d1d1;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.footer-link:hover {
    color: hsl(14, 41%, 63%);
    border-left-color: hsl(14, 41%, 63%);
    padding-left: 20px;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e8e8e8;
}

.contact-icon {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(14, 41%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-text {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-btn {
    border: 2px solid hsl(14, 41%, 63%);
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 5px;
}

.cookie-btn:hover {
    background: transparent;
    color: hsl(14, 41%, 63%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    color: hsl(14, 41%, 63%);
    border: 2px solid hsl(14, 41%, 63%);
}

.cookie-btn-secondary:hover {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 20px 0;
    }
    
    .cookie-btn {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(14, 41%, 38%);
            --secondary-color: hsl(14, 41%, 23%);
            --accent-color: hsl(14, 41%, 63%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-container {
            background: white;
            border-radius: 50%;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.services-section {
    background: linear-gradient(135deg, hsl(14, 41%, 38%) 0%, hsl(14, 41%, 23%) 100%);
    padding: 80px 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

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

.section-subtitle {
    color: hsl(14, 41%, 83%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::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 ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(14, 41%, 63%);
}

.service-icon {
    font-size: 3rem;
    color: hsl(14, 41%, 38%);
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    color: hsl(14, 41%, 23%);
    transform: scale(1.1);
}

.service-content h4 {
    color: hsl(14, 41%, 23%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-price {
    color: hsl(14, 41%, 38%);
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features li {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(14, 41%, 38%);
    font-weight: bold;
}

@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(14, 41%, 38%) 0%, hsl(14, 41%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 10h20M10 0v20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    opacity: 0.3;
}

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

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-subtitle {
    color: hsl(14, 41%, 83%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: hsl(14, 41%, 23%);
    transition: all 0.3s ease;
}

.form-control:focus {
    background: white;
    border-color: hsl(14, 41%, 63%);
    box-shadow: 0 0 0 0.2rem rgba(186, 120, 88, 0.25);
    outline: none;
}

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

.subscribe-btn {
    background: linear-gradient(45deg, hsl(14, 41%, 63%) 0%, hsl(14, 60%, 70%) 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(14, 60%, 70%) 0%, hsl(14, 70%, 75%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 120, 88, 0.4);
}

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

.benefits-list {
    margin-top: 2rem;
    text-align: center;
}

.benefit-item {
    color: hsl(14, 41%, 83%);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(14, 41%, 63%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .subscribe-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

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

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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>') repeat;
    animation: float 20s linear infinite;
}

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

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

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

.section-subtitle {
    color: hsl(14, 41%, 63%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: hsl(14, 41%, 63%);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(14, 41%, 63%);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(14, 41%, 23%);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.client-info {
    border-top: 2px solid hsl(14, 41%, 63%);
    padding-top: 1rem;
}

.client-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: hsl(14, 41%, 38%);
    margin-bottom: 0.3rem;
}

.client-location {
    color: hsl(14, 41%, 63%);
    font-size: 0.95rem;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
}

footer {
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(14, 41%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-section h6 {
    color: hsl(14, 41%, 63%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-link {
    color: #d1d1d1;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.footer-link:hover {
    color: hsl(14, 41%, 63%);
    border-left-color: hsl(14, 41%, 63%);
    padding-left: 20px;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e8e8e8;
}

.contact-icon {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(14, 41%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-text {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-btn {
    border: 2px solid hsl(14, 41%, 63%);
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 5px;
}

.cookie-btn:hover {
    background: transparent;
    color: hsl(14, 41%, 63%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    color: hsl(14, 41%, 63%);
    border: 2px solid hsl(14, 41%, 63%);
}

.cookie-btn-secondary:hover {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 20px 0;
    }
    
    .cookie-btn {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(14, 41%, 38%);
            --secondary-color: hsl(14, 41%, 23%);
            --accent-color: hsl(14, 41%, 63%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-container {
            background: white;
            border-radius: 50%;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

.terms-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #4a90e2;
}

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

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

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

.section-title {
    font-size: 1.4em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: "▶";
    color: #4a90e2;
    margin-right: 10px;
    font-size: 0.8em;
}

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

.highlight-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #ff6b6b;
}

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

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

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

.important-notice {
    background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 100%);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
    font-weight: 500;
    color: #2c3e50;
}

footer {
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(14, 41%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-section h6 {
    color: hsl(14, 41%, 63%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-link {
    color: #d1d1d1;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.footer-link:hover {
    color: hsl(14, 41%, 63%);
    border-left-color: hsl(14, 41%, 63%);
    padding-left: 20px;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e8e8e8;
}

.contact-icon {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(14, 41%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-text {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-btn {
    border: 2px solid hsl(14, 41%, 63%);
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 5px;
}

.cookie-btn:hover {
    background: transparent;
    color: hsl(14, 41%, 63%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    color: hsl(14, 41%, 63%);
    border: 2px solid hsl(14, 41%, 63%);
}

.cookie-btn-secondary:hover {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 20px 0;
    }
    
    .cookie-btn {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(14, 41%, 38%);
            --secondary-color: hsl(14, 41%, 23%);
            --accent-color: hsl(14, 41%, 63%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-container {
            background: white;
            border-radius: 50%;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.faq-section {
    background: linear-gradient(135deg, hsl(14, 41%, 38%) 0%, hsl(14, 41%, 23%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.faq-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.faq-subtitle {
    color: hsl(14, 41%, 63%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.faq-accordion {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(14, 41%, 23%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: linear-gradient(90deg, hsl(14, 41%, 63%), hsl(14, 41%, 58%));
    color: white;
    transform: translateX(5px);
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: hsl(14, 41%, 38%);
}

.faq-question:hover::after {
    color: white;
}

.faq-question.active::after {
    transform: rotate(45deg);
    color: hsl(14, 41%, 38%);
}

.faq-question.active:hover::after {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(255, 255, 255, 0.8);
}

.faq-answer.active {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    color: hsl(14, 41%, 23%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: hsl(14, 41%, 38%);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
}

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

.about-content {
    margin-bottom: 60px;
}

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

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

.section-title {
    color: hsl(14, 41%, 23%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: hsl(14, 41%, 63%);
    border-radius: 2px;
}

.about-text {
    color: hsl(14, 41%, 38%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-box {
    background: linear-gradient(135deg, hsl(14, 41%, 63%) 0%, hsl(14, 41%, 38%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mission-title {
    color: hsl(14, 41%, 23%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.value-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(14, 41%, 63%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.value-title {
    color: hsl(14, 41%, 23%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-text {
    color: hsl(14, 41%, 38%);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .highlight-box {
        padding: 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(14, 41%, 38%) 0%, hsl(14, 41%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 10h20M10 0v20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    opacity: 0.3;
}

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

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-subtitle {
    color: hsl(14, 41%, 83%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: hsl(14, 41%, 23%);
    transition: all 0.3s ease;
}

.form-control:focus {
    background: white;
    border-color: hsl(14, 41%, 63%);
    box-shadow: 0 0 0 0.2rem rgba(186, 120, 88, 0.25);
    outline: none;
}

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

.subscribe-btn {
    background: linear-gradient(45deg, hsl(14, 41%, 63%) 0%, hsl(14, 60%, 70%) 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(14, 60%, 70%) 0%, hsl(14, 70%, 75%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 120, 88, 0.4);
}

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

.benefits-list {
    margin-top: 2rem;
    text-align: center;
}

.benefit-item {
    color: hsl(14, 41%, 83%);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(14, 41%, 63%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .subscribe-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(14, 41%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-section h6 {
    color: hsl(14, 41%, 63%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-link {
    color: #d1d1d1;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.footer-link:hover {
    color: hsl(14, 41%, 63%);
    border-left-color: hsl(14, 41%, 63%);
    padding-left: 20px;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e8e8e8;
}

.contact-icon {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(14, 41%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-text {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-btn {
    border: 2px solid hsl(14, 41%, 63%);
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 5px;
}

.cookie-btn:hover {
    background: transparent;
    color: hsl(14, 41%, 63%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    color: hsl(14, 41%, 63%);
    border: 2px solid hsl(14, 41%, 63%);
}

.cookie-btn-secondary:hover {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 20px 0;
    }
    
    .cookie-btn {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(14, 41%, 38%);
            --secondary-color: hsl(14, 41%, 23%);
            --accent-color: hsl(14, 41%, 63%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-container {
            background: white;
            border-radius: 50%;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.hero-section {
    background: linear-gradient(135deg, hsl(14, 41%, 38%) 0%, hsl(14, 41%, 23%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    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%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid hsl(14, 41%, 63%);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(14, 41%, 63%);
    margin-bottom: 30px;
    font-weight: 300;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-features {
    text-align: left;
    margin: 40px 0;
    animation: slideInUp 1s ease-out 0.6s both;
}

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

.hero-features li {
    padding: 12px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.hero-features li i {
    color: hsl(14, 41%, 63%);
    margin-right: 15px;
    font-size: 1.3rem;
}

.hero-buttons {
    margin-top: 50px;
    animation: slideInUp 1s ease-out 0.8s both;
}

.btn-primary-custom {
    background: hsl(14, 41%, 63%);
    border: none;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white;
}

.btn-primary-custom:hover {
    background: hsl(14, 41%, 53%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(14, 41%, 63%);
    color: hsl(14, 41%, 63%);
    padding: 13px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: hsl(14, 41%, 63%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 25px;
        font-size: 1rem;
        display: block;
        margin: 15px auto;
        max-width: 250px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(14, 41%, 95%) 0%, hsl(14, 41%, 90%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, hsl(14, 41%, 38%), hsl(14, 41%, 63%), hsl(14, 41%, 38%));
}

.section-title {
    color: hsl(14, 41%, 23%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    color: hsl(14, 41%, 38%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid hsl(14, 41%, 85%);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, hsl(14, 41%, 38%), hsl(14, 41%, 63%));
    transition: left 0.4s ease;
}

.advantage-card:hover::before {
    left: 0;
}

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

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(14, 41%, 38%), hsl(14, 41%, 63%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(14, 41%, 23%), hsl(14, 41%, 38%));
}

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

.advantage-title {
    color: hsl(14, 41%, 23%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(14, 41%, 38%);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

.row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

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

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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>') repeat;
    animation: float 20s linear infinite;
}

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

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

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

.section-subtitle {
    color: hsl(14, 41%, 63%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: hsl(14, 41%, 63%);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(14, 41%, 63%);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(14, 41%, 23%);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.client-info {
    border-top: 2px solid hsl(14, 41%, 63%);
    padding-top: 1rem;
}

.client-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: hsl(14, 41%, 38%);
    margin-bottom: 0.3rem;
}

.client-location {
    color: hsl(14, 41%, 63%);
    font-size: 0.95rem;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(14, 41%, 38%) 0%, hsl(14, 41%, 23%) 100%);
    padding: 80px 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

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

.section-subtitle {
    color: hsl(14, 41%, 83%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::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 ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(14, 41%, 63%);
}

.service-icon {
    font-size: 3rem;
    color: hsl(14, 41%, 38%);
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    color: hsl(14, 41%, 23%);
    transform: scale(1.1);
}

.service-content h4 {
    color: hsl(14, 41%, 23%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-price {
    color: hsl(14, 41%, 38%);
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features li {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(14, 41%, 38%);
    font-weight: bold;
}

@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

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

.about-content {
    margin-bottom: 60px;
}

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

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

.section-title {
    color: hsl(14, 41%, 23%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: hsl(14, 41%, 63%);
    border-radius: 2px;
}

.about-text {
    color: hsl(14, 41%, 38%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-box {
    background: linear-gradient(135deg, hsl(14, 41%, 63%) 0%, hsl(14, 41%, 38%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mission-title {
    color: hsl(14, 41%, 23%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.value-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(14, 41%, 63%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.value-title {
    color: hsl(14, 41%, 23%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-text {
    color: hsl(14, 41%, 38%);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .highlight-box {
        padding: 20px;
    }
}

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

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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 ease-in-out infinite;
}

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

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

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

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 1.1rem;
}

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

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

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: hsl(14, 41%, 63%);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    color: white;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(14, 41%, 63%), hsl(14, 41%, 38%));
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    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.4), transparent);
    transition: left 0.5s;
}

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, hsl(14, 41%, 68%), hsl(14, 41%, 43%));
}

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

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(14, 41%, 63%);
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.consultation-process {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid hsl(14, 41%, 63%);
}

.step-number {
    background: hsl(14, 41%, 63%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.step-content p {
    margin: 0;
    opacity: 0.8;
    line-height: 1.6;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.working-hours h4 {
    color: hsl(14, 41%, 63%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hours-text {
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(14, 41%, 38%) 0%, hsl(14, 41%, 23%) 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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

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

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

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

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

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

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

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

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

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

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

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

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.chart-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.progress-bars {
    display: grid;
    gap: 25px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.progress-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    min-width: 150px;
    font-size: 1rem;
}

.progress-bar-wrapper {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(14, 41%, 63%), hsl(14, 41%, 38%));
    border-radius: 10px;
    transition: width 1s ease-in-out;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-percentage {
    color: white;
    font-weight: 600;
    min-width: 50px;
    text-align: right;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

.stat-card {
    animation: countUp 0.6s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:nth-child(5) { animation-delay: 0.5s; }
.stat-card:nth-child(6) { animation-delay: 0.6s; }
.stat-card:nth-child(7) { animation-delay: 0.7s; }
.stat-card:nth-child(8) { animation-delay: 0.8s; }

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .progress-item {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .progress-label {
        min-width: auto;
        text-align: center;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(14, 41%, 38%) 0%, hsl(14, 41%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 10h20M10 0v20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    opacity: 0.3;
}

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

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-subtitle {
    color: hsl(14, 41%, 83%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: hsl(14, 41%, 23%);
    transition: all 0.3s ease;
}

.form-control:focus {
    background: white;
    border-color: hsl(14, 41%, 63%);
    box-shadow: 0 0 0 0.2rem rgba(186, 120, 88, 0.25);
    outline: none;
}

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

.subscribe-btn {
    background: linear-gradient(45deg, hsl(14, 41%, 63%) 0%, hsl(14, 60%, 70%) 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(14, 60%, 70%) 0%, hsl(14, 70%, 75%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 120, 88, 0.4);
}

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

.benefits-list {
    margin-top: 2rem;
    text-align: center;
}

.benefit-item {
    color: hsl(14, 41%, 83%);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(14, 41%, 63%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .subscribe-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(14, 41%, 38%) 0%, hsl(14, 41%, 23%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.faq-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.faq-subtitle {
    color: hsl(14, 41%, 63%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.faq-accordion {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(14, 41%, 23%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: linear-gradient(90deg, hsl(14, 41%, 63%), hsl(14, 41%, 58%));
    color: white;
    transform: translateX(5px);
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: hsl(14, 41%, 38%);
}

.faq-question:hover::after {
    color: white;
}

.faq-question.active::after {
    transform: rotate(45deg);
    color: hsl(14, 41%, 38%);
}

.faq-question.active:hover::after {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(255, 255, 255, 0.8);
}

.faq-answer.active {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    color: hsl(14, 41%, 23%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: hsl(14, 41%, 38%);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(14, 41%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-section h6 {
    color: hsl(14, 41%, 63%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-link {
    color: #d1d1d1;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.footer-link:hover {
    color: hsl(14, 41%, 63%);
    border-left-color: hsl(14, 41%, 63%);
    padding-left: 20px;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e8e8e8;
}

.contact-icon {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(14, 41%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(14, 41%, 23%) 0%, hsl(14, 41%, 38%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-text {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-btn {
    border: 2px solid hsl(14, 41%, 63%);
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 5px;
}

.cookie-btn:hover {
    background: transparent;
    color: hsl(14, 41%, 63%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    color: hsl(14, 41%, 63%);
    border: 2px solid hsl(14, 41%, 63%);
}

.cookie-btn-secondary:hover {
    background: hsl(14, 41%, 63%);
    color: hsl(14, 41%, 23%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 20px 0;
    }
    
    .cookie-btn {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}