:root {
            --primary-color: hsl(79, 65%, 42%);
            --secondary-color: hsl(79, 65%, 27%);
            --accent-color: hsl(79, 65%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                padding: 15px;
                margin-top: 10px;
            }
        }

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(79, 65%, 97%) 0%, hsl(79, 65%, 95%) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="hsl(79, 65%, 42%)" opacity="0.05"/><circle cx="80" cy="40" r="1" fill="hsl(79, 65%, 27%)" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="hsl(79, 65%, 67%)" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(79, 65%, 27%);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.content-block {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid hsl(79, 65%, 67%);
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, hsl(79, 65%, 42%), hsl(79, 65%, 67%), hsl(79, 65%, 42%));
}

.block-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(79, 65%, 27%);
    margin-bottom: 1.5rem;
    text-align: center;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    margin: 3rem 0;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid hsl(79, 65%, 67%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    background: linear-gradient(120deg, hsl(79, 65%, 67%) 0%, hsl(79, 65%, 42%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

.mission-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid hsl(79, 65%, 67%);
    transition: transform 0.3s ease;
}

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

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(79, 65%, 42%), hsl(79, 65%, 67%));
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 300px;
    }
}

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

.advantages-title {
    color: hsl(79, 65%, 27%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

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

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(79, 65%, 67%);
}

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

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    transform: scale(1.1);
}

