:root {
            --primary-color: hsl(212, 65%, 49%);
            --secondary-color: hsl(212, 65%, 34%);
            --accent-color: hsl(212, 65%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                margin: 5px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: hsl(212, 65%, 49%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: hsl(212, 65%, 49%);
    border: 4px solid white;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    background-color: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid hsl(212, 65%, 49%);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 5px solid hsl(212, 65%, 49%);
}

.timeline-year {
    color: hsl(212, 65%, 49%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-content h3 {
    color: hsl(212, 65%, 34%);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.mission-section {
    background: white;
    padding: 80px 0;
    margin: 80px 0;
}

.mission-card {
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.mission-card h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

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

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

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid hsl(212, 65%, 74%);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: hsl(212, 65%, 74%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.value-item h4 {
    color: hsl(212, 65%, 34%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.story-section {
    background: url('images/about2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.story-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        border-right: none;
        border-left: 5px solid hsl(212, 65%, 49%);
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content h2 {
        font-size: 2.2rem;
    }
}

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

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

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

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

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

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: hsl(212, 65%, 74%);
    background: white;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(212, 65%, 49%), hsl(212, 65%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(212, 65%, 34%), hsl(212, 65%, 49%));
}

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

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

.advantage-description {
    color: #666;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.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: hsl(212, 65%, 74%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

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

.stat-card:hover {
    transform: translateY(-10px);
    border-color: hsl(212, 65%, 74%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(212, 65%, 49%), hsl(212, 65%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: hsl(212, 65%, 34%);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.5;
}

.featured-stat {
    grid-column: span 2;
    background: linear-gradient(135deg, hsl(212, 65%, 74%) 0%, hsl(212, 65%, 49%) 100%);
    color: white;
}

.featured-stat .stat-number {
    color: white;
    font-size: 4rem;
}

.featured-stat .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.featured-stat .stat-description {
    color: rgba(255, 255, 255, 0.8);
}

.featured-stat .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-stat {
        grid-column: span 1;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .featured-stat .stat-number {
        font-size: 3rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(212, 65%, 34%) 0%, hsl(212, 65%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(212, 65%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(212, 65%, 74%);
    transform: translateX(3px);
  }
  
  footer .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(212, 65%, 74%);
    border: none;
    color: hsl(212, 65%, 34%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(212, 65%, 74%);
    color: hsl(212, 65%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(212, 65%, 74%);
    color: hsl(212, 65%, 34%);
  }

:root {
            --primary-color: hsl(212, 65%, 49%);
            --secondary-color: hsl(212, 65%, 34%);
            --accent-color: hsl(212, 65%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                margin: 5px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.3);
}

.privacy-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.privacy-header p {
    font-size: 1.1em;
    opacity: 0.9;
    margin: 0;
}

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

.privacy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.privacy-section h2 {
    color: #2c5530;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.privacy-section h2::before {
    content: "🌸";
    margin-right: 10px;
    font-size: 1.2em;
}

.privacy-section h3 {
    color: #4a7c59;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

.privacy-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-section ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
    position: relative;
}

.privacy-section li::marker {
    color: #4a7c59;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 1px solid #4a7c59;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
}

.highlight-box::before {
    content: "ℹ️";
    position: absolute;
    top: -10px;
    left: 20px;
    background: white;
    padding: 0 10px;
    font-size: 1.2em;
}

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

@media (max-width: 768px) {
    .privacy-policy {
        padding: 20px 15px;
    }
    
    .privacy-header h1 {
        font-size: 2em;
    }
    
    .privacy-section {
        padding: 25px 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.5em;
    }
}

footer {
    background: linear-gradient(135deg, hsl(212, 65%, 34%) 0%, hsl(212, 65%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(212, 65%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(212, 65%, 74%);
    transform: translateX(3px);
  }
  
  footer .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(212, 65%, 74%);
    border: none;
    color: hsl(212, 65%, 34%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(212, 65%, 74%);
    color: hsl(212, 65%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(212, 65%, 74%);
    color: hsl(212, 65%, 34%);
  }

:root {
            --primary-color: hsl(212, 65%, 49%);
            --secondary-color: hsl(212, 65%, 34%);
            --accent-color: hsl(212, 65%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                margin: 5px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

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

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

.policy-header h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    margin: 15px auto;
    border-radius: 2px;
}

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

.policy-section {
    margin-bottom: 35px;
    padding: 25px;
    border-left: 4px solid #3498db;
    background: #f8f9fa;
    border-radius: 0 10px 10px 0;
}

.policy-section h2 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.policy-section h2::before {
    content: '🍪';
    margin-right: 10px;
    font-size: 1.2em;
}

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

.cookie-type {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.cookie-type:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.cookie-type h3 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.consent-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
}

.consent-notice h3 {
    margin-bottom: 15px;
    font-size: 1.4em;
}

.highlight-box {
    background: linear-gradient(135deg, #ffeaa7, #fab1a0);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 5px solid #e17055;
}

ul {
    padding-left: 20px;
}

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

li::marker {
    content: '🌸';
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 10px;
}

footer {
    background: linear-gradient(135deg, hsl(212, 65%, 34%) 0%, hsl(212, 65%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(212, 65%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(212, 65%, 74%);
    transform: translateX(3px);
  }
  
  footer .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(212, 65%, 74%);
    border: none;
    color: hsl(212, 65%, 34%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(212, 65%, 74%);
    color: hsl(212, 65%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(212, 65%, 74%);
    color: hsl(212, 65%, 34%);
  }

:root {
            --primary-color: hsl(212, 65%, 49%);
            --secondary-color: hsl(212, 65%, 34%);
            --accent-color: hsl(212, 65%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                margin: 5px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

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

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

.contact-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: hsl(212, 65%, 74%);
}

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

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.working-hours h4 {
    color: hsl(212, 65%, 74%);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.working-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-hours li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.working-hours li:last-child {
    border-bottom: none;
}

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

.contact-form h3 {
    color: hsl(212, 65%, 34%);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: hsl(212, 65%, 34%);
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid hsl(212, 65%, 74%);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: hsl(212, 65%, 34%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(212, 65%, 49%);
    background: white;
    box-shadow: 0 0 0 3px rgba(66, 139, 202, 0.1);
}

.form-control::placeholder {
    color: #6c757d;
}

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

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 139, 202, 0.3);
    background: linear-gradient(135deg, hsl(212, 65%, 54%) 0%, hsl(212, 65%, 39%) 100%);
}

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

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
}

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

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: hsl(212, 65%, 49%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: hsl(212, 65%, 49%);
    border: 4px solid white;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    background-color: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid hsl(212, 65%, 49%);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 5px solid hsl(212, 65%, 49%);
}

.timeline-year {
    color: hsl(212, 65%, 49%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-content h3 {
    color: hsl(212, 65%, 34%);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.mission-section {
    background: white;
    padding: 80px 0;
    margin: 80px 0;
}

.mission-card {
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.mission-card h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

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

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

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid hsl(212, 65%, 74%);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: hsl(212, 65%, 74%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.value-item h4 {
    color: hsl(212, 65%, 34%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.story-section {
    background: url('images/about2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.story-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        border-right: none;
        border-left: 5px solid hsl(212, 65%, 49%);
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content h2 {
        font-size: 2.2rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(212, 65%, 34%) 0%, hsl(212, 65%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(212, 65%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(212, 65%, 74%);
    transform: translateX(3px);
  }
  
  footer .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(212, 65%, 74%);
    border: none;
    color: hsl(212, 65%, 34%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(212, 65%, 74%);
    color: hsl(212, 65%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(212, 65%, 74%);
    color: hsl(212, 65%, 34%);
  }

:root {
            --primary-color: hsl(212, 65%, 49%);
            --secondary-color: hsl(212, 65%, 34%);
            --accent-color: hsl(212, 65%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                margin: 5px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

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

.services-header h2 {
    color: hsl(212, 65%, 34%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-header p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: hsl(212, 65%, 34%);
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.nav-tabs .nav-link.active {
    background: hsl(212, 65%, 49%);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: hsl(212, 65%, 74%);
}

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

.service-card h4 {
    color: hsl(212, 65%, 34%);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-conditions {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid hsl(212, 65%, 74%);
}

.service-conditions h6 {
    color: hsl(212, 65%, 34%);
    font-weight: 600;
    margin-bottom: 10px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

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

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

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

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

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

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

.newsletter-title {
    color: hsl(212, 65%, 34%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(45deg, hsl(212, 65%, 34%), hsl(212, 65%, 49%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-subtitle {
    color: hsl(212, 65%, 34%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.benefits-list li {
    color: hsl(212, 65%, 34%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

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

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

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

.newsletter-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(212, 65%, 74%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: hsl(212, 65%, 49%);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    background: white;
}

.newsletter-input::placeholder {
    color: hsl(212, 65%, 60%);
    font-style: italic;
}

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

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

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
    background: linear-gradient(45deg, hsl(212, 65%, 54%), hsl(212, 65%, 39%));
}

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

.privacy-note {
    font-size: 0.85rem;
    color: hsl(212, 65%, 50%);
    text-align: center;
    margin-top: 20px;
    opacity: 0.7;
}

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

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

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

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

.section-subtitle {
    color: hsl(212, 65%, 74%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border-left: 5px solid hsl(212, 65%, 74%);
}

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

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

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    padding-top: 20px;
    font-style: italic;
}

.client-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.client-name {
    font-weight: 600;
    color: hsl(212, 65%, 34%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-location {
    color: #666;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
        padding: 25px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(212, 65%, 34%) 0%, hsl(212, 65%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(212, 65%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(212, 65%, 74%);
    transform: translateX(3px);
  }
  
  footer .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(212, 65%, 74%);
    border: none;
    color: hsl(212, 65%, 34%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(212, 65%, 74%);
    color: hsl(212, 65%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(212, 65%, 74%);
    color: hsl(212, 65%, 34%);
  }

:root {
            --primary-color: hsl(212, 65%, 49%);
            --secondary-color: hsl(212, 65%, 34%);
            --accent-color: hsl(212, 65%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                margin: 5px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

.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-title {
    text-align: center;
    font-size: 2.5em;
    color: #d63384;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #d63384;
    padding-bottom: 15px;
}

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

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

.section-title {
    font-size: 1.6em;
    color: #495057;
    margin-bottom: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: "🌸";
    margin-right: 10px;
    font-size: 1.2em;
}

.terms-text {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 15px;
    color: #495057;
}

.highlight-box {
    background: linear-gradient(45deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    font-weight: 500;
}

.important-notice {
    background: linear-gradient(45deg, #f8d7da, #f5c6cb);
    border: 2px solid #dc3545;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    font-weight: bold;
    text-align: center;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 30px;
    padding: 15px;
    background: rgba(108, 117, 125, 0.1);
    border-radius: 8px;
}

footer {
    background: linear-gradient(135deg, hsl(212, 65%, 34%) 0%, hsl(212, 65%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(212, 65%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(212, 65%, 74%);
    transform: translateX(3px);
  }
  
  footer .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(212, 65%, 74%);
    border: none;
    color: hsl(212, 65%, 34%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(212, 65%, 74%);
    color: hsl(212, 65%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(212, 65%, 74%);
    color: hsl(212, 65%, 34%);
  }

:root {
            --primary-color: hsl(212, 65%, 49%);
            --secondary-color: hsl(212, 65%, 34%);
            --accent-color: hsl(212, 65%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                margin: 5px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

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

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

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

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

.faq-subtitle {
    color: hsl(212, 65%, 74%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(212, 65%, 34%);
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: hsl(212, 65%, 74%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(33, 37, 41, 0.25);
}

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

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

.accordion-body {
    padding: 30px;
    background: white;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.accordion-body p {
    margin-bottom: 15px;
}

.accordion-body strong {
    color: hsl(212, 65%, 34%);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .accordion-button {
        padding: 20px;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 20px;
    }
}

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

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: hsl(212, 65%, 49%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: hsl(212, 65%, 49%);
    border: 4px solid white;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    background-color: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid hsl(212, 65%, 49%);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 5px solid hsl(212, 65%, 49%);
}

.timeline-year {
    color: hsl(212, 65%, 49%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-content h3 {
    color: hsl(212, 65%, 34%);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.mission-section {
    background: white;
    padding: 80px 0;
    margin: 80px 0;
}

.mission-card {
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.mission-card h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

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

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

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid hsl(212, 65%, 74%);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: hsl(212, 65%, 74%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.value-item h4 {
    color: hsl(212, 65%, 34%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.story-section {
    background: url('images/about2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.story-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        border-right: none;
        border-left: 5px solid hsl(212, 65%, 49%);
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content h2 {
        font-size: 2.2rem;
    }
}

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

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

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

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

.newsletter-title {
    color: hsl(212, 65%, 34%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(45deg, hsl(212, 65%, 34%), hsl(212, 65%, 49%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-subtitle {
    color: hsl(212, 65%, 34%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.benefits-list li {
    color: hsl(212, 65%, 34%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

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

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

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

.newsletter-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(212, 65%, 74%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: hsl(212, 65%, 49%);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    background: white;
}

.newsletter-input::placeholder {
    color: hsl(212, 65%, 60%);
    font-style: italic;
}

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

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

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
    background: linear-gradient(45deg, hsl(212, 65%, 54%), hsl(212, 65%, 39%));
}

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

.privacy-note {
    font-size: 0.85rem;
    color: hsl(212, 65%, 50%);
    text-align: center;
    margin-top: 20px;
    opacity: 0.7;
}

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

footer {
    background: linear-gradient(135deg, hsl(212, 65%, 34%) 0%, hsl(212, 65%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(212, 65%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(212, 65%, 74%);
    transform: translateX(3px);
  }
  
  footer .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(212, 65%, 74%);
    border: none;
    color: hsl(212, 65%, 34%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(212, 65%, 74%);
    color: hsl(212, 65%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(212, 65%, 74%);
    color: hsl(212, 65%, 34%);
  }

:root {
            --primary-color: hsl(212, 65%, 49%);
            --secondary-color: hsl(212, 65%, 34%);
            --accent-color: hsl(212, 65%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                margin: 5px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: 
        "title image"
        "description image"
        "cta image";
    gap: 2rem;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
}

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

.hero-subtitle {
    color: hsl(212, 65%, 74%);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-image {
    grid-area: image;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-description {
    grid-area: description;
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.hero-features li {
    color: hsl(212, 65%, 74%);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.hero-features li i {
    color: white;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.hero-cta {
    grid-area: cta;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: white;
    color: hsl(212, 65%, 49%);
    border: none;
    padding: 1rem 2rem;
    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: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
    background: hsl(212, 65%, 74%);
    color: hsl(212, 65%, 34%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    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: 0.5rem;
}

.btn-secondary-custom:hover {
    background: white;
    color: hsl(212, 65%, 49%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "title"
            "image"
            "description"
            "cta";
        text-align: center;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image img {
        height: 300px;
        transform: rotate(0deg);
    }
    
    .hero-cta {
        justify-content: center;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.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: hsl(212, 65%, 74%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

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

.stat-card:hover {
    transform: translateY(-10px);
    border-color: hsl(212, 65%, 74%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(212, 65%, 49%), hsl(212, 65%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: hsl(212, 65%, 34%);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.5;
}

.featured-stat {
    grid-column: span 2;
    background: linear-gradient(135deg, hsl(212, 65%, 74%) 0%, hsl(212, 65%, 49%) 100%);
    color: white;
}

.featured-stat .stat-number {
    color: white;
    font-size: 4rem;
}

.featured-stat .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.featured-stat .stat-description {
    color: rgba(255, 255, 255, 0.8);
}

.featured-stat .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-stat {
        grid-column: span 1;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .featured-stat .stat-number {
        font-size: 3rem;
    }
}

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

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

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

.section-subtitle {
    color: hsl(212, 65%, 74%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border-left: 5px solid hsl(212, 65%, 74%);
}

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

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

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    padding-top: 20px;
    font-style: italic;
}

.client-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.client-name {
    font-weight: 600;
    color: hsl(212, 65%, 34%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-location {
    color: #666;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
        padding: 25px;
    }
}

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

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

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

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

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

.faq-subtitle {
    color: hsl(212, 65%, 74%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(212, 65%, 34%);
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: hsl(212, 65%, 74%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(33, 37, 41, 0.25);
}

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

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

.accordion-body {
    padding: 30px;
    background: white;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.accordion-body p {
    margin-bottom: 15px;
}

.accordion-body strong {
    color: hsl(212, 65%, 34%);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .accordion-button {
        padding: 20px;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 20px;
    }
}

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

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

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

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

.newsletter-title {
    color: hsl(212, 65%, 34%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(45deg, hsl(212, 65%, 34%), hsl(212, 65%, 49%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-subtitle {
    color: hsl(212, 65%, 34%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.benefits-list li {
    color: hsl(212, 65%, 34%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

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

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

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

.newsletter-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(212, 65%, 74%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: hsl(212, 65%, 49%);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    background: white;
}

.newsletter-input::placeholder {
    color: hsl(212, 65%, 60%);
    font-style: italic;
}

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

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

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
    background: linear-gradient(45deg, hsl(212, 65%, 54%), hsl(212, 65%, 39%));
}

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

.privacy-note {
    font-size: 0.85rem;
    color: hsl(212, 65%, 50%);
    text-align: center;
    margin-top: 20px;
    opacity: 0.7;
}

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

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

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

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

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

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

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: hsl(212, 65%, 74%);
    background: white;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(212, 65%, 49%), hsl(212, 65%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(212, 65%, 34%), hsl(212, 65%, 49%));
}

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

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

.advantage-description {
    color: #666;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

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

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

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: hsl(212, 65%, 49%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: hsl(212, 65%, 49%);
    border: 4px solid white;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    background-color: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid hsl(212, 65%, 49%);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 5px solid hsl(212, 65%, 49%);
}

.timeline-year {
    color: hsl(212, 65%, 49%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-content h3 {
    color: hsl(212, 65%, 34%);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.mission-section {
    background: white;
    padding: 80px 0;
    margin: 80px 0;
}

.mission-card {
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.mission-card h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

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

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

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid hsl(212, 65%, 74%);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: hsl(212, 65%, 74%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.value-item h4 {
    color: hsl(212, 65%, 34%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.story-section {
    background: url('images/about2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.story-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        border-right: none;
        border-left: 5px solid hsl(212, 65%, 49%);
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content h2 {
        font-size: 2.2rem;
    }
}

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

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

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

.contact-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: hsl(212, 65%, 74%);
}

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

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.working-hours h4 {
    color: hsl(212, 65%, 74%);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.working-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-hours li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.working-hours li:last-child {
    border-bottom: none;
}

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

.contact-form h3 {
    color: hsl(212, 65%, 34%);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: hsl(212, 65%, 34%);
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid hsl(212, 65%, 74%);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: hsl(212, 65%, 34%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(212, 65%, 49%);
    background: white;
    box-shadow: 0 0 0 3px rgba(66, 139, 202, 0.1);
}

.form-control::placeholder {
    color: #6c757d;
}

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

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 139, 202, 0.3);
    background: linear-gradient(135deg, hsl(212, 65%, 54%) 0%, hsl(212, 65%, 39%) 100%);
}

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

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
}

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

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

.services-header h2 {
    color: hsl(212, 65%, 34%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-header p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: hsl(212, 65%, 34%);
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.nav-tabs .nav-link.active {
    background: hsl(212, 65%, 49%);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: hsl(212, 65%, 74%);
}

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

.service-card h4 {
    color: hsl(212, 65%, 34%);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-conditions {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid hsl(212, 65%, 74%);
}

.service-conditions h6 {
    color: hsl(212, 65%, 34%);
    font-weight: 600;
    margin-bottom: 10px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(212, 65%, 34%) 0%, hsl(212, 65%, 49%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(212, 65%, 74%);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(212, 65%, 74%);
    transform: translateX(3px);
  }
  
  footer .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(212, 65%, 49%) 0%, hsl(212, 65%, 34%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(212, 65%, 74%);
    border: none;
    color: hsl(212, 65%, 34%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(212, 65%, 74%);
    color: hsl(212, 65%, 74%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(212, 65%, 74%);
    color: hsl(212, 65%, 34%);
  }