:root {
            --primary-color: hsl(7, 44%, 31%);
            --secondary-color: hsl(7, 44%, 16%);
            --accent-color: hsl(7, 44%, 56%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }

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

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

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

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(7, 44%, 56%), hsl(7, 44%, 31%));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(7, 44%, 56%);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.6;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, hsl(7, 44%, 56%), hsl(7, 44%, 31%));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(odd) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(even) {
    animation-delay: 0.4s;
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(123, 63, 47, 0.1);
    position: relative;
    width: 45%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(123, 63, 47, 0.15);
    border-color: hsl(7, 44%, 56%);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: hsl(7, 44%, 31%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px hsl(7, 44%, 56%);
    z-index: 3;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 3.5rem;
    transform: translateX(-50%);
    background: hsl(7, 44%, 16%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(7, 44%, 31%);
    margin-bottom: 1rem;
}

.timeline-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.timeline-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

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

.mission-values {
    background: hsl(7, 44%, 31%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(7, 44%, 56%);
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

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

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mission-values {
        padding: 2rem;
    }
}

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

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

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

.advantages-subtitle {
    color: hsl(7, 44%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(7, 44%, 56%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(7, 44%, 56%), hsl(7, 44%, 31%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.advantage-title {
    color: hsl(7, 44%, 16%);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.advantage-description {
    color: hsl(7, 44%, 25%);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.stats-subtitle {
    font-size: 1.2rem;
    color: hsl(7, 44%, 80%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.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: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, hsl(7, 44%, 56%) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 0.1;
}

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

.stat-icon {
    font-size: 3rem;
    color: hsl(7, 44%, 56%);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

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

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

.stat-description {
    font-size: 0.9rem;
    color: hsl(7, 44%, 75%);
    margin-top: 10px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .stats-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }
  
  footer h5 {
    color: hsl(7, 44%, 56%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(7, 44%, 56%);
  }
  
  footer p {
    color: #e9ecef;
    line-height: 1.7;
  }
  
  footer a {
    color: #dee2e6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(7, 44%, 56%);
    padding-left: 10px;
  }
  
  footer .contact-info i {
    color: hsl(7, 44%, 56%);
    margin-right: 10px;
    width: 20px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-primary {
    background: hsl(7, 44%, 56%);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-primary:hover {
    background: hsl(7, 44%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #f8f9fa;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(7, 44%, 56%);
    color: hsl(7, 44%, 56%);
  }

:root {
            --primary-color: hsl(7, 44%, 31%);
            --secondary-color: hsl(7, 44%, 16%);
            --accent-color: hsl(7, 44%, 56%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }

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

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

.privacy-policy h2 {
    color: #34495e;
    font-size: 1.6em;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #3498db;
    background: rgba(52, 152, 219, 0.1);
    padding: 15px;
    border-radius: 8px;
}

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

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

.privacy-policy ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

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

.privacy-policy li::before {
    content: "▶";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

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

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

.data-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #3498db;
    transition: transform 0.3s ease;
}

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

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

.right-item {
    background: rgba(46, 204, 113, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #2ecc71;
}

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

footer {
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }
  
  footer h5 {
    color: hsl(7, 44%, 56%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(7, 44%, 56%);
  }
  
  footer p {
    color: #e9ecef;
    line-height: 1.7;
  }
  
  footer a {
    color: #dee2e6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(7, 44%, 56%);
    padding-left: 10px;
  }
  
  footer .contact-info i {
    color: hsl(7, 44%, 56%);
    margin-right: 10px;
    width: 20px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-primary {
    background: hsl(7, 44%, 56%);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-primary:hover {
    background: hsl(7, 44%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #f8f9fa;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(7, 44%, 56%);
    color: hsl(7, 44%, 56%);
  }

:root {
            --primary-color: hsl(7, 44%, 31%);
            --secondary-color: hsl(7, 44%, 16%);
            --accent-color: hsl(7, 44%, 56%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }

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

.cookies-policy h1 {
    color: #2c3e50;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookies-policy h2 {
    color: #34495e;
    font-size: 1.6em;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    position: relative;
}

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

.cookies-policy h3 {
    color: #2980b9;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 12px;
}

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

.cookies-policy ul {
    background: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.cookies-policy li::before {
    content: '🍪';
    position: absolute;
    left: -15px;
    top: 0;
}

.cookie-type {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cookie-type h3 {
    color: #fff;
    margin-top: 0;
}

.consent-box {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #fdcb6e;
    margin: 25px 0;
    box-shadow: 0 6px 20px rgba(253,203,110,0.3);
}

.gdpr-highlight {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,184,148,0.3);
}

.control-section {
    background: rgba(52,152,219,0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #3498db;
    margin: 20px 0;
}

footer {
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }
  
  footer h5 {
    color: hsl(7, 44%, 56%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(7, 44%, 56%);
  }
  
  footer p {
    color: #e9ecef;
    line-height: 1.7;
  }
  
  footer a {
    color: #dee2e6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(7, 44%, 56%);
    padding-left: 10px;
  }
  
  footer .contact-info i {
    color: hsl(7, 44%, 56%);
    margin-right: 10px;
    width: 20px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-primary {
    background: hsl(7, 44%, 56%);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-primary:hover {
    background: hsl(7, 44%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #f8f9fa;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(7, 44%, 56%);
    color: hsl(7, 44%, 56%);
  }

:root {
            --primary-color: hsl(7, 44%, 31%);
            --secondary-color: hsl(7, 44%, 16%);
            --accent-color: hsl(7, 44%, 56%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.contact-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: hsl(7, 44%, 31%);
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(7, 44%, 31%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(7, 44%, 56%);
    box-shadow: 0 0 0 3px rgba(165, 84, 84, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #999;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(165, 84, 84, 0.4);
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
}

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

.info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: hsl(7, 44%, 56%);
    font-weight: 600;
}

.info-item p {
    margin: 0;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.consultation-process {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.step-number {
    background: hsl(7, 44%, 56%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

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

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

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

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

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(7, 44%, 56%), hsl(7, 44%, 31%));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(7, 44%, 56%);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.6;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, hsl(7, 44%, 56%), hsl(7, 44%, 31%));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(odd) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(even) {
    animation-delay: 0.4s;
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(123, 63, 47, 0.1);
    position: relative;
    width: 45%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(123, 63, 47, 0.15);
    border-color: hsl(7, 44%, 56%);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: hsl(7, 44%, 31%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px hsl(7, 44%, 56%);
    z-index: 3;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 3.5rem;
    transform: translateX(-50%);
    background: hsl(7, 44%, 16%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(7, 44%, 31%);
    margin-bottom: 1rem;
}

.timeline-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.timeline-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

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

.mission-values {
    background: hsl(7, 44%, 31%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(7, 44%, 56%);
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

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

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mission-values {
        padding: 2rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }
  
  footer h5 {
    color: hsl(7, 44%, 56%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(7, 44%, 56%);
  }
  
  footer p {
    color: #e9ecef;
    line-height: 1.7;
  }
  
  footer a {
    color: #dee2e6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(7, 44%, 56%);
    padding-left: 10px;
  }
  
  footer .contact-info i {
    color: hsl(7, 44%, 56%);
    margin-right: 10px;
    width: 20px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-primary {
    background: hsl(7, 44%, 56%);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-primary:hover {
    background: hsl(7, 44%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #f8f9fa;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(7, 44%, 56%);
    color: hsl(7, 44%, 56%);
  }

:root {
            --primary-color: hsl(7, 44%, 31%);
            --secondary-color: hsl(7, 44%, 16%);
            --accent-color: hsl(7, 44%, 56%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: hsl(7, 44%, 56%);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

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

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

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

.service-title {
    color: hsl(7, 44%, 16%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.service-price {
    background: linear-gradient(135deg, hsl(7, 44%, 31%), hsl(7, 44%, 56%));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-top: auto;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-price:hover {
    background: linear-gradient(135deg, hsl(7, 44%, 16%), hsl(7, 44%, 31%));
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}

.conditions-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    backdrop-filter: blur(10px);
}

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

.condition-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.condition-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(7, 44%, 56%);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .conditions-section {
        padding: 30px 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.newsletter-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    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);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: hsl(7, 44%, 16%);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    background: white;
    border-color: hsl(7, 44%, 56%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(139, 69, 19, 0.1);
    outline: none;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(139, 69, 19, 0.6);
    font-weight: 500;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(7, 44%, 56%) 0%, hsl(7, 44%, 46%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(7, 44%, 61%) 0%, hsl(7, 44%, 51%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.4);
}

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

.subscribe-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    text-align: left;
}

.benefits-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 1rem;
    position: relative;
    padding-left: 30px;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 8px;
    color: hsl(7, 44%, 56%);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .newsletter-form {
        margin: 0 20px;
        padding: 30px 25px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    padding: 100px 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>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.quote-icon {
    font-size: 3rem;
    color: hsl(7, 44%, 56%);
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(7, 44%, 16%);
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

.client-info {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid hsl(7, 44%, 56%);
}

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

.client-location {
    font-size: 1rem;
    color: hsl(7, 44%, 56%);
    font-weight: 500;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }
  
  footer h5 {
    color: hsl(7, 44%, 56%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(7, 44%, 56%);
  }
  
  footer p {
    color: #e9ecef;
    line-height: 1.7;
  }
  
  footer a {
    color: #dee2e6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(7, 44%, 56%);
    padding-left: 10px;
  }
  
  footer .contact-info i {
    color: hsl(7, 44%, 56%);
    margin-right: 10px;
    width: 20px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-primary {
    background: hsl(7, 44%, 56%);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-primary:hover {
    background: hsl(7, 44%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #f8f9fa;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(7, 44%, 56%);
    color: hsl(7, 44%, 56%);
  }

:root {
            --primary-color: hsl(7, 44%, 31%);
            --secondary-color: hsl(7, 44%, 16%);
            --accent-color: hsl(7, 44%, 56%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }

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

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

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

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

.terms-section {
    margin-bottom: 35px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #3498db;
    transition: transform 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

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

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

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

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

.terms-list li:before {
    content: "▶";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.highlight-box {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    margin: 20px 0;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

footer {
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }
  
  footer h5 {
    color: hsl(7, 44%, 56%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(7, 44%, 56%);
  }
  
  footer p {
    color: #e9ecef;
    line-height: 1.7;
  }
  
  footer a {
    color: #dee2e6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(7, 44%, 56%);
    padding-left: 10px;
  }
  
  footer .contact-info i {
    color: hsl(7, 44%, 56%);
    margin-right: 10px;
    width: 20px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-primary {
    background: hsl(7, 44%, 56%);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-primary:hover {
    background: hsl(7, 44%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #f8f9fa;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(7, 44%, 56%);
    color: hsl(7, 44%, 56%);
  }

:root {
            --primary-color: hsl(7, 44%, 31%);
            --secondary-color: hsl(7, 44%, 16%);
            --accent-color: hsl(7, 44%, 56%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

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

.nav-tabs {
    border: none;
    justify-content: center;
}

.nav-tabs .nav-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

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

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

.faq-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 25px 30px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: hsl(7, 44%, 56%);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
    color: hsl(7, 44%, 56%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.show {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 1rem;
}

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

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

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

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

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(7, 44%, 56%), hsl(7, 44%, 31%));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(7, 44%, 56%);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.6;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, hsl(7, 44%, 56%), hsl(7, 44%, 31%));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(odd) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(even) {
    animation-delay: 0.4s;
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(123, 63, 47, 0.1);
    position: relative;
    width: 45%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(123, 63, 47, 0.15);
    border-color: hsl(7, 44%, 56%);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: hsl(7, 44%, 31%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px hsl(7, 44%, 56%);
    z-index: 3;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 3.5rem;
    transform: translateX(-50%);
    background: hsl(7, 44%, 16%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(7, 44%, 31%);
    margin-bottom: 1rem;
}

.timeline-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.timeline-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

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

.mission-values {
    background: hsl(7, 44%, 31%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(7, 44%, 56%);
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

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

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mission-values {
        padding: 2rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.newsletter-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    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);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: hsl(7, 44%, 16%);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    background: white;
    border-color: hsl(7, 44%, 56%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(139, 69, 19, 0.1);
    outline: none;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(139, 69, 19, 0.6);
    font-weight: 500;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(7, 44%, 56%) 0%, hsl(7, 44%, 46%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(7, 44%, 61%) 0%, hsl(7, 44%, 51%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.4);
}

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

.subscribe-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    text-align: left;
}

.benefits-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 1rem;
    position: relative;
    padding-left: 30px;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 8px;
    color: hsl(7, 44%, 56%);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .newsletter-form {
        margin: 0 20px;
        padding: 30px 25px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }
  
  footer h5 {
    color: hsl(7, 44%, 56%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(7, 44%, 56%);
  }
  
  footer p {
    color: #e9ecef;
    line-height: 1.7;
  }
  
  footer a {
    color: #dee2e6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(7, 44%, 56%);
    padding-left: 10px;
  }
  
  footer .contact-info i {
    color: hsl(7, 44%, 56%);
    margin-right: 10px;
    width: 20px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-primary {
    background: hsl(7, 44%, 56%);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-primary:hover {
    background: hsl(7, 44%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #f8f9fa;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(7, 44%, 56%);
    color: hsl(7, 44%, 56%);
  }

:root {
            --primary-color: hsl(7, 44%, 31%);
            --secondary-color: hsl(7, 44%, 16%);
            --accent-color: hsl(7, 44%, 56%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(-15deg);
    z-index: 1;
}

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

.hero-content {
    position: relative;
    margin-top: -40px;
}

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

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(7, 44%, 56%);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

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

.hero-image-wrapper {
    position: relative;
    margin-top: -60px;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    shape-outside: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
    float: right;
    margin-left: -100px;
}

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

.benefits-list li {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.5;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: hsl(7, 44%, 56%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-list li i {
    position: absolute;
    left: 0.3rem;
    top: 0.8rem;
    color: white;
    font-size: 0.8rem;
}

.cta-buttons {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: hsl(7, 44%, 56%);
    border: none;
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom:hover {
    background: hsl(7, 44%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(7, 44%, 56%);
    color: hsl(7, 44%, 56%);
    padding: 13px 33px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary-custom:hover {
    background: hsl(7, 44%, 56%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: -4s;
}

.floating-element:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
    animation-delay: -1s;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-image {
        margin-left: 0;
        float: none;
        shape-outside: none;
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

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

.nav-tabs {
    border: none;
    justify-content: center;
}

.nav-tabs .nav-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

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

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

.faq-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 25px 30px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: hsl(7, 44%, 56%);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
    color: hsl(7, 44%, 56%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.show {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 1rem;
}

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

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

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

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

.advantages-subtitle {
    color: hsl(7, 44%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(7, 44%, 56%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(7, 44%, 56%), hsl(7, 44%, 31%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.advantage-title {
    color: hsl(7, 44%, 16%);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.advantage-description {
    color: hsl(7, 44%, 25%);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    padding: 100px 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>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.quote-icon {
    font-size: 3rem;
    color: hsl(7, 44%, 56%);
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(7, 44%, 16%);
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

.client-info {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid hsl(7, 44%, 56%);
}

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

.client-location {
    font-size: 1rem;
    color: hsl(7, 44%, 56%);
    font-weight: 500;
}

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

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

.statistics-section {
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.stats-subtitle {
    font-size: 1.2rem;
    color: hsl(7, 44%, 80%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.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: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, hsl(7, 44%, 56%) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 0.1;
}

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

.stat-icon {
    font-size: 3rem;
    color: hsl(7, 44%, 56%);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

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

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

.stat-description {
    font-size: 0.9rem;
    color: hsl(7, 44%, 75%);
    margin-top: 10px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .stats-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

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

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

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

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(7, 44%, 56%), hsl(7, 44%, 31%));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(7, 44%, 56%);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.6;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, hsl(7, 44%, 56%), hsl(7, 44%, 31%));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(odd) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(even) {
    animation-delay: 0.4s;
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(123, 63, 47, 0.1);
    position: relative;
    width: 45%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(123, 63, 47, 0.15);
    border-color: hsl(7, 44%, 56%);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: hsl(7, 44%, 31%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px hsl(7, 44%, 56%);
    z-index: 3;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 3.5rem;
    transform: translateX(-50%);
    background: hsl(7, 44%, 16%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(7, 44%, 31%);
    margin-bottom: 1rem;
}

.timeline-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.timeline-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

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

.mission-values {
    background: hsl(7, 44%, 31%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(7, 44%, 56%);
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

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

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mission-values {
        padding: 2rem;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: hsl(7, 44%, 56%);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

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

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

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

.service-title {
    color: hsl(7, 44%, 16%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.service-price {
    background: linear-gradient(135deg, hsl(7, 44%, 31%), hsl(7, 44%, 56%));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-top: auto;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-price:hover {
    background: linear-gradient(135deg, hsl(7, 44%, 16%), hsl(7, 44%, 31%));
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}

.conditions-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    backdrop-filter: blur(10px);
}

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

.condition-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.condition-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(7, 44%, 56%);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .conditions-section {
        padding: 30px 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.newsletter-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    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);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: hsl(7, 44%, 16%);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    background: white;
    border-color: hsl(7, 44%, 56%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(139, 69, 19, 0.1);
    outline: none;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(139, 69, 19, 0.6);
    font-weight: 500;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(7, 44%, 56%) 0%, hsl(7, 44%, 46%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(7, 44%, 61%) 0%, hsl(7, 44%, 51%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.4);
}

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

.subscribe-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    text-align: left;
}

.benefits-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 1rem;
    position: relative;
    padding-left: 30px;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 8px;
    color: hsl(7, 44%, 56%);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .newsletter-form {
        margin: 0 20px;
        padding: 30px 25px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.contact-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: hsl(7, 44%, 31%);
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(7, 44%, 31%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(7, 44%, 56%);
    box-shadow: 0 0 0 3px rgba(165, 84, 84, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #999;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(165, 84, 84, 0.4);
    background: linear-gradient(135deg, hsl(7, 44%, 31%) 0%, hsl(7, 44%, 16%) 100%);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
}

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

.info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: hsl(7, 44%, 56%);
    font-weight: 600;
}

.info-item p {
    margin: 0;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.consultation-process {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.step-number {
    background: hsl(7, 44%, 56%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

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

footer {
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }
  
  footer h5 {
    color: hsl(7, 44%, 56%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(7, 44%, 56%);
  }
  
  footer p {
    color: #e9ecef;
    line-height: 1.7;
  }
  
  footer a {
    color: #dee2e6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(7, 44%, 56%);
    padding-left: 10px;
  }
  
  footer .contact-info i {
    color: hsl(7, 44%, 56%);
    margin-right: 10px;
    width: 20px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(7, 44%, 16%) 0%, hsl(7, 44%, 31%) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-primary {
    background: hsl(7, 44%, 56%);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-primary:hover {
    background: hsl(7, 44%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #f8f9fa;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(7, 44%, 56%);
    color: hsl(7, 44%, 56%);
  }