:root {
            --primary-color: hsl(102, 55%, 40%);
            --secondary-color: hsl(102, 55%, 25%);
            --accent-color: hsl(102, 55%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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: 0.75rem;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    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="25" cy="25" r="1" fill="rgba(102,153,102,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(102,153,102,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(102, 55%, 25%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(102, 55%, 30%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.content-block {
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.content-block:last-child {
    margin-bottom: 0;
}

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

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

.block-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsl(102, 55%, 25%);
    margin-bottom: 25px;
    position: relative;
}

.block-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60px;
    background: linear-gradient(180deg, hsl(102, 55%, 40%), hsl(102, 55%, 65%));
    border-radius: 3px;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.block-text:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: hsl(102, 55%, 40%);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, hsl(102, 55%, 65%), transparent);
}

.mission-values {
    background: linear-gradient(135deg, hsl(102, 55%, 40%), hsl(102, 55%, 25%));
    color: white;
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.mission-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

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

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

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

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 30px 20px;
        margin-bottom: 50px;
    }
    
    .block-title {
        font-size: 2rem;
    }
    
    .block-title::before {
        display: none;
    }
    
    .mission-values {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .mission-title {
        font-size: 2.2rem;
    }
    
    .block-image {
        height: 250px;
        margin-bottom: 30px;
    }
}

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

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

.section-title {
    color: white;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(102, 55%, 65%), hsl(102, 55%, 85%));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.timeline-item {
    position: relative;
    margin: 40px 0;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

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

.timeline-item:nth-child(3n) {
    animation-delay: 0.3s;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 60px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.timeline-item:nth-child(odd) .advantage-card {
    margin-left: 60px;
    margin-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) .advantage-card {
    margin-right: 60px;
    margin-left: calc(50% + 40px);
}

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

.advantage-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(102, 55%, 65%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.timeline-item:nth-child(odd) .advantage-card::before {
    right: -70px;
}

.timeline-item:nth-child(even) .advantage-card::before {
    left: -70px;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(102, 55%, 40%), hsl(102, 55%, 65%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

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

.advantage-title {
    color: hsl(102, 55%, 25%);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

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

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

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .advantage-card,
    .timeline-item:nth-child(even) .advantage-card {
        margin-left: 80px;
        margin-right: 20px;
    }
    
    .timeline-item:nth-child(odd) .advantage-card::before,
    .timeline-item:nth-child(even) .advantage-card::before {
        left: -70px;
        right: auto;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

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

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

.stats-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(102, 55%, 65%) 0%, rgba(255,255,255,0.2) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 4px solid rgba(255,255,255,0.3);
}

.stats-circle:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

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

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

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 5px;
}

.stats-icon {
    font-size: 2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

.stats-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.stats-row {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .stats-circle {
        width: 150px;
        height: 150px;
        margin-bottom: 40px;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

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

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

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

footer a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-color);
}

footer .company-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
}

footer .contact-info p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

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

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

footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #d0d0d0;
  font-size: 0.85rem;
}

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

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

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

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

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

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

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

:root {
            --primary-color: hsl(102, 55%, 40%);
            --secondary-color: hsl(102, 55%, 25%);
            --accent-color: hsl(102, 55%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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: 0.75rem;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

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

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

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

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

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

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

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

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

.important-notice {
    background: rgba(231, 76, 60, 0.1);
    border-left: 5px solid #e74c3c;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    font-weight: 500;
}

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

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

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

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

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

footer a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-color);
}

footer .company-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
}

footer .contact-info p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

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

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

footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #d0d0d0;
  font-size: 0.85rem;
}

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

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

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

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

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

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

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

:root {
            --primary-color: hsl(102, 55%, 40%);
            --secondary-color: hsl(102, 55%, 25%);
            --accent-color: hsl(102, 55%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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: 0.75rem;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

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

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

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

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

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

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

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

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

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

.cookie-type h3 {
    color: #fff;
    margin-top: 0;
    font-size: 1.4em;
}

.highlight-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border: 2px solid #ff9a56;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 5px 20px rgba(255, 154, 86, 0.3);
}

.consent-notice {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-left: 6px solid #17a2b8;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.2);
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #bdc3c7;
    background: rgba(255,255,255,0.6);
    padding: 20px;
    border-radius: 8px;
}

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

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

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

footer a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-color);
}

footer .company-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
}

