:root {
            --primary-color: hsl(76, 47%, 33%);
            --secondary-color: hsl(76, 47%, 18%);
            --accent-color: hsl(76, 47%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

.about-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(76, 47%, 58%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: hsl(76, 47%, 58%);
    border-radius: 2px;
}

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

.text-content {
    background: rgba(255, 255, 255, 0.95);
    color: hsl(76, 47%, 18%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 30px 0;
    backdrop-filter: blur(10px);
    border: 2px solid hsl(76, 47%, 58%);
}

.content-block {
    margin-bottom: 35px;
}

.content-block h3 {
    color: hsl(76, 47%, 33%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.content-block h3::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: hsl(76, 47%, 58%);
    font-size: 1.2rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.side-image {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid hsl(76, 47%, 58%);
    position: relative;
    overflow: hidden;
}

.side-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, hsl(76, 47%, 58%) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.side-image:hover::before {
    opacity: 0.1;
}

.side-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.image-left {
    margin-top: 80px;
}

.image-right {
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .text-content {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .side-image {
        margin: 20px 0 !important;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .text-content {
        padding: 25px 15px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

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

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

.section-subtitle {
    color: hsl(76, 47%, 58%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border-color: hsl(76, 47%, 58%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(76, 47%, 58%), hsl(76, 47%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.advantage-title {
    color: hsl(76, 47%, 18%);
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 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="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.stat-circle {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid hsl(76, 47%, 58%);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(76, 47%, 58%), transparent, hsl(76, 47%, 58%));
    z-index: -1;
    animation: rotate 3s linear infinite;
}

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

.stat-icon {
    font-size: 2.5rem;
    color: hsl(76, 47%, 58%);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
}

.stat-item {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-circle {
        width: 150px;
        height: 150px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

:root {
  --primary-color: hsl(76, 47%, 33%);
  --secondary-color: hsl(76, 47%, 18%);
  --accent-color: hsl(76, 47%, 58%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 3rem 0 1rem;
  margin-top: auto;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

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

#cookieNotice.show {
  transform: translateY(0);
}

#cookieNotice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

#cookieNotice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  #cookieNotice .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

:root {
            --primary-color: hsl(76, 47%, 33%);
            --secondary-color: hsl(76, 47%, 18%);
            --accent-color: hsl(76, 47%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

.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-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #2c5aa0;
}

.privacy-header h1 {
    font-size: 2.8em;
    color: #2c5aa0;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.privacy-header p {
    font-size: 1.2em;
    color: #666;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #2c5aa0;
}

.privacy-section h2 {
    color: #2c5aa0;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f2ff;
}

.privacy-section h3 {
    color: #4a6fa5;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
}

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

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

.privacy-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.privacy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
    font-size: 1.2em;
}

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

.gdpr-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    margin: 10px 0;
}

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

:root {
  --primary-color: hsl(76, 47%, 33%);
  --secondary-color: hsl(76, 47%, 18%);
  --accent-color: hsl(76, 47%, 58%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 3rem 0 1rem;
  margin-top: auto;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

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

#cookieNotice.show {
  transform: translateY(0);
}

#cookieNotice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

#cookieNotice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  #cookieNotice .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

:root {
            --primary-color: hsl(76, 47%, 33%);
            --secondary-color: hsl(76, 47%, 18%);
            --accent-color: hsl(76, 47%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

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

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #007bff;
}

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

.policy-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 300;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #495057;
    margin: 40px 0 20px 0;
    padding-left: 20px;
    border-left: 5px solid #007bff;
    background: linear-gradient(90deg, rgba(0,123,255,0.1) 0%, transparent 100%);
    padding: 15px 0 15px 20px;
    border-radius: 0 10px 10px 0;
}

.content-block {
    background: white;
    padding: 30px;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #28a745;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.cookie-type {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.cookie-type:hover {
    border-color: #007bff;
    transform: scale(1.02);
}

.cookie-type h4 {
    color: #007bff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #2196f3;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(33,150,243,0.2);
}

.consent-info {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #9c27b0;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(156,39,176,0.2);
}

.gdpr-compliance {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #4caf50;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(76,175,80,0.2);
}

ul {
    padding-left: 0;
}

li {
    list-style: none;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

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

@media (max-width: 768px) {
    .cookies-policy {
        padding: 20px 15px;
    }
    
    .policy-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cookie-types {
        grid-template-columns: 1fr;
    }
}

:root {
  --primary-color: hsl(76, 47%, 33%);
  --secondary-color: hsl(76, 47%, 18%);
  --accent-color: hsl(76, 47%, 58%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 3rem 0 1rem;
  margin-top: auto;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

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

#cookieNotice.show {
  transform: translateY(0);
}

#cookieNotice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

#cookieNotice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  #cookieNotice .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

:root {
            --primary-color: hsl(76, 47%, 33%);
            --secondary-color: hsl(76, 47%, 18%);
            --accent-color: hsl(76, 47%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

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

.form-control {
    border: 2px solid hsl(76, 47%, 85%);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(76, 47%, 18%);
}

.form-control:focus {
    border-color: hsl(76, 47%, 58%);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    outline: none;
}

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

.contact-info {
    color: white;
    padding: 2rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid hsl(76, 47%, 58%);
    backdrop-filter: blur(5px);
}

.info-title {
    color: hsl(76, 47%, 85%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.info-text {
    color: white;
    line-height: 1.6;
    margin-bottom: 0;
}

.submit-btn {
    background: linear-gradient(135deg, hsl(76, 47%, 58%) 0%, hsl(76, 47%, 45%) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, hsl(76, 47%, 65%) 0%, hsl(76, 47%, 52%) 100%);
}

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

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(76, 47%, 58%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: hsl(76, 47%, 58%);
    border-radius: 2px;
}

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

.text-content {
    background: rgba(255, 255, 255, 0.95);
    color: hsl(76, 47%, 18%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 30px 0;
    backdrop-filter: blur(10px);
    border: 2px solid hsl(76, 47%, 58%);
}

.content-block {
    margin-bottom: 35px;
}

.content-block h3 {
    color: hsl(76, 47%, 33%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.content-block h3::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: hsl(76, 47%, 58%);
    font-size: 1.2rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.side-image {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid hsl(76, 47%, 58%);
    position: relative;
    overflow: hidden;
}

.side-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, hsl(76, 47%, 58%) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.side-image:hover::before {
    opacity: 0.1;
}

.side-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.image-left {
    margin-top: 80px;
}

.image-right {
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .text-content {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .side-image {
        margin: 20px 0 !important;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .text-content {
        padding: 25px 15px;
    }
}

:root {
  --primary-color: hsl(76, 47%, 33%);
  --secondary-color: hsl(76, 47%, 18%);
  --accent-color: hsl(76, 47%, 58%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 3rem 0 1rem;
  margin-top: auto;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

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

#cookieNotice.show {
  transform: translateY(0);
}

#cookieNotice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

#cookieNotice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  #cookieNotice .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

:root {
            --primary-color: hsl(76, 47%, 33%);
            --secondary-color: hsl(76, 47%, 18%);
            --accent-color: hsl(76, 47%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(76, 47%, 18%) 0%, hsl(76, 47%, 33%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 3rem;
}

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

.nav-tabs .nav-link:hover {
    background: hsl(76, 47%, 58%);
    color: hsl(76, 47%, 18%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: hsl(76, 47%, 58%);
    color: hsl(76, 47%, 18%);
    border-color: hsl(76, 47%, 58%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(76, 47%, 58%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(76, 47%, 58%), hsl(76, 47%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.service-title {
    color: hsl(76, 47%, 18%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(76, 47%, 33%);
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(76, 47%, 95%);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid hsl(76, 47%, 58%);
    font-size: 0.9rem;
    color: hsl(76, 47%, 25%);
}

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.benefits-list li {
    color: hsl(76, 47%, 25%);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(76, 47%, 58%);
    font-weight: bold;
    font-size: 1.3rem;
}

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(76, 47%, 80%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(76, 47%, 58%);
    box-shadow: 0 0 0 3px rgba(118, 145, 60, 0.1);
    transform: translateY(-2px);
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(118, 145, 60, 0.3);
    background: linear-gradient(135deg, hsl(76, 47%, 63%) 0%, hsl(76, 47%, 53%) 100%);
}

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

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

.privacy-note {
    color: hsl(76, 47%, 40%);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-subtitle {
    color: hsl(76, 47%, 58%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: hsl(76, 47%, 58%);
}

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

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

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(76, 47%, 58%);
    padding-top: 20px;
}

.client-name {
    font-weight: 700;
    color: hsl(76, 47%, 18%);
    font-size: 1.2rem;
}

.client-location {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.testimonial-card:nth-child(3n+1) {
    grid-row: span 1;
}

.testimonial-card:nth-child(3n+2) {
    grid-row: span 2;
}

.testimonial-card:nth-child(3n) {
    grid-row: span 1;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card:nth-child(n) {
        grid-row: span 1;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

:root {
  --primary-color: hsl(76, 47%, 33%);
  --secondary-color: hsl(76, 47%, 18%);
  --accent-color: hsl(76, 47%, 58%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 3rem 0 1rem;
  margin-top: auto;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

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

#cookieNotice.show {
  transform: translateY(0);
}

#cookieNotice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

#cookieNotice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  #cookieNotice .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

:root {
            --primary-color: hsl(76, 47%, 33%);
            --secondary-color: hsl(76, 47%, 18%);
            --accent-color: hsl(76, 47%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

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

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

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

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

.section-title {
    color: #2980b9;
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 8px;
}

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

.highlight-box {
    background: #e8f4fd;
    border: 2px solid #3498db;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-weight: 500;
}

.warning-text {
    color: #e74c3c;
    font-weight: bold;
    background: #fdf2f2;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #e74c3c;
}

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

ul.terms-list li {
    margin: 8px 0;
    position: relative;
}

ul.terms-list li::marker {
    color: #3498db;
    font-weight: bold;
}

:root {
  --primary-color: hsl(76, 47%, 33%);
  --secondary-color: hsl(76, 47%, 18%);
  --accent-color: hsl(76, 47%, 58%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 3rem 0 1rem;
  margin-top: auto;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

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

#cookieNotice.show {
  transform: translateY(0);
}

#cookieNotice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

#cookieNotice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  #cookieNotice .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

:root {
            --primary-color: hsl(76, 47%, 33%);
            --secondary-color: hsl(76, 47%, 18%);
            --accent-color: hsl(76, 47%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.faq-title {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

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

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

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

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

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

.faq-question:hover {
    background: hsl(76, 47%, 58%);
    color: white;
}

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

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.faq-answer-content {
    padding: 0 30px 30px 30px;
    color: hsl(76, 47%, 18%);
    line-height: 1.7;
    font-size: 1rem;
}

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

.highlight-text {
    color: hsl(76, 47%, 33%);
    font-weight: 600;
}

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

.about-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(76, 47%, 58%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: hsl(76, 47%, 58%);
    border-radius: 2px;
}

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

.text-content {
    background: rgba(255, 255, 255, 0.95);
    color: hsl(76, 47%, 18%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 30px 0;
    backdrop-filter: blur(10px);
    border: 2px solid hsl(76, 47%, 58%);
}

.content-block {
    margin-bottom: 35px;
}

.content-block h3 {
    color: hsl(76, 47%, 33%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.content-block h3::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: hsl(76, 47%, 58%);
    font-size: 1.2rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.side-image {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid hsl(76, 47%, 58%);
    position: relative;
    overflow: hidden;
}

.side-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, hsl(76, 47%, 58%) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.side-image:hover::before {
    opacity: 0.1;
}

.side-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.image-left {
    margin-top: 80px;
}

.image-right {
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .text-content {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .side-image {
        margin: 20px 0 !important;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .text-content {
        padding: 25px 15px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.benefits-list li {
    color: hsl(76, 47%, 25%);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(76, 47%, 58%);
    font-weight: bold;
    font-size: 1.3rem;
}

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(76, 47%, 80%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(76, 47%, 58%);
    box-shadow: 0 0 0 3px rgba(118, 145, 60, 0.1);
    transform: translateY(-2px);
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(118, 145, 60, 0.3);
    background: linear-gradient(135deg, hsl(76, 47%, 63%) 0%, hsl(76, 47%, 53%) 100%);
}

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

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

.privacy-note {
    color: hsl(76, 47%, 40%);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

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

:root {
  --primary-color: hsl(76, 47%, 33%);
  --secondary-color: hsl(76, 47%, 18%);
  --accent-color: hsl(76, 47%, 58%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 3rem 0 1rem;
  margin-top: auto;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

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

#cookieNotice.show {
  transform: translateY(0);
}

#cookieNotice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

#cookieNotice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  #cookieNotice .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

:root {
            --primary-color: hsl(76, 47%, 33%);
            --secondary-color: hsl(76, 47%, 18%);
            --accent-color: hsl(76, 47%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: hsl(76, 47%, 58%);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: left;
    animation: slideInUp 1s ease-out 0.4s both;
}

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

.benefits-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2.5rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.benefits-list li:nth-child(even) {
    animation-delay: 0.8s;
}

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

.benefits-list li i {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: hsl(76, 47%, 18%);
}

.cta-buttons {
    margin-top: 3rem;
    animation: slideInUp 1s ease-out 1s both;
}

.btn-primary-custom {
    background: hsl(76, 47%, 58%);
    border: none;
    color: hsl(76, 47%, 18%);
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    margin: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-custom:hover {
    background: white;
    color: hsl(76, 47%, 18%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(76, 47%, 58%);
    color: hsl(76, 47%, 58%);
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    margin: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-custom:hover {
    background: hsl(76, 47%, 58%);
    color: hsl(76, 47%, 18%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

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

.form-control {
    border: 2px solid hsl(76, 47%, 85%);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(76, 47%, 18%);
}

.form-control:focus {
    border-color: hsl(76, 47%, 58%);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    outline: none;
}

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

.contact-info {
    color: white;
    padding: 2rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid hsl(76, 47%, 58%);
    backdrop-filter: blur(5px);
}

.info-title {
    color: hsl(76, 47%, 85%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.info-text {
    color: white;
    line-height: 1.6;
    margin-bottom: 0;
}

.submit-btn {
    background: linear-gradient(135deg, hsl(76, 47%, 58%) 0%, hsl(76, 47%, 45%) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, hsl(76, 47%, 65%) 0%, hsl(76, 47%, 52%) 100%);
}

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

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-subtitle {
    color: hsl(76, 47%, 58%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: hsl(76, 47%, 58%);
}

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

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

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(76, 47%, 58%);
    padding-top: 20px;
}

.client-name {
    font-weight: 700;
    color: hsl(76, 47%, 18%);
    font-size: 1.2rem;
}

.client-location {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.testimonial-card:nth-child(3n+1) {
    grid-row: span 1;
}

.testimonial-card:nth-child(3n+2) {
    grid-row: span 2;
}

.testimonial-card:nth-child(3n) {
    grid-row: span 1;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card:nth-child(n) {
        grid-row: span 1;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(76, 47%, 18%) 0%, hsl(76, 47%, 33%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 3rem;
}

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

.nav-tabs .nav-link:hover {
    background: hsl(76, 47%, 58%);
    color: hsl(76, 47%, 18%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: hsl(76, 47%, 58%);
    color: hsl(76, 47%, 18%);
    border-color: hsl(76, 47%, 58%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(76, 47%, 58%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(76, 47%, 58%), hsl(76, 47%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.service-title {
    color: hsl(76, 47%, 18%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(76, 47%, 33%);
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(76, 47%, 95%);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid hsl(76, 47%, 58%);
    font-size: 0.9rem;
    color: hsl(76, 47%, 25%);
}

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

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

.about-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(76, 47%, 58%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: hsl(76, 47%, 58%);
    border-radius: 2px;
}

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

.text-content {
    background: rgba(255, 255, 255, 0.95);
    color: hsl(76, 47%, 18%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 30px 0;
    backdrop-filter: blur(10px);
    border: 2px solid hsl(76, 47%, 58%);
}

.content-block {
    margin-bottom: 35px;
}

.content-block h3 {
    color: hsl(76, 47%, 33%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.content-block h3::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: hsl(76, 47%, 58%);
    font-size: 1.2rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.side-image {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid hsl(76, 47%, 58%);
    position: relative;
    overflow: hidden;
}

.side-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, hsl(76, 47%, 58%) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.side-image:hover::before {
    opacity: 0.1;
}

.side-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.image-left {
    margin-top: 80px;
}

.image-right {
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .text-content {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .side-image {
        margin: 20px 0 !important;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .text-content {
        padding: 25px 15px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.faq-title {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

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

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

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

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

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

.faq-question:hover {
    background: hsl(76, 47%, 58%);
    color: white;
}

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

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.faq-answer-content {
    padding: 0 30px 30px 30px;
    color: hsl(76, 47%, 18%);
    line-height: 1.7;
    font-size: 1rem;
}

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

.highlight-text {
    color: hsl(76, 47%, 33%);
    font-weight: 600;
}

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

.advantages-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

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

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

.section-subtitle {
    color: hsl(76, 47%, 58%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border-color: hsl(76, 47%, 58%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(76, 47%, 58%), hsl(76, 47%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.advantage-title {
    color: hsl(76, 47%, 18%);
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.benefits-list li {
    color: hsl(76, 47%, 25%);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(76, 47%, 58%);
    font-weight: bold;
    font-size: 1.3rem;
}

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(76, 47%, 80%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(76, 47%, 58%);
    box-shadow: 0 0 0 3px rgba(118, 145, 60, 0.1);
    transform: translateY(-2px);
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(118, 145, 60, 0.3);
    background: linear-gradient(135deg, hsl(76, 47%, 63%) 0%, hsl(76, 47%, 53%) 100%);
}

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

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

.privacy-note {
    color: hsl(76, 47%, 40%);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(76, 47%, 33%) 0%, hsl(76, 47%, 18%) 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="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.stat-circle {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid hsl(76, 47%, 58%);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(76, 47%, 58%), transparent, hsl(76, 47%, 58%));
    z-index: -1;
    animation: rotate 3s linear infinite;
}

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

.stat-icon {
    font-size: 2.5rem;
    color: hsl(76, 47%, 58%);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
}

.stat-item {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-circle {
        width: 150px;
        height: 150px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

:root {
  --primary-color: hsl(76, 47%, 33%);
  --secondary-color: hsl(76, 47%, 18%);
  --accent-color: hsl(76, 47%, 58%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 3rem 0 1rem;
  margin-top: auto;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

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

#cookieNotice.show {
  transform: translateY(0);
}

#cookieNotice .btn-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

#cookieNotice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  #cookieNotice .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}