:root {
            --primary-color: hsl(103, 53%, 38%);
            --secondary-color: hsl(103, 53%, 23%);
            --accent-color: hsl(103, 53%, 63%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(80deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.05);
                backdrop-filter: blur(10px);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
            }
        }

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

.about-hero {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-hero:hover img {
    transform: scale(1.05);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(98, 138, 74, 0.8), rgba(98, 138, 74, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.content-block {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(103, 53%, 38%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.block-title {
    color: hsl(103, 53%, 23%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(103, 53%, 63%);
    border-radius: 2px;
}

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

.highlight-text {
    color: hsl(103, 53%, 38%);
    font-weight: 600;
}

.image-content-block {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.image-content-block img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-content-text {
    padding: 40px;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, hsl(103, 53%, 63%) 0%, hsl(103, 53%, 38%) 100%);
    border-radius: 15px;
    color: white;
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

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

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 100%);
    padding: 100px 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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    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;
    position: relative;
    overflow: hidden;
}

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

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

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

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(103, 53%, 38%), hsl(103, 53%, 63%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

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

.advantage-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(103, 53%, 23%);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

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

.zigzag-left {
    padding-right: 3rem;
}

.zigzag-right {
    padding-left: 3rem;
}

@media (max-width: 768px) {
    .zigzag-left,
    .zigzag-right {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 2rem;
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(103, 153, 63, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(103, 153, 63, 0); }
    100% { box-shadow: 0 0 0 0 rgba(103, 153, 63, 0); }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 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.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>') repeat;
    animation: float 20s infinite linear;
}

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

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

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

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

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

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

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

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

.stat-icon {
    font-size: 3.5rem;
    color: hsl(103, 53%, 63%);
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    color: white;
    text-shadow: 0 0 20px hsl(103, 53%, 63%);
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(103, 53%, 85%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-icon {
        font-size: 2.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

:root {
  --primary-color: hsl(103, 53%, 38%);
  --secondary-color: hsl(103, 53%, 23%);
  --accent-color: hsl(103, 53%, 63%);
}

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

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

footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

footer p, footer li {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

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

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

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

footer ul li {
  margin-bottom: 8px;
  padding-left: 0;
}

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

.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: 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: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .cookie-notice .btn {
    margin: 5px 0;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(103, 53%, 38%);
            --secondary-color: hsl(103, 53%, 23%);
            --accent-color: hsl(103, 53%, 63%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(80deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.05);
                backdrop-filter: blur(10px);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
            }
        }

.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;
    text-align: center;
    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;
}

.privacy-policy h2 {
    color: #34495e;
    font-size: 1.4em;
    margin-top: 35px;
    margin-bottom: 15px;
    padding: 12px 20px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

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

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

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

.privacy-policy li::marker {
    color: #3498db;
    font-weight: bold;
}

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

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

.data-type-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #3498db;
}

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

.right-item {
    background: rgba(46, 204, 113, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #2ecc71;
}

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

:root {
  --primary-color: hsl(103, 53%, 38%);
  --secondary-color: hsl(103, 53%, 23%);
  --accent-color: hsl(103, 53%, 63%);
}

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

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

footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

footer p, footer li {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

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

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

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

footer ul li {
  margin-bottom: 8px;
  padding-left: 0;
}

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

.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: 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: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .cookie-notice .btn {
    margin: 5px 0;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(103, 53%, 38%);
            --secondary-color: hsl(103, 53%, 23%);
            --accent-color: hsl(103, 53%, 63%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(80deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.05);
                backdrop-filter: blur(10px);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
            }
        }

.cookies-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #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;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookies-policy h2 {
    color: #34495e;
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
    position: relative;
}

.cookies-policy h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #764ba2;
}

.cookies-policy h3 {
    color: #5a6c7d;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.cookies-policy li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    position: relative;
}

.cookies-policy li::marker {
    color: #667eea;
    font-weight: bold;
}

.cookie-type-box {
    background: rgba(255, 255, 255, 0.8);
    border-left: 5px solid #667eea;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.highlight-box {
    background: linear-gradient(135deg, #667eea20, #764ba220);
    border: 2px solid #667eea;
    padding: 25px;
    margin: 25px 0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.consent-notice {
    background: linear-gradient(135deg, #ff9a9e20, #fecfef20);
    border: 2px solid #ff6b6b;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    font-weight: 500;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .cookies-policy {
        padding: 20px 15px;
    }
    
    .cookies-policy h1 {
        font-size: 2rem;
    }
    
    .cookies-policy h2 {
        font-size: 1.5rem;
    }
    
    .cookies-policy p, .cookies-policy li {
        font-size: 1rem;
    }
}

:root {
  --primary-color: hsl(103, 53%, 38%);
  --secondary-color: hsl(103, 53%, 23%);
  --accent-color: hsl(103, 53%, 63%);
}

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

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

footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

footer p, footer li {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

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

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

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

footer ul li {
  margin-bottom: 8px;
  padding-left: 0;
}

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

.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: 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: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .cookie-notice .btn {
    margin: 5px 0;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(103, 53%, 38%);
            --secondary-color: hsl(103, 53%, 23%);
            --accent-color: hsl(103, 53%, 63%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(80deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.05);
                backdrop-filter: blur(10px);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
            }
        }

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 100%);
    color: white;
    position: relative;
}

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

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

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

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

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

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

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

.form-control {
    border: 2px solid hsl(103, 53%, 63%);
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(103, 53%, 23%);
}

.form-control:focus {
    border-color: hsl(103, 53%, 38%);
    box-shadow: 0 0 0 0.2rem rgba(103, 153, 76, 0.25);
    outline: none;
    background: white;
    color: hsl(103, 53%, 23%);
}

.form-control::placeholder {
    color: rgba(103, 153, 76, 0.6);
}

.submit-btn {
    background: linear-gradient(45deg, hsl(103, 53%, 38%), hsl(103, 53%, 63%));
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(103, 153, 76, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(103, 153, 76, 0.4);
    background: linear-gradient(45deg, hsl(103, 53%, 33%), hsl(103, 53%, 58%));
}

.contact-info {
    padding-left: 2rem;
}

.info-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(103, 53%, 63%);
}

.info-text {
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
}

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

.day {
    font-weight: 600;
}

.time {
    color: hsl(103, 53%, 63%);
}

@media (max-width: 768px) {
    .contact-info {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

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

.about-hero {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-hero:hover img {
    transform: scale(1.05);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(98, 138, 74, 0.8), rgba(98, 138, 74, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.content-block {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(103, 53%, 38%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.block-title {
    color: hsl(103, 53%, 23%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(103, 53%, 63%);
    border-radius: 2px;
}

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

.highlight-text {
    color: hsl(103, 53%, 38%);
    font-weight: 600;
}

.image-content-block {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.image-content-block img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-content-text {
    padding: 40px;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, hsl(103, 53%, 63%) 0%, hsl(103, 53%, 38%) 100%);
    border-radius: 15px;
    color: white;
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

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

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

:root {
  --primary-color: hsl(103, 53%, 38%);
  --secondary-color: hsl(103, 53%, 23%);
  --accent-color: hsl(103, 53%, 63%);
}

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

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

footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

footer p, footer li {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

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

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

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

footer ul li {
  margin-bottom: 8px;
  padding-left: 0;
}

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

.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: 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: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .cookie-notice .btn {
    margin: 5px 0;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(103, 53%, 38%);
            --secondary-color: hsl(103, 53%, 23%);
            --accent-color: hsl(103, 53%, 63%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(80deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.05);
                backdrop-filter: blur(10px);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-subtitle {
    color: hsl(103, 53%, 63%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: hsl(103, 53%, 63%);
    box-shadow: 0 25px 50px rgba(103, 53, 38, 0.2);
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(103, 53%, 38%), hsl(103, 53%, 63%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(103, 53%, 63%), hsl(103, 53%, 23%));
}

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

.service-title {
    color: hsl(103, 53%, 23%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-price {
    color: hsl(103, 53%, 38%);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-conditions {
    background: hsl(103, 53%, 95%);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: hsl(103, 53%, 23%);
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 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 {
    position: relative;
    z-index: 2;
}

.newsletter-content {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    text-align: left;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    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: 2rem;
    margin-bottom: 1rem;
    color: hsl(103, 53%, 63%);
}

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

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.newsletter-form {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-top: 3rem;
    backdrop-filter: blur(20px);
}

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

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid hsl(103, 53%, 63%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    color: hsl(103, 53%, 23%);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: hsl(103, 53%, 38%);
    box-shadow: 0 0 0 4px rgba(103, 158, 73, 0.2);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: hsl(103, 53%, 50%);
    opacity: 0.7;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(103, 53%, 38%), hsl(103, 53%, 63%));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(103, 158, 73, 0.4);
    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 ease;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(103, 158, 73, 0.6);
    background: linear-gradient(45deg, hsl(103, 53%, 45%), hsl(103, 53%, 70%));
}

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

.form-disclaimer {
    font-size: 0.85rem;
    color: hsl(103, 53%, 40%);
    margin-top: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
    }
    
    .subscribe-btn {
        width: 100%;
        padding: 1.2rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: hsl(103, 53%, 83%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(103, 53%, 63%), hsl(103, 53%, 38%));
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(103, 53%, 63%);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

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

.client-name {
    font-weight: 700;
    color: hsl(103, 53%, 23%);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
}

:root {
  --primary-color: hsl(103, 53%, 38%);
  --secondary-color: hsl(103, 53%, 23%);
  --accent-color: hsl(103, 53%, 63%);
}

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

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

footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

footer p, footer li {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

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

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

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

footer ul li {
  margin-bottom: 8px;
  padding-left: 0;
}

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

.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: 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: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .cookie-notice .btn {
    margin: 5px 0;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(103, 53%, 38%);
            --secondary-color: hsl(103, 53%, 23%);
            --accent-color: hsl(103, 53%, 63%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(80deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.05);
                backdrop-filter: blur(10px);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
            }
        }

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

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

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

.section-title {
    color: #6a4c93;
    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, #f8d7da 0%, #f5c6cb 100%);
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.important-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    font-weight: 500;
}

.list-item {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.list-item:before {
    content: "●";
    color: #8b5a8c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

:root {
  --primary-color: hsl(103, 53%, 38%);
  --secondary-color: hsl(103, 53%, 23%);
  --accent-color: hsl(103, 53%, 63%);
}

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

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

footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

footer p, footer li {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

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

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

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

footer ul li {
  margin-bottom: 8px;
  padding-left: 0;
}

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

.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: 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: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .cookie-notice .btn {
    margin: 5px 0;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(103, 53%, 38%);
            --secondary-color: hsl(103, 53%, 23%);
            --accent-color: hsl(103, 53%, 63%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(80deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.05);
                backdrop-filter: blur(10px);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.faq-subtitle {
    color: hsl(103, 53%, 63%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.accordion-button {
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(103, 53%, 23%);
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(103, 53%, 63%) 0%, hsl(103, 53%, 38%) 100%);
    color: white;
    box-shadow: none;
}

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

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

.accordion-body {
    padding: 0 2rem 1.5rem 2rem;
    color: hsl(103, 53%, 23%);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-highlight {
    background: linear-gradient(120deg, hsl(103, 53%, 63%) 0%, transparent 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
}

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

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

.about-hero {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-hero:hover img {
    transform: scale(1.05);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(98, 138, 74, 0.8), rgba(98, 138, 74, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.content-block {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(103, 53%, 38%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.block-title {
    color: hsl(103, 53%, 23%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(103, 53%, 63%);
    border-radius: 2px;
}

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

.highlight-text {
    color: hsl(103, 53%, 38%);
    font-weight: 600;
}

.image-content-block {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.image-content-block img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-content-text {
    padding: 40px;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, hsl(103, 53%, 63%) 0%, hsl(103, 53%, 38%) 100%);
    border-radius: 15px;
    color: white;
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

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

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 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 {
    position: relative;
    z-index: 2;
}

.newsletter-content {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    text-align: left;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    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: 2rem;
    margin-bottom: 1rem;
    color: hsl(103, 53%, 63%);
}

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

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.newsletter-form {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-top: 3rem;
    backdrop-filter: blur(20px);
}

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

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid hsl(103, 53%, 63%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    color: hsl(103, 53%, 23%);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: hsl(103, 53%, 38%);
    box-shadow: 0 0 0 4px rgba(103, 158, 73, 0.2);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: hsl(103, 53%, 50%);
    opacity: 0.7;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(103, 53%, 38%), hsl(103, 53%, 63%));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(103, 158, 73, 0.4);
    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 ease;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(103, 158, 73, 0.6);
    background: linear-gradient(45deg, hsl(103, 53%, 45%), hsl(103, 53%, 70%));
}

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

.form-disclaimer {
    font-size: 0.85rem;
    color: hsl(103, 53%, 40%);
    margin-top: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
    }
    
    .subscribe-btn {
        width: 100%;
        padding: 1.2rem;
    }
}

:root {
  --primary-color: hsl(103, 53%, 38%);
  --secondary-color: hsl(103, 53%, 23%);
  --accent-color: hsl(103, 53%, 63%);
}

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

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

footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

footer p, footer li {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

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

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

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

footer ul li {
  margin-bottom: 8px;
  padding-left: 0;
}

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

.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: 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: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .cookie-notice .btn {
    margin: 5px 0;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(103, 53%, 38%);
            --secondary-color: hsl(103, 53%, 23%);
            --accent-color: hsl(103, 53%, 63%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(80deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.05);
                backdrop-filter: blur(10px);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

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

.hero-section h2 {
    font-size: 1.5rem;
    color: hsl(103, 53%, 63%);
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.benefits-list li {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.benefits-list li i {
    color: hsl(103, 53%, 63%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: hsl(103, 53%, 63%);
    border: none;
    color: hsl(103, 53%, 23%);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
    background: white;
    color: hsl(103, 53%, 23%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

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

.btn-secondary-custom:hover {
    background: hsl(103, 53%, 63%);
    color: hsl(103, 53%, 23%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.3rem;
    }
    
    .hero-image {
        margin-top: 3rem;
        transform: none;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

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

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 100%);
    color: white;
    position: relative;
}

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

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

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

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

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

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

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

.form-control {
    border: 2px solid hsl(103, 53%, 63%);
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(103, 53%, 23%);
}

.form-control:focus {
    border-color: hsl(103, 53%, 38%);
    box-shadow: 0 0 0 0.2rem rgba(103, 153, 76, 0.25);
    outline: none;
    background: white;
    color: hsl(103, 53%, 23%);
}

.form-control::placeholder {
    color: rgba(103, 153, 76, 0.6);
}

.submit-btn {
    background: linear-gradient(45deg, hsl(103, 53%, 38%), hsl(103, 53%, 63%));
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(103, 153, 76, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(103, 153, 76, 0.4);
    background: linear-gradient(45deg, hsl(103, 53%, 33%), hsl(103, 53%, 58%));
}

.contact-info {
    padding-left: 2rem;
}

.info-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(103, 53%, 63%);
}

.info-text {
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
}

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

.day {
    font-weight: 600;
}

.time {
    color: hsl(103, 53%, 63%);
}

@media (max-width: 768px) {
    .contact-info {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-subtitle {
    color: hsl(103, 53%, 63%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: hsl(103, 53%, 63%);
    box-shadow: 0 25px 50px rgba(103, 53, 38, 0.2);
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(103, 53%, 38%), hsl(103, 53%, 63%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(103, 53%, 63%), hsl(103, 53%, 23%));
}

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

.service-title {
    color: hsl(103, 53%, 23%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-price {
    color: hsl(103, 53%, 38%);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-conditions {
    background: hsl(103, 53%, 95%);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: hsl(103, 53%, 23%);
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.faq-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.faq-subtitle {
    color: hsl(103, 53%, 63%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.accordion-button {
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(103, 53%, 23%);
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(103, 53%, 63%) 0%, hsl(103, 53%, 38%) 100%);
    color: white;
    box-shadow: none;
}

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

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

.accordion-body {
    padding: 0 2rem 1.5rem 2rem;
    color: hsl(103, 53%, 23%);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-highlight {
    background: linear-gradient(120deg, hsl(103, 53%, 63%) 0%, transparent 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 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.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>') repeat;
    animation: float 20s infinite linear;
}

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

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

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

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

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

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

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

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

.stat-icon {
    font-size: 3.5rem;
    color: hsl(103, 53%, 63%);
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    color: white;
    text-shadow: 0 0 20px hsl(103, 53%, 63%);
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(103, 53%, 85%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-icon {
        font-size: 2.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 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 {
    position: relative;
    z-index: 2;
}

.newsletter-content {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    text-align: left;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    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: 2rem;
    margin-bottom: 1rem;
    color: hsl(103, 53%, 63%);
}

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

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.newsletter-form {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-top: 3rem;
    backdrop-filter: blur(20px);
}

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

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid hsl(103, 53%, 63%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    color: hsl(103, 53%, 23%);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: hsl(103, 53%, 38%);
    box-shadow: 0 0 0 4px rgba(103, 158, 73, 0.2);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: hsl(103, 53%, 50%);
    opacity: 0.7;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(103, 53%, 38%), hsl(103, 53%, 63%));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(103, 158, 73, 0.4);
    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 ease;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(103, 158, 73, 0.6);
    background: linear-gradient(45deg, hsl(103, 53%, 45%), hsl(103, 53%, 70%));
}

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

.form-disclaimer {
    font-size: 0.85rem;
    color: hsl(103, 53%, 40%);
    margin-top: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
    }
    
    .subscribe-btn {
        width: 100%;
        padding: 1.2rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: hsl(103, 53%, 83%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(103, 53%, 63%), hsl(103, 53%, 38%));
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(103, 53%, 63%);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

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

.client-name {
    font-weight: 700;
    color: hsl(103, 53%, 23%);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(103, 53%, 38%) 0%, hsl(103, 53%, 23%) 100%);
    padding: 100px 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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    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;
    position: relative;
    overflow: hidden;
}

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

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

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

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(103, 53%, 38%), hsl(103, 53%, 63%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

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

.advantage-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(103, 53%, 23%);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

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

.zigzag-left {
    padding-right: 3rem;
}

.zigzag-right {
    padding-left: 3rem;
}

@media (max-width: 768px) {
    .zigzag-left,
    .zigzag-right {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 2rem;
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(103, 153, 63, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(103, 153, 63, 0); }
    100% { box-shadow: 0 0 0 0 rgba(103, 153, 63, 0); }
}

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

.about-hero {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-hero:hover img {
    transform: scale(1.05);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(98, 138, 74, 0.8), rgba(98, 138, 74, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.content-block {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(103, 53%, 38%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.block-title {
    color: hsl(103, 53%, 23%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(103, 53%, 63%);
    border-radius: 2px;
}

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

.highlight-text {
    color: hsl(103, 53%, 38%);
    font-weight: 600;
}

.image-content-block {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.image-content-block img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-content-text {
    padding: 40px;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, hsl(103, 53%, 63%) 0%, hsl(103, 53%, 38%) 100%);
    border-radius: 15px;
    color: white;
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

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

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

:root {
  --primary-color: hsl(103, 53%, 38%);
  --secondary-color: hsl(103, 53%, 23%);
  --accent-color: hsl(103, 53%, 63%);
}

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

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

footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

footer p, footer li {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

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

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

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

footer ul li {
  margin-bottom: 8px;
  padding-left: 0;
}

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

.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: 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: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .cookie-notice .btn {
    margin: 5px 0;
    width: 100%;
  }
}