footer .contact-info p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

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

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

footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #d0d0d0;
  font-size: 0.85rem;
}

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

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

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

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

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

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

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

:root {
            --primary-color: hsl(102, 55%, 40%);
            --secondary-color: hsl(102, 55%, 25%);
            --accent-color: hsl(102, 55%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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: 0.75rem;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

.contact-section {
    background: linear-gradient(135deg, hsl(102, 55%, 40%) 0%, hsl(102, 55%, 25%) 100%);
    padding: 80px 0;
    color: white;
}

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

.contact-form h3 {
    color: hsl(102, 55%, 25%);
    font-weight: 700;
    margin-bottom: 30px;
}

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

.form-label {
    color: hsl(102, 55%, 25%);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 2px solid hsl(102, 55%, 65%);
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: hsl(102, 55%, 25%);
}

.form-control:focus {
    border-color: hsl(102, 55%, 40%);
    box-shadow: 0 0 0 0.2rem rgba(102, 153, 76, 0.25);
    outline: none;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(102, 55%, 40%), hsl(102, 55%, 65%));
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 153, 76, 0.4);
    background: linear-gradient(45deg, hsl(102, 55%, 35%), hsl(102, 55%, 60%));
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.consultation-process {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.step-number {
    background: hsl(102, 55%, 65%);
    color: hsl(102, 55%, 25%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.working-hours h4 {
    color: hsl(102, 55%, 65%);
    margin-bottom: 15px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        margin-bottom: 40px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}

.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    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="25" cy="25" r="1" fill="rgba(102,153,102,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(102,153,102,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(102, 55%, 25%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(102, 55%, 30%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.content-block {
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.content-block:last-child {
    margin-bottom: 0;
}

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

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

.block-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsl(102, 55%, 25%);
    margin-bottom: 25px;
    position: relative;
}

.block-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60px;
    background: linear-gradient(180deg, hsl(102, 55%, 40%), hsl(102, 55%, 65%));
    border-radius: 3px;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.block-text:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: hsl(102, 55%, 40%);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, hsl(102, 55%, 65%), transparent);
}

.mission-values {
    background: linear-gradient(135deg, hsl(102, 55%, 40%), hsl(102, 55%, 25%));
    color: white;
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.mission-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

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

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

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

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 30px 20px;
        margin-bottom: 50px;
    }
    
    .block-title {
        font-size: 2rem;
    }
    
    .block-title::before {
        display: none;
    }
    
    .mission-values {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .mission-title {
        font-size: 2.2rem;
    }
    
    .block-image {
        height: 250px;
        margin-bottom: 30px;
    }
}

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

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

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

footer a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-color);
}

footer .company-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
}

footer .contact-info p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

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

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

footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #d0d0d0;
  font-size: 0.85rem;
}

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

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

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

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

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

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

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

