:root {
            --primary-color: hsl(92, 42%, 40%);
            --secondary-color: hsl(92, 42%, 25%);
            --accent-color: hsl(92, 42%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                padding: 1rem;
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                border-radius: 6px;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background: rgba(255,255,255,0.1);
                transform: translateX(10px);
            }
        }

.about-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

.story-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(92, 42%, 65%);
    margin-bottom: 20px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.timeline-container {
    position: relative;
    margin: 60px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(92, 42%, 65%), hsl(92, 42%, 40%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

.timeline-content {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: hsl(92, 42%, 65%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px hsl(92, 42%, 40%);
}

.timeline-left .timeline-content {
    margin-right: 60px;
}

.timeline-left .timeline-content::before {
    right: -50px;
}

.timeline-right .timeline-content {
    margin-left: 60px;
}

.timeline-right .timeline-content::before {
    left: -50px;
}

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

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.value-icon {
    font-size: 3rem;
    color: hsl(92, 42%, 65%);
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(92, 42%, 65%);
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 25px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        margin-left: 70px;
        margin-right: 0;
    }
    
    .timeline-left .timeline-content::before,
    .timeline-right .timeline-content::before {
        left: -50px;
        right: auto;
    }
}

.advantages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

.advantages-title {
    text-align: center;
    margin-bottom: 70px;
}

.advantages-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, white, hsl(92, 42%, 85%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantages-title p {
    font-size: 1.3rem;
    color: hsl(92, 42%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(92, 42%, 40%), hsl(92, 42%, 65%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(92, 42%, 65%);
}

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

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

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

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

.advantage-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(92, 42%, 25%);
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
}

.advantage-card p {
    color: hsl(92, 42%, 30%);
    line-height: 1.7;
    text-align: center;
    font-size: 1rem;
    flex-grow: 1;
    margin: 0;
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantages-title h2 {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
    }
    
    .advantage-icon i {
        font-size: 1.7rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

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

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

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(92, 42%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: hsl(92, 42%, 65%);
}

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

.stat-card:hover .stat-icon {
    transform: scale(1.2);
    color: white;
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(92, 42%, 85%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.highlight-card {
    background: linear-gradient(135deg, hsl(92, 42%, 65%) 0%, hsl(92, 42%, 40%) 100%);
    border: 2px solid white;
}

.highlight-card .stat-number {
    color: hsl(92, 42%, 25%);
}

.highlight-card .stat-label {
    color: hsl(92, 42%, 25%);
}

.highlight-card .stat-icon {
    color: hsl(92, 42%, 25%);
}

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

:root {
  --primary-color: hsl(92, 42%, 40%);
  --secondary-color: hsl(92, 42%, 25%);
  --accent-color: hsl(92, 42%, 65%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-brand h5 {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

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

.footer-contact a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

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

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cookie-notice .btn-learn:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-notice .btn-container {
    margin-top: 15px;
  }
  
  .cookie-notice .btn-accept,
  .cookie-notice .btn-learn {
    width: 100%;
    margin-bottom: 10px;
  }
}

:root {
            --primary-color: hsl(92, 42%, 40%);
            --secondary-color: hsl(92, 42%, 25%);
            --accent-color: hsl(92, 42%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                padding: 1rem;
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                border-radius: 6px;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background: rgba(255,255,255,0.1);
                transform: translateX(10px);
            }
        }

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

.privacy-policy h1 {
    color: #2c3e50;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

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

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

.privacy-policy ul {
    margin: 15px 0;
    padding-left: 25px;
}

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

.privacy-policy strong {
    color: #2c3e50;
    font-weight: 600;
}

.highlight-box {
    background: rgba(52, 152, 219, 0.1);
    padding: 20px;
    border-left: 5px solid #3498db;
    margin: 20px 0;
    border-radius: 5px;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.section-divider {
    height: 2px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    margin: 30px 0;
    border-radius: 1px;
}

:root {
  --primary-color: hsl(92, 42%, 40%);
  --secondary-color: hsl(92, 42%, 25%);
  --accent-color: hsl(92, 42%, 65%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-brand h5 {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

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

.footer-contact a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

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

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cookie-notice .btn-learn:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-notice .btn-container {
    margin-top: 15px;
  }
  
  .cookie-notice .btn-accept,
  .cookie-notice .btn-learn {
    width: 100%;
    margin-bottom: 10px;
  }
}

:root {
            --primary-color: hsl(92, 42%, 40%);
            --secondary-color: hsl(92, 42%, 25%);
            --accent-color: hsl(92, 42%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                padding: 1rem;
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                border-radius: 6px;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background: rgba(255,255,255,0.1);
                transform: translateX(10px);
            }
        }

.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%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cookies-policy h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.cookies-policy h2 {
    color: #34495e;
    border-left: 4px solid #3498db;
    padding-left: 20px;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: 600;
}

.cookies-policy h3 {
    color: #2980b9;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 500;
}

.cookies-policy p {
    margin-bottom: 15px;
    text-align: justify;
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.cookies-policy li::before {
    content: "🍪";
    position: absolute;
    left: -15px;
    font-size: 0.9em;
}

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

.consent-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

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

:root {
  --primary-color: hsl(92, 42%, 40%);
  --secondary-color: hsl(92, 42%, 25%);
  --accent-color: hsl(92, 42%, 65%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-brand h5 {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

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

.footer-contact a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

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

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cookie-notice .btn-learn:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-notice .btn-container {
    margin-top: 15px;
  }
  
  .cookie-notice .btn-accept,
  .cookie-notice .btn-learn {
    width: 100%;
    margin-bottom: 10px;
  }
}

:root {
            --primary-color: hsl(92, 42%, 40%);
            --secondary-color: hsl(92, 42%, 25%);
            --accent-color: hsl(92, 42%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                padding: 1rem;
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                border-radius: 6px;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background: rgba(255,255,255,0.1);
                transform: translateX(10px);
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.contact-subtitle {
    color: hsl(92, 42%, 85%);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.info-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.info-text {
    color: hsl(92, 42%, 90%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid hsl(92, 42%, 65%);
}

.working-hours h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.working-hours p {
    color: hsl(92, 42%, 85%);
    margin: 0;
    font-size: 1.1rem;
}

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

.form-title {
    color: hsl(92, 42%, 25%);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-label {
    color: hsl(92, 42%, 25%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid hsl(92, 42%, 85%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(92, 42%, 25%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(92, 42%, 40%);
    box-shadow: 0 0 0 3px rgba(92, 142, 40, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(92, 42%, 60%);
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 35%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(92, 142, 40, 0.4);
    background: linear-gradient(135deg, hsl(92, 42%, 45%) 0%, hsl(92, 42%, 40%) 100%);
}

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

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

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

.about-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

.story-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(92, 42%, 65%);
    margin-bottom: 20px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.timeline-container {
    position: relative;
    margin: 60px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(92, 42%, 65%), hsl(92, 42%, 40%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

.timeline-content {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: hsl(92, 42%, 65%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px hsl(92, 42%, 40%);
}

.timeline-left .timeline-content {
    margin-right: 60px;
}

.timeline-left .timeline-content::before {
    right: -50px;
}

.timeline-right .timeline-content {
    margin-left: 60px;
}

.timeline-right .timeline-content::before {
    left: -50px;
}

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

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.value-icon {
    font-size: 3rem;
    color: hsl(92, 42%, 65%);
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(92, 42%, 65%);
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 25px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        margin-left: 70px;
        margin-right: 0;
    }
    
    .timeline-left .timeline-content::before,
    .timeline-right .timeline-content::before {
        left: -50px;
        right: auto;
    }
}

:root {
  --primary-color: hsl(92, 42%, 40%);
  --secondary-color: hsl(92, 42%, 25%);
  --accent-color: hsl(92, 42%, 65%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-brand h5 {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

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

.footer-contact a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

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

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cookie-notice .btn-learn:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-notice .btn-container {
    margin-top: 15px;
  }
  
  .cookie-notice .btn-accept,
  .cookie-notice .btn-learn {
    width: 100%;
    margin-bottom: 10px;
  }
}

:root {
            --primary-color: hsl(92, 42%, 40%);
            --secondary-color: hsl(92, 42%, 25%);
            --accent-color: hsl(92, 42%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                padding: 1rem;
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                border-radius: 6px;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background: rgba(255,255,255,0.1);
                transform: translateX(10px);
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: hsl(92, 42%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(92, 42%, 65%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(92, 42%, 40%), hsl(92, 42%, 65%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

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

.service-title {
    color: hsl(92, 42%, 25%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-price {
    color: hsl(92, 42%, 40%);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-conditions {
    background: hsl(92, 42%, 95%);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid hsl(92, 42%, 65%);
    font-size: 0.9rem;
    color: #555;
}

.service-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.service-content {
    flex: 1;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.newsletter-subtitle {
    font-size: 1.2rem;
    color: hsl(92, 42%, 30%);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

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

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

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

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

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

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

.form-control:focus {
    border-color: hsl(92, 42%, 40%);
    box-shadow: 0 0 0 0.2rem rgba(92, 142, 65, 0.25);
    outline: none;
    background: white;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 35%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    width: 100%;
    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 {
    background: linear-gradient(135deg, hsl(92, 42%, 45%) 0%, hsl(92, 42%, 40%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(92, 142, 65, 0.3);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(92, 42%, 45%);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.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="dots" 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(%23dots)"/></svg>');
    opacity: 0.3;
}

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(92, 42%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    mask: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: scrollTestimonials 60s linear infinite;
    will-change: transform;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-left: 5px solid hsl(92, 42%, 65%);
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(92, 42%, 20%);
    margin-bottom: 25px;
    font-style: italic;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(92, 42%, 90%);
    padding-top: 20px;
}

.author-info h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(92, 42%, 25%);
}

.author-location {
    font-size: 0.95rem;
    color: hsl(92, 42%, 50%);
    margin: 0;
}

.rating {
    display: flex;
    gap: 3px;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-container {
        height: 400px;
    }
    
    .testimonial-card {
        padding: 25px;
        min-height: 180px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-container {
        height: 350px;
    }
    
    .testimonial-card {
        padding: 20px;
        min-height: 160px;
    }
}

:root {
  --primary-color: hsl(92, 42%, 40%);
  --secondary-color: hsl(92, 42%, 25%);
  --accent-color: hsl(92, 42%, 65%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-brand h5 {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

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

.footer-contact a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

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

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cookie-notice .btn-learn:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-notice .btn-container {
    margin-top: 15px;
  }
  
  .cookie-notice .btn-accept,
  .cookie-notice .btn-learn {
    width: 100%;
    margin-bottom: 10px;
  }
}

:root {
            --primary-color: hsl(92, 42%, 40%);
            --secondary-color: hsl(92, 42%, 25%);
            --accent-color: hsl(92, 42%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                padding: 1rem;
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                border-radius: 6px;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background: rgba(255,255,255,0.1);
                transform: translateX(10px);
            }
        }

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.terms-title {
    text-align: center;
    font-size: 2.5em;
    color: #1a252f;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #3498db;
    padding-bottom: 20px;
}

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

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

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

.highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.important-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-style: italic;
}

.subsection {
    margin-left: 20px;
    padding-left: 15px;
    border-left: 2px solid #ecf0f1;
}

:root {
  --primary-color: hsl(92, 42%, 40%);
  --secondary-color: hsl(92, 42%, 25%);
  --accent-color: hsl(92, 42%, 65%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-brand h5 {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

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

.footer-contact a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

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

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cookie-notice .btn-learn:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-notice .btn-container {
    margin-top: 15px;
  }
  
  .cookie-notice .btn-accept,
  .cookie-notice .btn-learn {
    width: 100%;
    margin-bottom: 10px;
  }
}

:root {
            --primary-color: hsl(92, 42%, 40%);
            --secondary-color: hsl(92, 42%, 25%);
            --accent-color: hsl(92, 42%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                padding: 1rem;
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                border-radius: 6px;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background: rgba(255,255,255,0.1);
                transform: translateX(10px);
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(92, 42%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.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);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(92, 42%, 25%);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: hsl(92, 42%, 40%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(92, 42, 40, 0.25);
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23658B3A'%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");
    width: 1.5rem;
    height: 1.5rem;
    transition: all 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-collapse {
    border-top: 1px solid hsl(92, 42%, 90%);
}

.accordion-body {
    padding: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(92, 42%, 30%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,1));
}

.highlight-text {
    color: hsl(92, 42%, 40%);
    font-weight: 600;
}

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

.about-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

.story-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(92, 42%, 65%);
    margin-bottom: 20px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.timeline-container {
    position: relative;
    margin: 60px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(92, 42%, 65%), hsl(92, 42%, 40%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

.timeline-content {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: hsl(92, 42%, 65%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px hsl(92, 42%, 40%);
}

.timeline-left .timeline-content {
    margin-right: 60px;
}

.timeline-left .timeline-content::before {
    right: -50px;
}

.timeline-right .timeline-content {
    margin-left: 60px;
}

.timeline-right .timeline-content::before {
    left: -50px;
}

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

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.value-icon {
    font-size: 3rem;
    color: hsl(92, 42%, 65%);
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(92, 42%, 65%);
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 25px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        margin-left: 70px;
        margin-right: 0;
    }
    
    .timeline-left .timeline-content::before,
    .timeline-right .timeline-content::before {
        left: -50px;
        right: auto;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.newsletter-subtitle {
    font-size: 1.2rem;
    color: hsl(92, 42%, 30%);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

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

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

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

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

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

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

.form-control:focus {
    border-color: hsl(92, 42%, 40%);
    box-shadow: 0 0 0 0.2rem rgba(92, 142, 65, 0.25);
    outline: none;
    background: white;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 35%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    width: 100%;
    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 {
    background: linear-gradient(135deg, hsl(92, 42%, 45%) 0%, hsl(92, 42%, 40%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(92, 142, 65, 0.3);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(92, 42%, 45%);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

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

:root {
  --primary-color: hsl(92, 42%, 40%);
  --secondary-color: hsl(92, 42%, 25%);
  --accent-color: hsl(92, 42%, 65%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-brand h5 {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

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

.footer-contact a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

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

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cookie-notice .btn-learn:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-notice .btn-container {
    margin-top: 15px;
  }
  
  .cookie-notice .btn-accept,
  .cookie-notice .btn-learn {
    width: 100%;
    margin-bottom: 10px;
  }
}

:root {
            --primary-color: hsl(92, 42%, 40%);
            --secondary-color: hsl(92, 42%, 25%);
            --accent-color: hsl(92, 42%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                padding: 1rem;
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                border-radius: 6px;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background: rgba(255,255,255,0.1);
                transform: translateX(10px);
            }
        }

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: hsl(92, 42%, 65%);
    border-radius: 50%;
    opacity: 0.1;
    transform: rotate(-15deg);
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

.content-wrapper {
    padding-left: 40px;
    margin-top: -80px;
}

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

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(92, 42%, 85%);
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: hsl(92, 42%, 90%);
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: justify;
}

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

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

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: hsl(92, 42%, 65%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-list li i {
    position: absolute;
    left: 6px;
    top: 14px;
    font-size: 0.8rem;
    color: hsl(92, 42%, 25%);
}

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

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transform: rotate(2deg);
    shape-outside: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    float: right;
}

.floating-element {
    position: absolute;
    top: 20%;
    left: -30px;
    width: 120px;
    height: 120px;
    background: hsl(92, 42%, 65%);
    border-radius: 50%;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.floating-element-2 {
    position: absolute;
    bottom: 10%;
    right: -40px;
    width: 80px;
    height: 80px;
    background: hsl(92, 42%, 55%);
    border-radius: 20px;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite reverse;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: hsl(92, 42%, 65%);
    border: none;
    color: hsl(92, 42%, 15%);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
    background: hsl(92, 42%, 75%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    color: hsl(92, 42%, 15%);
}

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

.btn-secondary-custom:hover {
    background: hsl(92, 42%, 65%);
    color: hsl(92, 42%, 15%);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .content-wrapper {
        padding-left: 0;
        margin-top: 0;
        order: 2;
    }
    
    .hero-image-wrapper {
        margin-left: 0;
        margin-top: 0;
        order: 1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-image {
        height: 400px;
        transform: rotate(0deg);
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

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

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

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(92, 42%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: hsl(92, 42%, 65%);
}

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

.stat-card:hover .stat-icon {
    transform: scale(1.2);
    color: white;
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(92, 42%, 85%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.highlight-card {
    background: linear-gradient(135deg, hsl(92, 42%, 65%) 0%, hsl(92, 42%, 40%) 100%);
    border: 2px solid white;
}

.highlight-card .stat-number {
    color: hsl(92, 42%, 25%);
}

.highlight-card .stat-label {
    color: hsl(92, 42%, 25%);
}

.highlight-card .stat-icon {
    color: hsl(92, 42%, 25%);
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.newsletter-subtitle {
    font-size: 1.2rem;
    color: hsl(92, 42%, 30%);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

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

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

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

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

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

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

.form-control:focus {
    border-color: hsl(92, 42%, 40%);
    box-shadow: 0 0 0 0.2rem rgba(92, 142, 65, 0.25);
    outline: none;
    background: white;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 35%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    width: 100%;
    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 {
    background: linear-gradient(135deg, hsl(92, 42%, 45%) 0%, hsl(92, 42%, 40%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(92, 142, 65, 0.3);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(92, 42%, 45%);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

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

.contact-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.contact-subtitle {
    color: hsl(92, 42%, 85%);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.info-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.info-text {
    color: hsl(92, 42%, 90%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid hsl(92, 42%, 65%);
}

.working-hours h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.working-hours p {
    color: hsl(92, 42%, 85%);
    margin: 0;
    font-size: 1.1rem;
}

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

.form-title {
    color: hsl(92, 42%, 25%);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-label {
    color: hsl(92, 42%, 25%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid hsl(92, 42%, 85%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(92, 42%, 25%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(92, 42%, 40%);
    box-shadow: 0 0 0 3px rgba(92, 142, 40, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(92, 42%, 60%);
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 35%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(92, 142, 40, 0.4);
    background: linear-gradient(135deg, hsl(92, 42%, 45%) 0%, hsl(92, 42%, 40%) 100%);
}

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

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

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

.advantages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

.advantages-title {
    text-align: center;
    margin-bottom: 70px;
}

.advantages-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, white, hsl(92, 42%, 85%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantages-title p {
    font-size: 1.3rem;
    color: hsl(92, 42%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(92, 42%, 40%), hsl(92, 42%, 65%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(92, 42%, 65%);
}

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

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

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

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

.advantage-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(92, 42%, 25%);
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
}

.advantage-card p {
    color: hsl(92, 42%, 30%);
    line-height: 1.7;
    text-align: center;
    font-size: 1rem;
    flex-grow: 1;
    margin: 0;
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantages-title h2 {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
    }
    
    .advantage-icon i {
        font-size: 1.7rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.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="dots" 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(%23dots)"/></svg>');
    opacity: 0.3;
}

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(92, 42%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    mask: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: scrollTestimonials 60s linear infinite;
    will-change: transform;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-left: 5px solid hsl(92, 42%, 65%);
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(92, 42%, 20%);
    margin-bottom: 25px;
    font-style: italic;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(92, 42%, 90%);
    padding-top: 20px;
}

.author-info h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(92, 42%, 25%);
}

.author-location {
    font-size: 0.95rem;
    color: hsl(92, 42%, 50%);
    margin: 0;
}

.rating {
    display: flex;
    gap: 3px;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-container {
        height: 400px;
    }
    
    .testimonial-card {
        padding: 25px;
        min-height: 180px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-container {
        height: 350px;
    }
    
    .testimonial-card {
        padding: 20px;
        min-height: 160px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(92, 42%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.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);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(92, 42%, 25%);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: hsl(92, 42%, 40%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(92, 42, 40, 0.25);
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23658B3A'%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");
    width: 1.5rem;
    height: 1.5rem;
    transition: all 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-collapse {
    border-top: 1px solid hsl(92, 42%, 90%);
}

.accordion-body {
    padding: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(92, 42%, 30%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,1));
}

.highlight-text {
    color: hsl(92, 42%, 40%);
    font-weight: 600;
}

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

.services-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: hsl(92, 42%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(92, 42%, 65%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(92, 42%, 40%), hsl(92, 42%, 65%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

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

.service-title {
    color: hsl(92, 42%, 25%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-price {
    color: hsl(92, 42%, 40%);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-conditions {
    background: hsl(92, 42%, 95%);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid hsl(92, 42%, 65%);
    font-size: 0.9rem;
    color: #555;
}

.service-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.service-content {
    flex: 1;
}

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

.about-section {
    background: linear-gradient(135deg, hsl(92, 42%, 40%) 0%, hsl(92, 42%, 25%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

.story-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(92, 42%, 65%);
    margin-bottom: 20px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.timeline-container {
    position: relative;
    margin: 60px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(92, 42%, 65%), hsl(92, 42%, 40%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

.timeline-content {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: hsl(92, 42%, 65%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px hsl(92, 42%, 40%);
}

.timeline-left .timeline-content {
    margin-right: 60px;
}

.timeline-left .timeline-content::before {
    right: -50px;
}

.timeline-right .timeline-content {
    margin-left: 60px;
}

.timeline-right .timeline-content::before {
    left: -50px;
}

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

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.value-icon {
    font-size: 3rem;
    color: hsl(92, 42%, 65%);
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(92, 42%, 65%);
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 25px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        margin-left: 70px;
        margin-right: 0;
    }
    
    .timeline-left .timeline-content::before,
    .timeline-right .timeline-content::before {
        left: -50px;
        right: auto;
    }
}

:root {
  --primary-color: hsl(92, 42%, 40%);
  --secondary-color: hsl(92, 42%, 25%);
  --accent-color: hsl(92, 42%, 65%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-brand h5 {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

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

.footer-contact a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

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

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

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

.cookie-notice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cookie-notice .btn-learn:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-notice .btn-container {
    margin-top: 15px;
  }
  
  .cookie-notice .btn-accept,
  .cookie-notice .btn-learn {
    width: 100%;
    margin-bottom: 10px;
  }
}