:root {
            --primary: hsl(79, 58%, 47%);
            --secondary: hsl(79, 58%, 32%);
            --accent: hsl(79, 58%, 72%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .navbar-nav .nav-link:hover, 
        .navbar-nav .nav-link:focus {
            color: var(--secondary);
            background-color: var(--accent);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                margin: 0.25rem 0;
            }
        }
        
        .company-name {
            font-size: 1.5rem;
            letter-spacing: 0.5px;
        }

.about-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .about-title {
    font-size: 2.5rem;
    color: hsl(79, 58%, 32%);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
  }
  
  .about-subtitle {
    font-size: 1.8rem;
    color: hsl(79, 58%, 47%);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
  }
  
  .about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
  }
  
  .about-card {
    background-color: hsla(79, 58%, 95%, 0.5);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid hsl(79, 58%, 47%);
  }
  
  .about-highlight {
    color: hsl(79, 58%, 32%);
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .about-section {
      padding: 40px 0;
    }
    
    .about-title {
      font-size: 2rem;
    }
    
    .about-subtitle {
      font-size: 1.5rem;
    }
  }

.advantages-section {
    padding: 5rem 0;
    background-color: #fff;
}

.advantages-section h2 {
    color: hsl(79, 58%, 32%);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

.advantages-section h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: hsl(79, 58%, 47%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.advantage-card {
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: hsl(79, 58%, 47%);
}

.advantage-icon {
    background-color: hsl(79, 58%, 72%);
    color: hsl(79, 58%, 32%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background-color: hsl(79, 58%, 47%);
    color: white;
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(79, 58%, 32%);
    margin-bottom: 1rem;
}

.advantage-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .advantage-card {
        margin-bottom: 30px;
    }
}

.statistics-section {
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .statistics-section h2 {
        color: hsl(79, 58%, 32%);
        font-weight: 700;
        margin-bottom: 3rem;
        position: relative;
    }
    
    .statistics-section h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(79, 58%, 47%);
    }
    
    .stat-circle {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 10px solid hsl(79, 58%, 72%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto 1.5rem;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .stat-circle:hover {
        transform: scale(1.05);
        border-color: hsl(79, 58%, 47%);
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: hsl(79, 58%, 32%);
        margin-bottom: 0;
    }
    
    .stat-icon {
        font-size: 2rem;
        color: hsl(79, 58%, 47%);
        margin-bottom: 0.5rem;
    }
    
    .stat-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #333;
        text-align: center;
    }
    
    .stat-description {
        font-size: 0.9rem;
        color: #666;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    @media (max-width: 768px) {
        .stat-circle {
            width: 120px;
            height: 120px;
            border-width: 8px;
        }
        .stat-number {
            font-size: 1.8rem;
        }
        .stat-icon {
            font-size: 1.5rem;
        }
    }

:root {
    --primary-color: hsl(79, 58%, 47%);
    --secondary-color: hsl(79, 58%, 32%);
    --accent-color: hsl(79, 58%, 72%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-learn {
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(79, 58%, 47%);
            --secondary: hsl(79, 58%, 32%);
            --accent: hsl(79, 58%, 72%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .navbar-nav .nav-link:hover, 
        .navbar-nav .nav-link:focus {
            color: var(--secondary);
            background-color: var(--accent);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                margin: 0.25rem 0;
            }
        }
        
        .company-name {
            font-size: 1.5rem;
            letter-spacing: 0.5px;
        }

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}
.privacy-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #4a7c59;
}
.privacy-title {
    color: #2c5545;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.privacy-date {
    color: #666;
    font-style: italic;
}
.privacy-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.privacy-section h2 {
    color: #2c5545;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.privacy-section h3 {
    color: #4a7c59;
    margin: 1.5rem 0 0.75rem;
}
.privacy-section ul {
    padding-left: 1.5rem;
}
.privacy-section li {
    margin-bottom: 0.5rem;
}
.privacy-emphasis {
    font-weight: bold;
    color: #2c5545;
}

:root {
    --primary-color: hsl(79, 58%, 47%);
    --secondary-color: hsl(79, 58%, 32%);
    --accent-color: hsl(79, 58%, 72%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-learn {
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(79, 58%, 47%);
            --secondary: hsl(79, 58%, 32%);
            --accent: hsl(79, 58%, 72%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .navbar-nav .nav-link:hover, 
        .navbar-nav .nav-link:focus {
            color: var(--secondary);
            background-color: var(--accent);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                margin: 0.25rem 0;
            }
        }
        
        .company-name {
            font-size: 1.5rem;
            letter-spacing: 0.5px;
        }

.cookies-policy {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
    line-height: 1.6;
  }
  
  .cookies-policy h1 {
    color: #1a5276;
    font-size: 2.2em;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
  }
  
  .cookies-policy h2 {
    color: #2874a6;
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    padding-left: 10px;
  }
  
  .cookies-policy p {
    margin-bottom: 15px;
    text-align: justify;
  }
  
  .cookies-policy ul {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  
  .cookies-policy li {
    margin-bottom: 8px;
  }
  
  .cookies-policy .highlight {
    background-color: #eaf2f8;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #3498db;
    margin: 20px 0;
  }
  
  .cookies-policy table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
  }
  
  .cookies-policy th, .cookies-policy td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
  }
  
  .cookies-policy th {
    background-color: #f2f9ff;
    color: #2874a6;
  }
  
  .cookies-policy tr:nth-child(even) {
    background-color: #f9f9f9;
  }

:root {
    --primary-color: hsl(79, 58%, 47%);
    --secondary-color: hsl(79, 58%, 32%);
    --accent-color: hsl(79, 58%, 72%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-learn {
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(79, 58%, 47%);
            --secondary: hsl(79, 58%, 32%);
            --accent: hsl(79, 58%, 72%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .navbar-nav .nav-link:hover, 
        .navbar-nav .nav-link:focus {
            color: var(--secondary);
            background-color: var(--accent);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                margin: 0.25rem 0;
            }
        }
        
        .company-name {
            font-size: 1.5rem;
            letter-spacing: 0.5px;
        }

.contact-section {
        padding: 80px 0;
        background-color: #f9fbf5;
    }
    
    .contact-heading {
        color: hsl(79, 58%, 32%);
        margin-bottom: 40px;
        font-weight: 700;
    }
    
    .contact-subheading {
        color: hsl(79, 58%, 32%);
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .contact-text {
        color: #333;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .contact-card {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 30px;
        height: 100%;
    }
    
    .contact-form .form-control {
        border: 1px solid #ddd;
        padding: 12px 15px;
        margin-bottom: 20px;
        border-radius: 6px;
    }
    
    .contact-form .form-control:focus {
        border-color: hsl(79, 58%, 47%);
        box-shadow: 0 0 0 0.2rem hsla(79, 58%, 47%, 0.25);
    }
    
    .contact-form label {
        font-weight: 600;
        color: #444;
        margin-bottom: 8px;
    }
    
    .contact-btn {
        background-color: hsl(79, 58%, 47%);
        color: white;
        border: none;
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .contact-btn:hover {
        background-color: hsl(79, 58%, 32%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hours-item {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px dashed #ddd;
    }
    
    .hours-day {
        font-weight: 600;
        color: #555;
    }
    
    .hours-time {
        color: hsl(79, 58%, 32%);
    }
    
    .consultation-steps {
        margin-top: 40px;
        padding-left: 0;
    }
    
    .step-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .step-number {
        background-color: hsl(79, 58%, 47%);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .step-content {
        flex-grow: 1;
    }
    
    .step-title {
        font-weight: 600;
        color: hsl(79, 58%, 32%);
        margin-bottom: 5px;
    }
    
    .map-container {
        height: 250px;
        background-color: hsl(79, 58%, 72%);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: #555;
        font-weight: 500;
    }

.about-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .about-title {
    font-size: 2.5rem;
    color: hsl(79, 58%, 32%);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
  }
  
  .about-subtitle {
    font-size: 1.8rem;
    color: hsl(79, 58%, 47%);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
  }
  
  .about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
  }
  
  .about-card {
    background-color: hsla(79, 58%, 95%, 0.5);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid hsl(79, 58%, 47%);
  }
  
  .about-highlight {
    color: hsl(79, 58%, 32%);
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .about-section {
      padding: 40px 0;
    }
    
    .about-title {
      font-size: 2rem;
    }
    
    .about-subtitle {
      font-size: 1.5rem;
    }
  }

:root {
    --primary-color: hsl(79, 58%, 47%);
    --secondary-color: hsl(79, 58%, 32%);
    --accent-color: hsl(79, 58%, 72%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-learn {
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(79, 58%, 47%);
            --secondary: hsl(79, 58%, 32%);
            --accent: hsl(79, 58%, 72%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .navbar-nav .nav-link:hover, 
        .navbar-nav .nav-link:focus {
            color: var(--secondary);
            background-color: var(--accent);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                margin: 0.25rem 0;
            }
        }
        
        .company-name {
            font-size: 1.5rem;
            letter-spacing: 0.5px;
        }

.services-section {
    padding: 80px 0;
    background-color: #f9f9f7;
  }
  
  .services-section .section-title {
    color: hsl(79, 58%, 32%);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
  }
  
  .services-section .section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: hsl(79, 58%, 47%);
    margin: 15px auto 0;
  }
  
  .service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: hsl(79, 58%, 47%);
  }
  
  .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: hsl(79, 58%, 72%);
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 28px;
    color: hsl(79, 58%, 32%);
  }
  
  .service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(79, 58%, 32%);
  }
  
  .service-description {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .service-price {
    font-weight: 700;
    font-size: 18px;
    color: hsl(79, 58%, 47%);
    margin-bottom: 15px;
  }
  
  .service-conditions {
    font-size: 14px;
    color: #777;
    font-style: italic;
  }

.newsletter-section {
    background: linear-gradient(135deg, hsl(79, 58%, 47%) 0%, hsl(79, 58%, 32%) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
  }
  
  .newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  }
  
  .newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .form-group {
    display: flex;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 50px;
    overflow: hidden;
  }
  
  .newsletter-input {
    flex-grow: 1;
    padding: 15px 25px;
    border: none;
    font-size: 1rem;
    outline: none;
  }
  
  .newsletter-button {
    background-color: hsl(79, 58%, 72%);
    color: hsl(79, 58%, 32%);
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .newsletter-button:hover {
    background-color: white;
    color: hsl(79, 58%, 32%);
    transform: translateY(-2px);
  }
  
  .newsletter-perks {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
  }
  
  .perk-item {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    margin: 0.5rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
  }
  
  .perk-item:hover {
    transform: translateY(-5px);
  }
  
  .perk-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  .perk-text {
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  @media (max-width: 768px) {
    .form-group {
      flex-direction: column;
      border-radius: 10px;
    }
    
    .newsletter-button {
      border-radius: 0;
      padding: 12px;
    }
    
    .newsletter-perks {
      flex-direction: column;
    }
  }

.testimonials-section {
        padding: 80px 0;
        background-color: #ffffff;
    }
    
    .testimonials-section h2 {
        color: hsl(79, 58%, 32%);
        font-size: 2.5rem;
        margin-bottom: 40px;
        text-align: center;
        font-weight: 700;
    }
    
    .testimonial-card {
        background-color: #f9f9f9;
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        height: 100%;
        border-left: 4px solid hsl(79, 58%, 47%);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        color: #555;
        line-height: 1.6;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(79, 58%, 32%);
        margin-bottom: 5px;
    }
    
    .testimonial-location {
        color: #888;
        font-size: 0.9rem;
    }
    
    .section-intro {
        max-width: 700px;
        margin: 0 auto 50px;
        text-align: center;
        color: #666;
    }

:root {
    --primary-color: hsl(79, 58%, 47%);
    --secondary-color: hsl(79, 58%, 32%);
    --accent-color: hsl(79, 58%, 72%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-learn {
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(79, 58%, 47%);
            --secondary: hsl(79, 58%, 32%);
            --accent: hsl(79, 58%, 72%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .navbar-nav .nav-link:hover, 
        .navbar-nav .nav-link:focus {
            color: var(--secondary);
            background-color: var(--accent);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                margin: 0.25rem 0;
            }
        }
        
        .company-name {
            font-size: 1.5rem;
            letter-spacing: 0.5px;
        }

.terms-container {
        font-family: 'Arial', sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        color: #333;
        line-height: 1.6;
    }
    .terms-container h1 {
        color: #1a5276;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
        margin-bottom: 25px;
    }
    .terms-container h2 {
        color: #2874a6;
        margin-top: 30px;
        border-left: 4px solid #3498db;
        padding-left: 10px;
    }
    .terms-container p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .terms-container ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .terms-container li {
        margin-bottom: 8px;
    }
    .terms-container .highlight {
        background-color: #f8f9f9;
        padding: 15px;
        border-left: 3px solid #3498db;
        margin: 15px 0;
    }
    .terms-container .date {
        font-style: italic;
        text-align: right;
        margin-top: 30px;
    }

:root {
    --primary-color: hsl(79, 58%, 47%);
    --secondary-color: hsl(79, 58%, 32%);
    --accent-color: hsl(79, 58%, 72%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-learn {
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(79, 58%, 47%);
            --secondary: hsl(79, 58%, 32%);
            --accent: hsl(79, 58%, 72%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .navbar-nav .nav-link:hover, 
        .navbar-nav .nav-link:focus {
            color: var(--secondary);
            background-color: var(--accent);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                margin: 0.25rem 0;
            }
        }
        
        .company-name {
            font-size: 1.5rem;
            letter-spacing: 0.5px;
        }

.faq-section {
    padding: 5rem 0;
    background-color: #f9faf2;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    color: hsl(79, 58%, 32%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.faq-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    border: none;
    transition: transform 0.3s ease;
}

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

.faq-card .card-header {
    background-color: hsl(79, 58%, 47%);
    border: none;
    padding: 1.25rem;
    cursor: pointer;
}

.faq-card .card-header h5 {
    color: white;
    font-weight: 600;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-card .card-header h5::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-card .card-header[aria-expanded="true"] h5::after {
    content: '−';
}

.faq-card .card-body {
    padding: 1.5rem;
    background-color: white;
    color: #555;
    line-height: 1.6;
}

.faq-card p:last-child {
    margin-bottom: 0;
}

.faq-accent {
    color: hsl(79, 58%, 32%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-card .card-header {
        padding: 1rem;
    }
    
    .faq-card .card-body {
        padding: 1.25rem;
    }
}

.about-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .about-title {
    font-size: 2.5rem;
    color: hsl(79, 58%, 32%);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
  }
  
  .about-subtitle {
    font-size: 1.8rem;
    color: hsl(79, 58%, 47%);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
  }
  
  .about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
  }
  
  .about-card {
    background-color: hsla(79, 58%, 95%, 0.5);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid hsl(79, 58%, 47%);
  }
  
  .about-highlight {
    color: hsl(79, 58%, 32%);
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .about-section {
      padding: 40px 0;
    }
    
    .about-title {
      font-size: 2rem;
    }
    
    .about-subtitle {
      font-size: 1.5rem;
    }
  }

.newsletter-section {
    background: linear-gradient(135deg, hsl(79, 58%, 47%) 0%, hsl(79, 58%, 32%) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
  }
  
  .newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  }
  
  .newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .form-group {
    display: flex;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 50px;
    overflow: hidden;
  }
  
  .newsletter-input {
    flex-grow: 1;
    padding: 15px 25px;
    border: none;
    font-size: 1rem;
    outline: none;
  }
  
  .newsletter-button {
    background-color: hsl(79, 58%, 72%);
    color: hsl(79, 58%, 32%);
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .newsletter-button:hover {
    background-color: white;
    color: hsl(79, 58%, 32%);
    transform: translateY(-2px);
  }
  
  .newsletter-perks {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
  }
  
  .perk-item {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    margin: 0.5rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
  }
  
  .perk-item:hover {
    transform: translateY(-5px);
  }
  
  .perk-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  .perk-text {
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  @media (max-width: 768px) {
    .form-group {
      flex-direction: column;
      border-radius: 10px;
    }
    
    .newsletter-button {
      border-radius: 0;
      padding: 12px;
    }
    
    .newsletter-perks {
      flex-direction: column;
    }
  }

:root {
    --primary-color: hsl(79, 58%, 47%);
    --secondary-color: hsl(79, 58%, 32%);
    --accent-color: hsl(79, 58%, 72%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-learn {
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(79, 58%, 47%);
            --secondary: hsl(79, 58%, 32%);
            --accent: hsl(79, 58%, 72%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .navbar-nav .nav-link:hover, 
        .navbar-nav .nav-link:focus {
            color: var(--secondary);
            background-color: var(--accent);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                margin: 0.25rem 0;
            }
        }
        
        .company-name {
            font-size: 1.5rem;
            letter-spacing: 0.5px;
        }

.hero-section {
        position: relative;
        min-height: 80vh;
        background-color: #f9f9f9;
        overflow: hidden;
        color: #fff;
        padding: 80px 0;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-image-container {
        margin-bottom: 30px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }
    
    .hero-image:hover {
        transform: scale(1.02);
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        color: hsl(79, 58%, 72%);
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 25px;
        font-weight: 300;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    .hero-description {
        margin-bottom: 30px;
        font-size: 1.1rem;
        line-height: 1.7;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    }
    
    .hero-benefits {
        margin-bottom: 30px;
    }
    
    .hero-benefits li {
        margin-bottom: 12px;
        font-size: 1.1rem;
    }
    
    .hero-benefits i {
        color: hsl(79, 58%, 47%);
        margin-right: 10px;
    }
    
    .cta-primary {
        background-color: hsl(79, 58%, 47%);
        color: #fff;
        border: none;
        padding: 12px 28px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 30px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        margin-right: 15px;
    }
    
    .cta-primary:hover {
        background-color: hsl(79, 58%, 32%);
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }
    
    .cta-secondary {
        background-color: transparent;
        color: #fff;
        border: 2px solid hsl(79, 58%, 47%);
        padding: 12px 28px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 30px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .cta-secondary:hover {
        background-color: hsl(79, 58%, 72%);
        color: #333;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }
    
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
        }
        
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .cta-primary, .cta-secondary {
            margin-right: 0;
        }
    }

.newsletter-section {
    background: linear-gradient(135deg, hsl(79, 58%, 47%) 0%, hsl(79, 58%, 32%) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
  }
  
  .newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  }
  
  .newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .form-group {
    display: flex;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 50px;
    overflow: hidden;
  }
  
  .newsletter-input {
    flex-grow: 1;
    padding: 15px 25px;
    border: none;
    font-size: 1rem;
    outline: none;
  }
  
  .newsletter-button {
    background-color: hsl(79, 58%, 72%);
    color: hsl(79, 58%, 32%);
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .newsletter-button:hover {
    background-color: white;
    color: hsl(79, 58%, 32%);
    transform: translateY(-2px);
  }
  
  .newsletter-perks {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
  }
  
  .perk-item {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    margin: 0.5rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
  }
  
  .perk-item:hover {
    transform: translateY(-5px);
  }
  
  .perk-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  .perk-text {
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  @media (max-width: 768px) {
    .form-group {
      flex-direction: column;
      border-radius: 10px;
    }
    
    .newsletter-button {
      border-radius: 0;
      padding: 12px;
    }
    
    .newsletter-perks {
      flex-direction: column;
    }
  }

.advantages-section {
    padding: 5rem 0;
    background-color: #fff;
}

.advantages-section h2 {
    color: hsl(79, 58%, 32%);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

.advantages-section h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: hsl(79, 58%, 47%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.advantage-card {
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: hsl(79, 58%, 47%);
}

.advantage-icon {
    background-color: hsl(79, 58%, 72%);
    color: hsl(79, 58%, 32%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background-color: hsl(79, 58%, 47%);
    color: white;
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(79, 58%, 32%);
    margin-bottom: 1rem;
}

.advantage-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .advantage-card {
        margin-bottom: 30px;
    }
}

.statistics-section {
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .statistics-section h2 {
        color: hsl(79, 58%, 32%);
        font-weight: 700;
        margin-bottom: 3rem;
        position: relative;
    }
    
    .statistics-section h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(79, 58%, 47%);
    }
    
    .stat-circle {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 10px solid hsl(79, 58%, 72%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto 1.5rem;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .stat-circle:hover {
        transform: scale(1.05);
        border-color: hsl(79, 58%, 47%);
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: hsl(79, 58%, 32%);
        margin-bottom: 0;
    }
    
    .stat-icon {
        font-size: 2rem;
        color: hsl(79, 58%, 47%);
        margin-bottom: 0.5rem;
    }
    
    .stat-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #333;
        text-align: center;
    }
    
    .stat-description {
        font-size: 0.9rem;
        color: #666;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    @media (max-width: 768px) {
        .stat-circle {
            width: 120px;
            height: 120px;
            border-width: 8px;
        }
        .stat-number {
            font-size: 1.8rem;
        }
        .stat-icon {
            font-size: 1.5rem;
        }
    }

.contact-section {
        padding: 80px 0;
        background-color: #f9fbf5;
    }
    
    .contact-heading {
        color: hsl(79, 58%, 32%);
        margin-bottom: 40px;
        font-weight: 700;
    }
    
    .contact-subheading {
        color: hsl(79, 58%, 32%);
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .contact-text {
        color: #333;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .contact-card {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 30px;
        height: 100%;
    }
    
    .contact-form .form-control {
        border: 1px solid #ddd;
        padding: 12px 15px;
        margin-bottom: 20px;
        border-radius: 6px;
    }
    
    .contact-form .form-control:focus {
        border-color: hsl(79, 58%, 47%);
        box-shadow: 0 0 0 0.2rem hsla(79, 58%, 47%, 0.25);
    }
    
    .contact-form label {
        font-weight: 600;
        color: #444;
        margin-bottom: 8px;
    }
    
    .contact-btn {
        background-color: hsl(79, 58%, 47%);
        color: white;
        border: none;
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .contact-btn:hover {
        background-color: hsl(79, 58%, 32%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hours-item {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px dashed #ddd;
    }
    
    .hours-day {
        font-weight: 600;
        color: #555;
    }
    
    .hours-time {
        color: hsl(79, 58%, 32%);
    }
    
    .consultation-steps {
        margin-top: 40px;
        padding-left: 0;
    }
    
    .step-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .step-number {
        background-color: hsl(79, 58%, 47%);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .step-content {
        flex-grow: 1;
    }
    
    .step-title {
        font-weight: 600;
        color: hsl(79, 58%, 32%);
        margin-bottom: 5px;
    }
    
    .map-container {
        height: 250px;
        background-color: hsl(79, 58%, 72%);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: #555;
        font-weight: 500;
    }

.services-section {
    padding: 80px 0;
    background-color: #f9f9f7;
  }
  
  .services-section .section-title {
    color: hsl(79, 58%, 32%);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
  }
  
  .services-section .section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: hsl(79, 58%, 47%);
    margin: 15px auto 0;
  }
  
  .service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: hsl(79, 58%, 47%);
  }
  
  .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: hsl(79, 58%, 72%);
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 28px;
    color: hsl(79, 58%, 32%);
  }
  
  .service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(79, 58%, 32%);
  }
  
  .service-description {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .service-price {
    font-weight: 700;
    font-size: 18px;
    color: hsl(79, 58%, 47%);
    margin-bottom: 15px;
  }
  
  .service-conditions {
    font-size: 14px;
    color: #777;
    font-style: italic;
  }

.testimonials-section {
        padding: 80px 0;
        background-color: #ffffff;
    }
    
    .testimonials-section h2 {
        color: hsl(79, 58%, 32%);
        font-size: 2.5rem;
        margin-bottom: 40px;
        text-align: center;
        font-weight: 700;
    }
    
    .testimonial-card {
        background-color: #f9f9f9;
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        height: 100%;
        border-left: 4px solid hsl(79, 58%, 47%);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        color: #555;
        line-height: 1.6;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(79, 58%, 32%);
        margin-bottom: 5px;
    }
    
    .testimonial-location {
        color: #888;
        font-size: 0.9rem;
    }
    
    .section-intro {
        max-width: 700px;
        margin: 0 auto 50px;
        text-align: center;
        color: #666;
    }

.faq-section {
    padding: 5rem 0;
    background-color: #f9faf2;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    color: hsl(79, 58%, 32%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.faq-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    border: none;
    transition: transform 0.3s ease;
}

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

.faq-card .card-header {
    background-color: hsl(79, 58%, 47%);
    border: none;
    padding: 1.25rem;
    cursor: pointer;
}

.faq-card .card-header h5 {
    color: white;
    font-weight: 600;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-card .card-header h5::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-card .card-header[aria-expanded="true"] h5::after {
    content: '−';
}

.faq-card .card-body {
    padding: 1.5rem;
    background-color: white;
    color: #555;
    line-height: 1.6;
}

.faq-card p:last-child {
    margin-bottom: 0;
}

.faq-accent {
    color: hsl(79, 58%, 32%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-card .card-header {
        padding: 1rem;
    }
    
    .faq-card .card-body {
        padding: 1.25rem;
    }
}

.about-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .about-title {
    font-size: 2.5rem;
    color: hsl(79, 58%, 32%);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
  }
  
  .about-subtitle {
    font-size: 1.8rem;
    color: hsl(79, 58%, 47%);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
  }
  
  .about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
  }
  
  .about-card {
    background-color: hsla(79, 58%, 95%, 0.5);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid hsl(79, 58%, 47%);
  }
  
  .about-highlight {
    color: hsl(79, 58%, 32%);
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .about-section {
      padding: 40px 0;
    }
    
    .about-title {
      font-size: 2rem;
    }
    
    .about-subtitle {
      font-size: 1.5rem;
    }
  }

:root {
    --primary-color: hsl(79, 58%, 47%);
    --secondary-color: hsl(79, 58%, 32%);
    --accent-color: hsl(79, 58%, 72%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-learn {
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}