:root {
            --primary-color: hsl(102, 55%, 40%);
            --secondary-color: hsl(102, 55%, 25%);
            --accent-color: hsl(102, 55%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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: 0.75rem;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

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

.services-title {
    color: hsl(102, 55%, 25%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(102, 55%, 40%);
    border-radius: 2px;
}

.services-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 155, 65, 0.2);
    border-color: hsl(102, 55%, 65%);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(102, 55%, 40%);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(102, 55%, 25%);
    transform: scale(1.1);
}

.service-title {
    color: hsl(102, 55%, 25%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

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

.service-price {
    background: linear-gradient(135deg, hsl(102, 55%, 40%), hsl(102, 55%, 65%));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(102, 155, 65, 0.3);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #495057;
    margin-bottom: 8px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(102, 55%, 40%);
    font-weight: bold;
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    
    .services-section {
        padding: 60px 0;
    }
}

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

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

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

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

.newsletter-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

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

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

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(102, 55%, 65%);
}

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

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

.newsletter-form {
    background: rgba(255,255,255,0.15);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: 0 auto;
}

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

.email-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    color: hsl(102, 55%, 25%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(102, 55%, 65%);
    box-shadow: 0 0 0 4px rgba(102, 167, 75, 0.2);
    transform: scale(1.02);
}

.email-input::placeholder {
    color: rgba(102, 167, 75, 0.7);
    font-weight: 400;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(102, 55%, 65%) 0%, hsl(102, 55%, 40%) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    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.3), transparent);
    transition: left 0.5s;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(102, 55%, 70%) 0%, hsl(102, 55%, 45%) 100%);
}

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

.form-disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

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

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

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

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left: 5px solid hsl(102, 55%, 65%);
    transition: transform 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateX(10px);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: hsl(102, 55%, 65%);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author-info h5 {
    margin: 0;
    color: hsl(102, 55%, 25%);
    font-weight: 600;
    font-size: 18px;
}

.author-location {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.stars {
    color: #ffc107;
    font-size: 18px;
}

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

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

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

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 25px;
    }
    
    .testimonials-container {
        height: 500px;
    }
}

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

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

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

footer a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-color);
}

footer .company-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
}

footer .contact-info p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

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

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

footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #d0d0d0;
  font-size: 0.85rem;
}

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

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

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

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

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

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

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

:root {
            --primary-color: hsl(102, 55%, 40%);
            --secondary-color: hsl(102, 55%, 25%);
            --accent-color: hsl(102, 55%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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: 0.75rem;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

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

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

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

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

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

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

.important-note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
}

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

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

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

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

footer a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-color);
}

footer .company-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
}

footer .contact-info p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

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

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

footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #d0d0d0;
  font-size: 0.85rem;
}

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

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

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

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

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

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

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

:root {
            --primary-color: hsl(102, 55%, 40%);
            --secondary-color: hsl(102, 55%, 25%);
            --accent-color: hsl(102, 55%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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: 0.75rem;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

.faq-section {
    background: linear-gradient(135deg, hsl(102, 55%, 40%) 0%, hsl(102, 55%, 25%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(102, 55%, 85%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.faq-tab:hover, .faq-tab.active {
    background: hsl(102, 55%, 65%);
    border-color: hsl(102, 55%, 65%);
    color: hsl(102, 55%, 15%);
    transform: translateY(-2px);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .faq-question, .faq-answer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    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="25" cy="25" r="1" fill="rgba(102,153,102,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(102,153,102,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(102, 55%, 25%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(102, 55%, 30%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.content-block {
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.content-block:last-child {
    margin-bottom: 0;
}

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

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

.block-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsl(102, 55%, 25%);
    margin-bottom: 25px;
    position: relative;
}

.block-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60px;
    background: linear-gradient(180deg, hsl(102, 55%, 40%), hsl(102, 55%, 65%));
    border-radius: 3px;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.block-text:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: hsl(102, 55%, 40%);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, hsl(102, 55%, 65%), transparent);
}

.mission-values {
    background: linear-gradient(135deg, hsl(102, 55%, 40%), hsl(102, 55%, 25%));
    color: white;
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.mission-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

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

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

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

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 30px 20px;
        margin-bottom: 50px;
    }
    
    .block-title {
        font-size: 2rem;
    }
    
    .block-title::before {
        display: none;
    }
    
    .mission-values {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .mission-title {
        font-size: 2.2rem;
    }
    
    .block-image {
        height: 250px;
        margin-bottom: 30px;
    }
}

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

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

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

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

.newsletter-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

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

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

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(102, 55%, 65%);
}

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

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

.newsletter-form {
    background: rgba(255,255,255,0.15);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: 0 auto;
}

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

.email-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    color: hsl(102, 55%, 25%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(102, 55%, 65%);
    box-shadow: 0 0 0 4px rgba(102, 167, 75, 0.2);
    transform: scale(1.02);
}

.email-input::placeholder {
    color: rgba(102, 167, 75, 0.7);
    font-weight: 400;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(102, 55%, 65%) 0%, hsl(102, 55%, 40%) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    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.3), transparent);
    transition: left 0.5s;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(102, 55%, 70%) 0%, hsl(102, 55%, 45%) 100%);
}

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