.advantage-icon i {
    font-size: 30px;
    color: white;
}

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

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.statistics-section {
  background: linear-gradient(135deg, hsl(79, 65%, 42%) 0%, hsl(79, 65%, 27%) 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="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s infinite linear;
}

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

.section-header {
  text-align: center;
  margin-bottom: 80px;
  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: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: rotate 8s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.stat-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(hsl(79, 65%, 67%) 0deg, hsl(79, 65%, 67%) var(--percentage), rgba(255,255,255,0.2) var(--percentage), rgba(255,255,255,0.2) 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.stat-circle::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  background: hsl(79, 65%, 27%);
  border-radius: 50%;
  z-index: -1;
}

.stat-icon {
  font-size: 2.5rem;
  color: hsl(79, 65%, 67%);
  z-index: 2;
}

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

.stat-label {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  line-height: 1.4;
}

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

footer {
    background: linear-gradient(135deg, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(79, 65%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links h5 {
    color: hsl(79, 65%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(79, 65%, 67%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(79, 65%, 67%);
    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, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(79, 65%, 67%);
    border: none;
    color: hsl(79, 65%, 27%);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(79, 65%, 67%);
    color: hsl(79, 65%, 27%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(79, 65%, 42%);
            --secondary-color: hsl(79, 65%, 27%);
            --accent-color: hsl(79, 65%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                padding: 15px;
                margin-top: 10px;
            }
        }

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

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

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

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

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

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

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

.privacy-policy li::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: -25px;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

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

footer {
    background: linear-gradient(135deg, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(79, 65%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links h5 {
    color: hsl(79, 65%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(79, 65%, 67%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(79, 65%, 67%);
    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, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(79, 65%, 67%);
    border: none;
    color: hsl(79, 65%, 27%);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(79, 65%, 67%);
    color: hsl(79, 65%, 27%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(79, 65%, 42%);
            --secondary-color: hsl(79, 65%, 27%);
            --accent-color: hsl(79, 65%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                padding: 15px;
                margin-top: 10px;
            }
        }

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

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

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

.cookies-policy h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

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

.cookie-type {
    background: white;
    padding: 25px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #e74c3c;
}

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

.consent-box {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

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

.control-section {
    background: #ecf0f1;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 2px dashed #bdc3c7;
}

.gdpr-highlight {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.update-info {
    background: #f39c12;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-weight: 500;
}

ul {
    padding-left: 25px;
}

li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.highlight-text {
    background: #fff3cd;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
    color: #856404;
}

footer {
    background: linear-gradient(135deg, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(79, 65%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links h5 {
    color: hsl(79, 65%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(79, 65%, 67%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(79, 65%, 67%);
    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, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(79, 65%, 67%);
    border: none;
    color: hsl(79, 65%, 27%);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(79, 65%, 67%);
    color: hsl(79, 65%, 27%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(79, 65%, 42%);
            --secondary-color: hsl(79, 65%, 27%);
            --accent-color: hsl(79, 65%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                padding: 15px;
                margin-top: 10px;
            }
        }

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

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

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

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

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

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

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

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

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.info-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.working-hours h5 {
    color: hsl(79, 65%, 67%);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

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

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

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

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

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: hsl(79, 65%, 42%);
    background: white;
    box-shadow: 0 0 0 3px rgba(140, 180, 75, 0.1);
}

.form-control::placeholder {
    color: #666;
    opacity: 0.7;
}

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

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(140, 180, 75, 0.3);
    background: linear-gradient(135deg, hsl(79, 65%, 47%) 0%, hsl(79, 65%, 32%) 100%);
}

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

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(79, 65%, 97%) 0%, hsl(79, 65%, 95%) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="hsl(79, 65%, 42%)" opacity="0.05"/><circle cx="80" cy="40" r="1" fill="hsl(79, 65%, 27%)" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="hsl(79, 65%, 67%)" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(79, 65%, 27%);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.content-block {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid hsl(79, 65%, 67%);
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, hsl(79, 65%, 42%), hsl(79, 65%, 67%), hsl(79, 65%, 42%));
}

.block-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(79, 65%, 27%);
    margin-bottom: 1.5rem;
    text-align: center;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    margin: 3rem 0;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid hsl(79, 65%, 67%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    background: linear-gradient(120deg, hsl(79, 65%, 67%) 0%, hsl(79, 65%, 42%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

.mission-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid hsl(79, 65%, 67%);
    transition: transform 0.3s ease;
}

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

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(79, 65%, 42%), hsl(79, 65%, 67%));
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 300px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(79, 65%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links h5 {
    color: hsl(79, 65%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(79, 65%, 67%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(79, 65%, 67%);
    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, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(79, 65%, 67%);
    border: none;
    color: hsl(79, 65%, 27%);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(79, 65%, 67%);
    color: hsl(79, 65%, 27%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(79, 65%, 42%);
            --secondary-color: hsl(79, 65%, 27%);
            --accent-color: hsl(79, 65%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                padding: 15px;
                margin-top: 10px;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(79, 65%, 97%) 0%, hsl(79, 65%, 92%) 100%);
    padding: 80px 0;
}

.services-title {
    color: hsl(79, 65%, 27%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-subtitle {
    color: hsl(79, 65%, 42%);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(79, 65%, 67%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(79, 65%, 42%), hsl(79, 65%, 67%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(79, 65%, 27%), hsl(79, 65%, 42%));
}

.service-icon i {
    font-size: 32px;
    color: white;
}

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

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

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

.service-conditions {
    background: hsl(79, 65%, 97%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(79, 65%, 67%);
}

.service-conditions small {
    color: hsl(79, 65%, 27%);
    font-size: 0.85rem;
    line-height: 1.4;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(79, 65%, 42%), hsl(79, 65%, 67%));
    margin: 0 auto 40px;
    border-radius: 2px;
}

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

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

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

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

.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

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

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

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: hsl(79, 65%, 67%);
}

.benefit-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.form-title {
    color: hsl(79, 65%, 27%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-description {
    color: hsl(79, 65%, 27%);
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.input-group {
    display: flex;
    gap: 15px;
    align-items: stretch;
    margin-bottom: 20px;
}

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid hsl(79, 65%, 67%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    color: hsl(79, 65%, 27%);
}

.email-input:focus {
    border-color: hsl(79, 65%, 42%);
    box-shadow: 0 0 0 4px rgba(142, 181, 64, 0.2);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: hsl(79, 65%, 67%);
    opacity: 0.7;
}

.subscribe-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, hsl(79, 65%, 42%) 0%, hsl(79, 65%, 27%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(142, 181, 64, 0.4);
    min-width: 160px;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(142, 181, 64, 0.6);
    background: linear-gradient(135deg, hsl(79, 65%, 47%) 0%, hsl(79, 65%, 32%) 100%);
}

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

.privacy-note {
    font-size: 0.85rem;
    color: hsl(79, 65%, 27%);
    opacity: 0.7;
    margin-top: 15px;
    line-height: 1.4;
}

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

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

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

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

.section-subtitle {
    color: hsl(79, 65%, 87%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-container {
    height: 600px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid hsl(79, 65%, 67%);
    position: relative;
    backdrop-filter: blur(10px);
    min-height: 200px;
    flex-shrink: 0;
}

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

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

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(79, 65%, 67%);
    padding-top: 15px;
}

.author-info h5 {
    color: hsl(79, 65%, 27%);
    font-weight: 600;
    margin: 0;
    font-size: 1.2rem;
}

.author-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    font-size: 1.2rem;
}

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

.testimonials-scroll:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-container {
        height: 500px;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(79, 65%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links h5 {
    color: hsl(79, 65%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(79, 65%, 67%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(79, 65%, 67%);
    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, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(79, 65%, 67%);
    border: none;
    color: hsl(79, 65%, 27%);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(79, 65%, 67%);
    color: hsl(79, 65%, 27%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(79, 65%, 42%);
            --secondary-color: hsl(79, 65%, 27%);
            --accent-color: hsl(79, 65%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                padding: 15px;
                margin-top: 10px;
            }
        }

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

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

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

.section-title {
    color: #2d3748;
    font-size: 1.4em;
    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, #a2f2ff 0%, #84d9e6 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.important-notice {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border: 2px solid #e53e3e;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 600;
}

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

footer {
    background: linear-gradient(135deg, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(79, 65%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links h5 {
    color: hsl(79, 65%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(79, 65%, 67%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(79, 65%, 67%);
    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, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(79, 65%, 67%);
    border: none;
    color: hsl(79, 65%, 27%);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(79, 65%, 67%);
    color: hsl(79, 65%, 27%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(79, 65%, 42%);
            --secondary-color: hsl(79, 65%, 27%);
            --accent-color: hsl(79, 65%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                padding: 15px;
                margin-top: 10px;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(79, 65%, 97%) 0%, hsl(79, 65%, 92%) 100%);
    padding: 80px 0;
}

.faq-title {
    color: hsl(79, 65%, 27%);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.faq-subtitle {
    color: hsl(79, 65%, 35%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-card {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid hsl(79, 65%, 42%);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.faq-question {
    background: linear-gradient(135deg, hsl(79, 65%, 42%) 0%, hsl(79, 65%, 35%) 100%);
    color: white;
    padding: 25px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 30px 25px;
    color: hsl(79, 65%, 25%);
    line-height: 1.7;
    font-size: 1rem;
    display: none;
    border-top: 1px solid hsl(79, 65%, 90%);
}

.faq-answer.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    fill: white;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 25px 20px;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(79, 65%, 97%) 0%, hsl(79, 65%, 95%) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="hsl(79, 65%, 42%)" opacity="0.05"/><circle cx="80" cy="40" r="1" fill="hsl(79, 65%, 27%)" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="hsl(79, 65%, 67%)" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(79, 65%, 27%);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.content-block {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid hsl(79, 65%, 67%);
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, hsl(79, 65%, 42%), hsl(79, 65%, 67%), hsl(79, 65%, 42%));
}

.block-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(79, 65%, 27%);
    margin-bottom: 1.5rem;
    text-align: center;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    margin: 3rem 0;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid hsl(79, 65%, 67%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    background: linear-gradient(120deg, hsl(79, 65%, 67%) 0%, hsl(79, 65%, 42%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

.mission-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid hsl(79, 65%, 67%);
    transition: transform 0.3s ease;
}

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

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(79, 65%, 42%), hsl(79, 65%, 67%));
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 300px;
    }
}

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

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

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

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

.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

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

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

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: hsl(79, 65%, 67%);
}

.benefit-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.form-title {
    color: hsl(79, 65%, 27%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-description {
    color: hsl(79, 65%, 27%);
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.input-group {
    display: flex;
    gap: 15px;
    align-items: stretch;
    margin-bottom: 20px;
}

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid hsl(79, 65%, 67%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    color: hsl(79, 65%, 27%);
}

.email-input:focus {
    border-color: hsl(79, 65%, 42%);
    box-shadow: 0 0 0 4px rgba(142, 181, 64, 0.2);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: hsl(79, 65%, 67%);
    opacity: 0.7;
}

.subscribe-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, hsl(79, 65%, 42%) 0%, hsl(79, 65%, 27%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(142, 181, 64, 0.4);
    min-width: 160px;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(142, 181, 64, 0.6);
    background: linear-gradient(135deg, hsl(79, 65%, 47%) 0%, hsl(79, 65%, 32%) 100%);
}

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

.privacy-note {
    font-size: 0.85rem;
    color: hsl(79, 65%, 27%);
    opacity: 0.7;
    margin-top: 15px;
    line-height: 1.4;
}

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

footer {
    background: linear-gradient(135deg, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(79, 65%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links h5 {
    color: hsl(79, 65%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(79, 65%, 67%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(79, 65%, 67%);
    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, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(79, 65%, 67%);
    border: none;
    color: hsl(79, 65%, 27%);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(79, 65%, 67%);
    color: hsl(79, 65%, 27%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(79, 65%, 42%);
            --secondary-color: hsl(79, 65%, 27%);
            --accent-color: hsl(79, 65%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                padding: 15px;
                margin-top: 10px;
            }
        }

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

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

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

.hero-text-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-top: -60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
}

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

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: rotate(3deg);
    shape-outside: polygon(0 0, 100% 20%, 100% 100%, 20% 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(79, 65%, 27%);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(79, 65%, 42%);
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.benefits-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #444;
    position: relative;
    padding-left: 40px;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: hsl(79, 65%, 42%);
    border-radius: 50%;
}

.benefits-list li i {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 10px;
}

.cta-buttons {
    margin-top: 40px;
}

.btn-primary-custom {
    background: linear-gradient(45deg, hsl(79, 65%, 42%), hsl(79, 65%, 67%));
    border: none;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 3px solid hsl(79, 65%, 42%);
    padding: 12px 32px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    color: hsl(79, 65%, 27%);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

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

.floating-element {
    position: absolute;
    background: hsl(79, 65%, 67%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
    animation-delay: 4s;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-text-wrapper {
        margin-top: 0;
        transform: none;
        padding: 30px 20px;
    }
    
    .hero-image-wrapper {
        margin-top: 30px;
    }
    
    .hero-image {
        height: 300px;
        transform: none;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        text-align: center;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

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

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

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

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

.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

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

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

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: hsl(79, 65%, 67%);
}

.benefit-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.form-title {
    color: hsl(79, 65%, 27%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-description {
    color: hsl(79, 65%, 27%);
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.input-group {
    display: flex;
    gap: 15px;
    align-items: stretch;
    margin-bottom: 20px;
}

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid hsl(79, 65%, 67%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    color: hsl(79, 65%, 27%);
}

.email-input:focus {
    border-color: hsl(79, 65%, 42%);
    box-shadow: 0 0 0 4px rgba(142, 181, 64, 0.2);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: hsl(79, 65%, 67%);
    opacity: 0.7;
}

.subscribe-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, hsl(79, 65%, 42%) 0%, hsl(79, 65%, 27%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(142, 181, 64, 0.4);
    min-width: 160px;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(142, 181, 64, 0.6);
    background: linear-gradient(135deg, hsl(79, 65%, 47%) 0%, hsl(79, 65%, 32%) 100%);
}

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

.privacy-note {
    font-size: 0.85rem;
    color: hsl(79, 65%, 27%);
    opacity: 0.7;
    margin-top: 15px;
    line-height: 1.4;
}

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(79, 65%, 97%) 0%, hsl(79, 65%, 95%) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="hsl(79, 65%, 42%)" opacity="0.05"/><circle cx="80" cy="40" r="1" fill="hsl(79, 65%, 27%)" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="hsl(79, 65%, 67%)" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(79, 65%, 27%);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.content-block {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid hsl(79, 65%, 67%);
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, hsl(79, 65%, 42%), hsl(79, 65%, 67%), hsl(79, 65%, 42%));
}

.block-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(79, 65%, 27%);
    margin-bottom: 1.5rem;
    text-align: center;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    margin: 3rem 0;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid hsl(79, 65%, 67%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    background: linear-gradient(120deg, hsl(79, 65%, 67%) 0%, hsl(79, 65%, 42%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

.mission-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid hsl(79, 65%, 67%);
    transition: transform 0.3s ease;
}

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

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(79, 65%, 42%), hsl(79, 65%, 67%));
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 300px;
    }
}

.statistics-section {
  background: linear-gradient(135deg, hsl(79, 65%, 42%) 0%, hsl(79, 65%, 27%) 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="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s infinite linear;
}

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

.section-header {
  text-align: center;
  margin-bottom: 80px;
  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: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: rotate 8s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.stat-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(hsl(79, 65%, 67%) 0deg, hsl(79, 65%, 67%) var(--percentage), rgba(255,255,255,0.2) var(--percentage), rgba(255,255,255,0.2) 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.stat-circle::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  background: hsl(79, 65%, 27%);
  border-radius: 50%;
  z-index: -1;
}

.stat-icon {
  font-size: 2.5rem;
  color: hsl(79, 65%, 67%);
  z-index: 2;
}

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

.stat-label {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  line-height: 1.4;
}

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

.services-section {
    background: linear-gradient(135deg, hsl(79, 65%, 97%) 0%, hsl(79, 65%, 92%) 100%);
    padding: 80px 0;
}

.services-title {
    color: hsl(79, 65%, 27%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-subtitle {
    color: hsl(79, 65%, 42%);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(79, 65%, 67%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(79, 65%, 42%), hsl(79, 65%, 67%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(79, 65%, 27%), hsl(79, 65%, 42%));
}

.service-icon i {
    font-size: 32px;
    color: white;
}

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

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

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

.service-conditions {
    background: hsl(79, 65%, 97%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(79, 65%, 67%);
}

.service-conditions small {
    color: hsl(79, 65%, 27%);
    font-size: 0.85rem;
    line-height: 1.4;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(79, 65%, 42%), hsl(79, 65%, 67%));
    margin: 0 auto 40px;
    border-radius: 2px;
}

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

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

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

.section-subtitle {
    color: hsl(79, 65%, 87%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-container {
    height: 600px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid hsl(79, 65%, 67%);
    position: relative;
    backdrop-filter: blur(10px);
    min-height: 200px;
    flex-shrink: 0;
}

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

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

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(79, 65%, 67%);
    padding-top: 15px;
}

.author-info h5 {
    color: hsl(79, 65%, 27%);
    font-weight: 600;
    margin: 0;
    font-size: 1.2rem;
}

.author-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    font-size: 1.2rem;
}

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

.testimonials-scroll:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-container {
        height: 500px;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 20px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(79, 65%, 97%) 0%, hsl(79, 65%, 92%) 100%);
    padding: 80px 0;
}

.faq-title {
    color: hsl(79, 65%, 27%);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.faq-subtitle {
    color: hsl(79, 65%, 35%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-card {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid hsl(79, 65%, 42%);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.faq-question {
    background: linear-gradient(135deg, hsl(79, 65%, 42%) 0%, hsl(79, 65%, 35%) 100%);
    color: white;
    padding: 25px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 30px 25px;
    color: hsl(79, 65%, 25%);
    line-height: 1.7;
    font-size: 1rem;
    display: none;
    border-top: 1px solid hsl(79, 65%, 90%);
}

.faq-answer.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    fill: white;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 25px 20px;
    }
}

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

.advantages-title {
    color: hsl(79, 65%, 27%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

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

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(79, 65%, 67%);
}

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

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    transform: scale(1.1);
}

.advantage-icon i {
    font-size: 30px;
    color: white;
}

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

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

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

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

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

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

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

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

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

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

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.info-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.working-hours h5 {
    color: hsl(79, 65%, 67%);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

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

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

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

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

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: hsl(79, 65%, 42%);
    background: white;
    box-shadow: 0 0 0 3px rgba(140, 180, 75, 0.1);
}

.form-control::placeholder {
    color: #666;
    opacity: 0.7;
}

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

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(140, 180, 75, 0.3);
    background: linear-gradient(135deg, hsl(79, 65%, 47%) 0%, hsl(79, 65%, 32%) 100%);
}

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

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

footer {
    background: linear-gradient(135deg, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(79, 65%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links h5 {
    color: hsl(79, 65%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: hsl(79, 65%, 67%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(79, 65%, 67%);
    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, hsl(79, 65%, 27%) 0%, hsl(79, 65%, 42%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(79, 65%, 67%);
    border: none;
    color: hsl(79, 65%, 27%);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(79, 65%, 67%);
    color: hsl(79, 65%, 27%);
    transform: translateY(-2px);
}

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