.form-disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

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

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

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

footer a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-color);
}

footer .company-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
}

footer .contact-info p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

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

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

footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #d0d0d0;
  font-size: 0.85rem;
}

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

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

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

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

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

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

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

:root {
            --primary-color: hsl(102, 55%, 40%);
            --secondary-color: hsl(102, 55%, 25%);
            --accent-color: hsl(102, 55%, 65%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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: 0.75rem;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 100px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: hsl(102, 55%, 85%);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 2rem 0;
}

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

.benefits-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2.5rem;
}

.benefits-list li::before {
    content: '\f00c';
    font-family: 'Bootstrap Icons';
    position: absolute;
    left: 0;
    color: hsl(102, 55%, 65%);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-buttons {
    margin-top: 3rem;
}

.btn-primary-custom {
    background: hsl(102, 55%, 65%);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 0 10px 15px 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: hsl(102, 55%, 15%);
}

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

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(102, 55%, 65%);
    padding: 13px 33px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 0 10px 15px 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: hsl(102, 55%, 65%);
}

.btn-secondary-custom:hover {
    background: hsl(102, 55%, 65%);
    color: hsl(102, 55%, 15%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-content {
        padding: 60px 0;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        margin: 10px auto;
        width: 80%;
        text-align: center;
    }
}

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

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

.section-title {
    color: white;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(102, 55%, 65%), hsl(102, 55%, 85%));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.timeline-item {
    position: relative;
    margin: 40px 0;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

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

.timeline-item:nth-child(3n) {
    animation-delay: 0.3s;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 60px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.timeline-item:nth-child(odd) .advantage-card {
    margin-left: 60px;
    margin-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) .advantage-card {
    margin-right: 60px;
    margin-left: calc(50% + 40px);
}

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

.advantage-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(102, 55%, 65%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.timeline-item:nth-child(odd) .advantage-card::before {
    right: -70px;
}

.timeline-item:nth-child(even) .advantage-card::before {
    left: -70px;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(102, 55%, 40%), hsl(102, 55%, 65%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

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

.advantage-title {
    color: hsl(102, 55%, 25%);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

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

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

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .advantage-card,
    .timeline-item:nth-child(even) .advantage-card {
        margin-left: 80px;
        margin-right: 20px;
    }
    
    .timeline-item:nth-child(odd) .advantage-card::before,
    .timeline-item:nth-child(even) .advantage-card::before {
        left: -70px;
        right: auto;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(102, 55%, 40%) 0%, hsl(102, 55%, 25%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(102, 55%, 85%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.faq-tab:hover, .faq-tab.active {
    background: hsl(102, 55%, 65%);
    border-color: hsl(102, 55%, 65%);
    color: hsl(102, 55%, 15%);
    transform: translateY(-2px);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .faq-question, .faq-answer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

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

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

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

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left: 5px solid hsl(102, 55%, 65%);
    transition: transform 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateX(10px);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: hsl(102, 55%, 65%);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author-info h5 {
    margin: 0;
    color: hsl(102, 55%, 25%);
    font-weight: 600;
    font-size: 18px;
}

.author-location {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.stars {
    color: #ffc107;
    font-size: 18px;
}

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

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

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

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 25px;
    }
    
    .testimonials-container {
        height: 500px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(102, 55%, 40%) 0%, hsl(102, 55%, 25%) 100%);
    padding: 80px 0;
    color: white;
}

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

.contact-form h3 {
    color: hsl(102, 55%, 25%);
    font-weight: 700;
    margin-bottom: 30px;
}

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

.form-label {
    color: hsl(102, 55%, 25%);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 2px solid hsl(102, 55%, 65%);
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: hsl(102, 55%, 25%);
}

.form-control:focus {
    border-color: hsl(102, 55%, 40%);
    box-shadow: 0 0 0 0.2rem rgba(102, 153, 76, 0.25);
    outline: none;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(102, 55%, 40%), hsl(102, 55%, 65%));
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 153, 76, 0.4);
    background: linear-gradient(45deg, hsl(102, 55%, 35%), hsl(102, 55%, 60%));
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.consultation-process {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.step-number {
    background: hsl(102, 55%, 65%);
    color: hsl(102, 55%, 25%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.working-hours h4 {
    color: hsl(102, 55%, 65%);
    margin-bottom: 15px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        margin-bottom: 40px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}

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

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

.stats-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(102, 55%, 65%) 0%, rgba(255,255,255,0.2) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 4px solid rgba(255,255,255,0.3);
}

.stats-circle:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

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

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

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 5px;
}

.stats-icon {
    font-size: 2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

.stats-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.stats-row {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .stats-circle {
        width: 150px;
        height: 150px;
        margin-bottom: 40px;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

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

.services-title {
    color: hsl(102, 55%, 25%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(102, 55%, 40%);
    border-radius: 2px;
}

.services-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 155, 65, 0.2);
    border-color: hsl(102, 55%, 65%);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(102, 55%, 40%);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(102, 55%, 25%);
    transform: scale(1.1);
}

.service-title {
    color: hsl(102, 55%, 25%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

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

.service-price {
    background: linear-gradient(135deg, hsl(102, 55%, 40%), hsl(102, 55%, 65%));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(102, 155, 65, 0.3);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #495057;
    margin-bottom: 8px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(102, 55%, 40%);
    font-weight: bold;
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    
    .services-section {
        padding: 60px 0;
    }
}

.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    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="25" cy="25" r="1" fill="rgba(102,153,102,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(102,153,102,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(102, 55%, 25%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(102, 55%, 30%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.content-block {
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.content-block:last-child {
    margin-bottom: 0;
}

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

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

.block-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsl(102, 55%, 25%);
    margin-bottom: 25px;
    position: relative;
}

.block-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60px;
    background: linear-gradient(180deg, hsl(102, 55%, 40%), hsl(102, 55%, 65%));
    border-radius: 3px;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.block-text:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: hsl(102, 55%, 40%);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, hsl(102, 55%, 65%), transparent);
}

.mission-values {
    background: linear-gradient(135deg, hsl(102, 55%, 40%), hsl(102, 55%, 25%));
    color: white;
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.mission-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

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

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

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

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 30px 20px;
        margin-bottom: 50px;
    }
    
    .block-title {
        font-size: 2rem;
    }
    
    .block-title::before {
        display: none;
    }
    
    .mission-values {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .mission-title {
        font-size: 2.2rem;
    }
    
    .block-image {
        height: 250px;
        margin-bottom: 30px;
    }
}

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

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

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

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

.newsletter-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

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

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

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(102, 55%, 65%);
}

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

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

.newsletter-form {
    background: rgba(255,255,255,0.15);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: 0 auto;
}

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

.email-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    color: hsl(102, 55%, 25%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(102, 55%, 65%);
    box-shadow: 0 0 0 4px rgba(102, 167, 75, 0.2);
    transform: scale(1.02);
}

.email-input::placeholder {
    color: rgba(102, 167, 75, 0.7);
    font-weight: 400;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(102, 55%, 65%) 0%, hsl(102, 55%, 40%) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    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.3), transparent);
    transition: left 0.5s;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(102, 55%, 70%) 0%, hsl(102, 55%, 45%) 100%);
}

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

.form-disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

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

footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

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

footer a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-color);
}

footer .company-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
}

footer .contact-info p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

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

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

footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #d0d0d0;
  font-size: 0.85rem;
}

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

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

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

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

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

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

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