:root {
            --primary: hsl(170, 33%, 36%);
            --secondary: hsl(170, 33%, 21%);
            --accent: hsl(170, 33%, 61%);
            --primary-light: hsl(170, 33%, 95%);
            --secondary-dark: hsl(170, 33%, 15%);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .navbar {
            background-color: var(--primary-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.25rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:before {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 50%;
            background-color: var(--accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:before {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        @media (max-width: 992px) {
            .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .nav-link:before {
                display: none;
            }
        }

.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(170, 33%, 21%, 0.03);
    z-index: 0;
  }
  
  .contact-container {
    position: relative;
    z-index: 1;
  }
  
  .contact-heading {
    font-size: 2.5rem;
    color: hsl(170, 33%, 21%);
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .contact-subheading {
    color: hsl(170, 33%, 36%);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
  }
  
  .contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .form-label {
    font-weight: 600;
    color: hsl(170, 33%, 21%);
  }
  
  .form-control {
    border: 1px solid #e5e5e5;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border-color: hsl(170, 33%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(120, 183, 170, 0.25);
  }
  
  .contact-btn {
    background-color: hsl(170, 33%, 36%);
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
  }
  
  .contact-btn:hover {
    background-color: hsl(170, 33%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .consultation-info {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .consultation-heading {
    color: hsl(170, 33%, 36%);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .consultation-step {
    display: flex;
    margin-bottom: 20px;
  }
  
  .step-number {
    background-color: hsl(170, 33%, 61%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .step-text {
    color: #555;
    line-height: 1.6;
  }
  
  .office-hours {
    background-color: hsl(170, 33%, 36%, 0.1);
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
  }
  
  .hours-heading {
    color: hsl(170, 33%, 21%);
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .hours-text {
    color: #555;
    margin-bottom: 0;
  }
  
  @media (max-width: 767px) {
    .consultation-info {
      margin-top: 30px;
    }
    
    .contact-heading {
      font-size: 2rem;
    }
  }

.about-section {
        padding: 6rem 0;
        background-color: #ffffff;
        color: #333;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(170, 33%, 36%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .about-section h2:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 3px;
        background-color: hsl(170, 33%, 61%);
    }
    
    .about-section h3 {
        color: hsl(170, 33%, 21%);
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-section p {
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: #555;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-10px);
    }
    
    .about-card {
        background-color: rgba(231, 248, 243, 0.5);
        border-left: 4px solid hsl(170, 33%, 36%);
        padding: 2rem;
        border-radius: 0 8px 8px 0;
        margin: 2rem 0;
    }
    
    .value-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        background-color: hsl(170, 33%, 61%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
        color: white;
        font-size: 1.5rem;
    }
    
    .highlight {
        color: hsl(170, 33%, 36%);
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .order-md-2 {
            order: 1 !important;
        }
        
        .order-md-1 {
            order: 2 !important;
        }
    }

:root {
        --primary-color: hsl(170, 33%, 36%);
        --secondary-color: hsl(170, 33%, 21%);
        --accent-color: hsl(170, 33%, 61%);
        --light-color: #f8f9fa;
        --dark-color: #212529;
    }

    footer {
        background-color: var(--secondary-color);
        color: var(--light-color);
        padding: 3rem 0 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

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

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

    footer p {
        line-height: 1.7;
        opacity: 0.9;
    }

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

    footer ul li {
        margin-bottom: 0.7rem;
    }

    footer ul li a {
        color: var(--light-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer ul li a:hover {
        color: var(--accent-color);
        padding-left: 5px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .contact-item i {
        font-size: 1.2rem;
        margin-right: 1rem;
        color: var(--accent-color);
    }

    .copyright {
        background-color: rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        margin-top: 2rem;
        text-align: center;
        font-size: 0.9rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        display: none;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-notice .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

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

    .cookie-notice .btn-outline-light:hover {
        color: var(--secondary-color);
    }

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

    .btn-accept:hover {
        background-color: #fff;
        transform: translateY(-2px);
    }

    .btn-learn {
        background-color: transparent;
        color: white;
        border: 1px solid white;
        padding: 8px 16px;
        border-radius: 4px;
        transition: all 0.3s ease;
        margin-left: 10px;
    }

    .btn-learn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 767px) {
        .footer-links {
            margin-top: 2rem;
        }
        
        .cookie-notice .btn {
            margin-top: 10px;
        }
    }

:root {
            --primary: hsl(170, 33%, 36%);
            --secondary: hsl(170, 33%, 21%);
            --accent: hsl(170, 33%, 61%);
            --primary-light: hsl(170, 33%, 95%);
            --secondary-dark: hsl(170, 33%, 15%);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .navbar {
            background-color: var(--primary-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.25rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:before {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 50%;
            background-color: var(--accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:before {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        @media (max-width: 992px) {
            .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .nav-link:before {
                display: none;
            }
        }

.about-section {
        padding: 6rem 0;
        background-color: #ffffff;
        color: #333;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(170, 33%, 36%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .about-section h2:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 3px;
        background-color: hsl(170, 33%, 61%);
    }
    
    .about-section h3 {
        color: hsl(170, 33%, 21%);
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-section p {
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: #555;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-10px);
    }
    
    .about-card {
        background-color: rgba(231, 248, 243, 0.5);
        border-left: 4px solid hsl(170, 33%, 36%);
        padding: 2rem;
        border-radius: 0 8px 8px 0;
        margin: 2rem 0;
    }
    
    .value-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        background-color: hsl(170, 33%, 61%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
        color: white;
        font-size: 1.5rem;
    }
    
    .highlight {
        color: hsl(170, 33%, 36%);
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .order-md-2 {
            order: 1 !important;
        }
        
        .order-md-1 {
            order: 2 !important;
        }
    }

.advantages {
    padding: 80px 0;
    background-color: #f9fafb;
  }
  
  .advantages-title {
    color: hsl(170, 33%, 21%);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
  }
  
  .advantages-title:after {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: hsl(170, 33%, 61%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .advantage-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid hsl(170, 33%, 61%);
  }
  
  .advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: hsl(170, 33%, 36%);
  }
  
  .advantage-title {
    font-weight: 600;
    color: hsl(170, 33%, 21%);
    margin-bottom: 15px;
  }
  
  .advantage-description {
    color: #666;
    line-height: 1.6;
  }
  
  @media (max-width: 767px) {
    .advantage-card {
      text-align: center;
    }
    
    .order-md-2 {
      order: initial !important;
    }
  }

.statistics-section {
        background-color: hsl(170, 33%, 96%);
        padding: 80px 0;
    }
    
    .statistics-section h2 {
        color: hsl(170, 33%, 21%);
        font-weight: 700;
        margin-bottom: 50px;
        position: relative;
    }
    
    .statistics-section h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 3px;
        background-color: hsl(170, 33%, 61%);
    }
    
    .stat-card {
        background-color: white;
        border-radius: 10px;
        padding: 25px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .stat-icon {
        font-size: 2.5rem;
        color: hsl(170, 33%, 36%);
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: hsl(170, 33%, 21%);
        margin-bottom: 10px;
    }
    
    .stat-title {
        font-size: 1.1rem;
        color: hsl(170, 33%, 36%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .stat-description {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .progress-circle {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto 20px;
    }
    
    .progress-circle svg {
        width: 100%;
        height: 100%;
        transform: rotate(-90deg);
    }
    
    .progress-circle circle {
        fill: none;
        stroke-width: 8;
    }
    
    .progress-circle .bg {
        stroke: #e9ecef;
    }
    
    .progress-circle .progress {
        stroke: hsl(170, 33%, 61%);
        stroke-linecap: round;
    }
    
    .progress-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.5rem;
        font-weight: 700;
        color: hsl(170, 33%, 21%);
    }
    
    @media (max-width: 992px) {
        .statistics-section {
            padding: 60px 0;
        }
    }
    
    @media (max-width: 768px) {
        .statistics-section {
            padding: 40px 0;
        }
        .stat-card {
            padding: 20px 15px;
        }
    }

:root {
        --primary-color: hsl(170, 33%, 36%);
        --secondary-color: hsl(170, 33%, 21%);
        --accent-color: hsl(170, 33%, 61%);
        --light-color: #f8f9fa;
        --dark-color: #212529;
    }

    footer {
        background-color: var(--secondary-color);
        color: var(--light-color);
        padding: 3rem 0 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

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

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

    footer p {
        line-height: 1.7;
        opacity: 0.9;
    }

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

    footer ul li {
        margin-bottom: 0.7rem;
    }

    footer ul li a {
        color: var(--light-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer ul li a:hover {
        color: var(--accent-color);
        padding-left: 5px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .contact-item i {
        font-size: 1.2rem;
        margin-right: 1rem;
        color: var(--accent-color);
    }

    .copyright {
        background-color: rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        margin-top: 2rem;
        text-align: center;
        font-size: 0.9rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        display: none;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-notice .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

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

    .cookie-notice .btn-outline-light:hover {
        color: var(--secondary-color);
    }

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

    .btn-accept:hover {
        background-color: #fff;
        transform: translateY(-2px);
    }

    .btn-learn {
        background-color: transparent;
        color: white;
        border: 1px solid white;
        padding: 8px 16px;
        border-radius: 4px;
        transition: all 0.3s ease;
        margin-left: 10px;
    }

    .btn-learn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 767px) {
        .footer-links {
            margin-top: 2rem;
        }
        
        .cookie-notice .btn {
            margin-top: 10px;
        }
    }

:root {
            --primary: hsl(170, 33%, 36%);
            --secondary: hsl(170, 33%, 21%);
            --accent: hsl(170, 33%, 61%);
            --primary-light: hsl(170, 33%, 95%);
            --secondary-dark: hsl(170, 33%, 15%);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .navbar {
            background-color: var(--primary-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.25rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:before {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 50%;
            background-color: var(--accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:before {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        @media (max-width: 992px) {
            .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .nav-link:before {
                display: none;
            }
        }

.privacy-container {
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    .privacy-header {
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 2px solid #f0f0f0;
        margin-bottom: 30px;
    }
    .privacy-header h1 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 10px;
    }
    .privacy-header p {
        font-size: 1.1rem;
        color: #7f8c8d;
    }
    .privacy-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    .privacy-section h2 {
        color: #2980b9;
        font-size: 1.8rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    .privacy-section h3 {
        color: #3498db;
        font-size: 1.4rem;
        margin: 20px 0 10px;
    }
    .privacy-section p, .privacy-section ul {
        margin-bottom: 15px;
    }
    .privacy-section ul {
        padding-left: 20px;
    }
    .privacy-section li {
        margin-bottom: 8px;
    }
    .last-updated {
        font-style: italic;
        text-align: right;
        margin-top: 30px;
        color: #95a5a6;
    }
    .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #3498db;
        margin: 20px 0;
    }

:root {
        --primary-color: hsl(170, 33%, 36%);
        --secondary-color: hsl(170, 33%, 21%);
        --accent-color: hsl(170, 33%, 61%);
        --light-color: #f8f9fa;
        --dark-color: #212529;
    }

    footer {
        background-color: var(--secondary-color);
        color: var(--light-color);
        padding: 3rem 0 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

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

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

    footer p {
        line-height: 1.7;
        opacity: 0.9;
    }

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

    footer ul li {
        margin-bottom: 0.7rem;
    }

    footer ul li a {
        color: var(--light-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer ul li a:hover {
        color: var(--accent-color);
        padding-left: 5px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .contact-item i {
        font-size: 1.2rem;
        margin-right: 1rem;
        color: var(--accent-color);
    }

    .copyright {
        background-color: rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        margin-top: 2rem;
        text-align: center;
        font-size: 0.9rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        display: none;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-notice .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

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

    .cookie-notice .btn-outline-light:hover {
        color: var(--secondary-color);
    }

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

    .btn-accept:hover {
        background-color: #fff;
        transform: translateY(-2px);
    }

    .btn-learn {
        background-color: transparent;
        color: white;
        border: 1px solid white;
        padding: 8px 16px;
        border-radius: 4px;
        transition: all 0.3s ease;
        margin-left: 10px;
    }

    .btn-learn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 767px) {
        .footer-links {
            margin-top: 2rem;
        }
        
        .cookie-notice .btn {
            margin-top: 10px;
        }
    }

:root {
            --primary: hsl(170, 33%, 36%);
            --secondary: hsl(170, 33%, 21%);
            --accent: hsl(170, 33%, 61%);
            --primary-light: hsl(170, 33%, 95%);
            --secondary-dark: hsl(170, 33%, 15%);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .navbar {
            background-color: var(--primary-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.25rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:before {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 50%;
            background-color: var(--accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:before {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        @media (max-width: 992px) {
            .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .nav-link:before {
                display: none;
            }
        }

.hero-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    overflow: hidden;
  }
  
  .hero-section h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: hsl(170, 33%, 21%);
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }
  
  .hero-section h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: hsl(170, 33%, 36%);
    margin-bottom: 1.5rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 1.5rem;
  }
  
  .hero-section .benefits {
    margin: 2rem 0;
  }
  
  .hero-section .benefits li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
  }
  
  .hero-section .benefits i {
    color: hsl(170, 33%, 61%);
    position: absolute;
    left: 0;
    top: 0.25rem;
  }
  
  .hero-image {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
  }
  
  .hero-image:hover {
    transform: translateY(-5px);
  }
  
  .btn-primary {
    background-color: hsl(170, 33%, 36%);
    border-color: hsl(170, 33%, 36%);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: hsl(170, 33%, 21%);
    border-color: hsl(170, 33%, 21%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn-outline-secondary {
    color: hsl(170, 33%, 36%);
    border-color: hsl(170, 33%, 36%);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    margin-left: 1rem;
    transition: all 0.3s ease;
  }
  
  .btn-outline-secondary:hover {
    background-color: hsl(170, 33%, 61%);
    color: white;
    border-color: hsl(170, 33%, 61%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 991.98px) {
    .hero-section {
      padding: 4rem 0;
    }
    
    .hero-section h1 {
      font-size: 2.5rem;
    }
    
    .hero-section h2 {
      font-size: 1.5rem;
    }
    
    .btn-outline-secondary {
      margin-left: 0;
      margin-top: 1rem;
    }
    
    .hero-content {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .hero-image-container {
      text-align: center;
    }
  }
  
  @media (min-width: 992px) {
    .hero-content {
      padding-right: 2rem;
    }
  }

.faq-section {
    padding: 80px 0;
    background-color: #f8fbfa;
  }
  
  .faq-title {
    color: hsl(170, 33%, 21%);
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
  }
  
  .faq-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: hsl(170, 33%, 61%);
  }
  
  .accordion-button:not(.collapsed) {
    background-color: hsl(170, 33%, 95%);
    color: hsl(170, 33%, 21%);
    box-shadow: none;
  }
  
  .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem hsla(170, 33%, 61%, 0.25);
    border-color: hsla(170, 33%, 36%, 0.2);
  }
  
  .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='%23427568'%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");
  }
  
  .accordion-button {
    color: hsl(170, 33%, 36%);
    font-weight: 600;
  }
  
  .accordion-body {
    color: #555;
    line-height: 1.7;
    padding: 20px 25px;
  }
  
  .accordion-item {
    border: 1px solid rgba(0,0,0,.125);
    margin-bottom: 12px;
    border-radius: 6px !important;
    overflow: hidden;
  }

.services-section {
        padding: 100px 0;
        background-color: #f9f9f9;
    }
    
    .services-header {
        margin-bottom: 60px;
        text-align: center;
    }
    
    .services-title {
        color: hsl(170, 33%, 21%);
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
    }
    
    .services-title:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(170, 33%, 61%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .services-subtitle {
        color: #666;
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .service-card {
        display: flex;
        margin-bottom: 30px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .service-icon {
        padding: 30px;
        background-color: hsl(170, 33%, 36%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        min-width: 100px;
    }
    
    .service-content {
        padding: 30px;
        flex-grow: 1;
    }
    
    .service-title {
        color: hsl(170, 33%, 21%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .service-description {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .service-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: hsl(170, 33%, 61%);
        margin-bottom: 0;
    }
    
    .service-conditions {
        margin-top: 15px;
        font-size: 0.9rem;
        color: #999;
    }
    
    @media (max-width: 768px) {
        .service-card {
            flex-direction: column;
        }
        
        .service-icon {
            min-width: 100%;
            padding: 20px;
        }
    }

.testimonials-section {
        padding: 5rem 0;
        background-color: #f9f9f9;
    }
    
    .testimonials-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .testimonials-header h2 {
        color: hsl(170, 33%, 21%);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .testimonials-header p {
        color: hsl(170, 33%, 36%);
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: 10px;
        padding: 1.75rem;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 4px solid hsl(170, 33%, 61%);
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-content {
        font-style: italic;
        color: #444;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author {
        color: hsl(170, 33%, 21%);
        font-weight: 600;
        margin-bottom: 0.25rem;
    }
    
    .testimonial-location {
        color: hsl(170, 33%, 36%);
        font-size: 0.9rem;
    }
    
    .testimonial-quote {
        color: hsl(170, 33%, 61%);
        font-size: 2rem;
        margin-bottom: 1rem;
        display: block;
    }
    
    @media (max-width: 768px) {
        .testimonial-card {
            margin-bottom: 1.5rem;
        }
    }

.advantages {
    padding: 80px 0;
    background-color: #f9fafb;
  }
  
  .advantages-title {
    color: hsl(170, 33%, 21%);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
  }
  
  .advantages-title:after {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: hsl(170, 33%, 61%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .advantage-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid hsl(170, 33%, 61%);
  }
  
  .advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: hsl(170, 33%, 36%);
  }
  
  .advantage-title {
    font-weight: 600;
    color: hsl(170, 33%, 21%);
    margin-bottom: 15px;
  }
  
  .advantage-description {
    color: #666;
    line-height: 1.6;
  }
  
  @media (max-width: 767px) {
    .advantage-card {
      text-align: center;
    }
    
    .order-md-2 {
      order: initial !important;
    }
  }

.newsletter-section {
    background: linear-gradient(135deg, hsl(170, 33%, 36%) 0%, hsl(170, 33%, 21%) 100%);
    padding: 5rem 2rem;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 5rem auto;
    max-width: 1200px;
  }
  
  .newsletter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .newsletter-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }
  
  .newsletter-heading:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: hsl(170, 33%, 61%);
    border-radius: 2px;
  }
  
  .newsletter-description {
    max-width: 700px;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
  }
  
  .benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 800px;
  }
  
  .benefit-item {
    background-color: hsla(170, 33%, 61%, 0.2);
    padding: 1.2rem;
    border-radius: 8px;
    flex: 1 1 250px;
    max-width: 350px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
    background-color: hsla(170, 33%, 61%, 0.3);
  }
  
  .benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: hsl(170, 33%, 61%);
  }
  
  .benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
  }
  
  .newsletter-form {
    width: 100%;
    max-width: 550px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .form-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
  }
  
  .form-control {
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    margin-bottom: 1.2rem;
    transition: background-color 0.3s ease;
  }
  
  .form-control:focus {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px hsla(170, 33%, 61%, 0.5);
    color: #fff;
  }
  
  .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .btn-subscribe {
    background-color: hsl(170, 33%, 61%);
    color: hsl(170, 33%, 21%);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .btn-subscribe:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
  }
  
  .privacy-text {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.8;
  }
  
  @media (max-width: 768px) {
    .newsletter-heading {
      font-size: 2rem;
    }
    
    .newsletter-description {
      font-size: 1rem;
    }
    
    .benefit-item {
      flex: 1 1 100%;
    }
  }

.about-section {
        padding: 6rem 0;
        background-color: #ffffff;
        color: #333;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(170, 33%, 36%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .about-section h2:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 3px;
        background-color: hsl(170, 33%, 61%);
    }
    
    .about-section h3 {
        color: hsl(170, 33%, 21%);
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-section p {
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: #555;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-10px);
    }
    
    .about-card {
        background-color: rgba(231, 248, 243, 0.5);
        border-left: 4px solid hsl(170, 33%, 36%);
        padding: 2rem;
        border-radius: 0 8px 8px 0;
        margin: 2rem 0;
    }
    
    .value-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        background-color: hsl(170, 33%, 61%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
        color: white;
        font-size: 1.5rem;
    }
    
    .highlight {
        color: hsl(170, 33%, 36%);
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .order-md-2 {
            order: 1 !important;
        }
        
        .order-md-1 {
            order: 2 !important;
        }
    }

.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(170, 33%, 21%, 0.03);
    z-index: 0;
  }
  
  .contact-container {
    position: relative;
    z-index: 1;
  }
  
  .contact-heading {
    font-size: 2.5rem;
    color: hsl(170, 33%, 21%);
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .contact-subheading {
    color: hsl(170, 33%, 36%);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
  }
  
  .contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .form-label {
    font-weight: 600;
    color: hsl(170, 33%, 21%);
  }
  
  .form-control {
    border: 1px solid #e5e5e5;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border-color: hsl(170, 33%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(120, 183, 170, 0.25);
  }
  
  .contact-btn {
    background-color: hsl(170, 33%, 36%);
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
  }
  
  .contact-btn:hover {
    background-color: hsl(170, 33%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .consultation-info {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .consultation-heading {
    color: hsl(170, 33%, 36%);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .consultation-step {
    display: flex;
    margin-bottom: 20px;
  }
  
  .step-number {
    background-color: hsl(170, 33%, 61%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .step-text {
    color: #555;
    line-height: 1.6;
  }
  
  .office-hours {
    background-color: hsl(170, 33%, 36%, 0.1);
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
  }
  
  .hours-heading {
    color: hsl(170, 33%, 21%);
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .hours-text {
    color: #555;
    margin-bottom: 0;
  }
  
  @media (max-width: 767px) {
    .consultation-info {
      margin-top: 30px;
    }
    
    .contact-heading {
      font-size: 2rem;
    }
  }

.statistics-section {
        background-color: hsl(170, 33%, 96%);
        padding: 80px 0;
    }
    
    .statistics-section h2 {
        color: hsl(170, 33%, 21%);
        font-weight: 700;
        margin-bottom: 50px;
        position: relative;
    }
    
    .statistics-section h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 3px;
        background-color: hsl(170, 33%, 61%);
    }
    
    .stat-card {
        background-color: white;
        border-radius: 10px;
        padding: 25px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .stat-icon {
        font-size: 2.5rem;
        color: hsl(170, 33%, 36%);
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: hsl(170, 33%, 21%);
        margin-bottom: 10px;
    }
    
    .stat-title {
        font-size: 1.1rem;
        color: hsl(170, 33%, 36%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .stat-description {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .progress-circle {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto 20px;
    }
    
    .progress-circle svg {
        width: 100%;
        height: 100%;
        transform: rotate(-90deg);
    }
    
    .progress-circle circle {
        fill: none;
        stroke-width: 8;
    }
    
    .progress-circle .bg {
        stroke: #e9ecef;
    }
    
    .progress-circle .progress {
        stroke: hsl(170, 33%, 61%);
        stroke-linecap: round;
    }
    
    .progress-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.5rem;
        font-weight: 700;
        color: hsl(170, 33%, 21%);
    }
    
    @media (max-width: 992px) {
        .statistics-section {
            padding: 60px 0;
        }
    }
    
    @media (max-width: 768px) {
        .statistics-section {
            padding: 40px 0;
        }
        .stat-card {
            padding: 20px 15px;
        }
    }

:root {
        --primary-color: hsl(170, 33%, 36%);
        --secondary-color: hsl(170, 33%, 21%);
        --accent-color: hsl(170, 33%, 61%);
        --light-color: #f8f9fa;
        --dark-color: #212529;
    }

    footer {
        background-color: var(--secondary-color);
        color: var(--light-color);
        padding: 3rem 0 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

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

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

    footer p {
        line-height: 1.7;
        opacity: 0.9;
    }

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

    footer ul li {
        margin-bottom: 0.7rem;
    }

    footer ul li a {
        color: var(--light-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer ul li a:hover {
        color: var(--accent-color);
        padding-left: 5px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .contact-item i {
        font-size: 1.2rem;
        margin-right: 1rem;
        color: var(--accent-color);
    }

    .copyright {
        background-color: rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        margin-top: 2rem;
        text-align: center;
        font-size: 0.9rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        display: none;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-notice .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

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

    .cookie-notice .btn-outline-light:hover {
        color: var(--secondary-color);
    }

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

    .btn-accept:hover {
        background-color: #fff;
        transform: translateY(-2px);
    }

    .btn-learn {
        background-color: transparent;
        color: white;
        border: 1px solid white;
        padding: 8px 16px;
        border-radius: 4px;
        transition: all 0.3s ease;
        margin-left: 10px;
    }

    .btn-learn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 767px) {
        .footer-links {
            margin-top: 2rem;
        }
        
        .cookie-notice .btn {
            margin-top: 10px;
        }
    }

:root {
            --primary: hsl(170, 33%, 36%);
            --secondary: hsl(170, 33%, 21%);
            --accent: hsl(170, 33%, 61%);
            --primary-light: hsl(170, 33%, 95%);
            --secondary-dark: hsl(170, 33%, 15%);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .navbar {
            background-color: var(--primary-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.25rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:before {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 50%;
            background-color: var(--accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:before {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        @media (max-width: 992px) {
            .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .nav-link:before {
                display: none;
            }
        }

.terms-container {
        font-family: 'Arial', sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .terms-header {
        text-align: center;
        margin-bottom: 30px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 20px;
    }
    .terms-header h1 {
        color: #2c3e50;
        font-size: 2.2em;
        margin-bottom: 10px;
    }
    .terms-header p {
        color: #7f8c8d;
        font-size: 1.1em;
    }
    .terms-section {
        margin-bottom: 25px;
    }
    .terms-section h2 {
        color: #2c3e50;
        font-size: 1.5em;
        border-left: 4px solid #3498db;
        padding-left: 10px;
        margin-top: 30px;
    }
    .terms-section p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .terms-section ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    .terms-section li {
        margin-bottom: 8px;
    }
    .terms-footer {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #ddd;
        text-align: center;
        font-size: 0.9em;
        color: #7f8c8d;
    }

:root {
        --primary-color: hsl(170, 33%, 36%);
        --secondary-color: hsl(170, 33%, 21%);
        --accent-color: hsl(170, 33%, 61%);
        --light-color: #f8f9fa;
        --dark-color: #212529;
    }

    footer {
        background-color: var(--secondary-color);
        color: var(--light-color);
        padding: 3rem 0 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

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

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

    footer p {
        line-height: 1.7;
        opacity: 0.9;
    }

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

    footer ul li {
        margin-bottom: 0.7rem;
    }

    footer ul li a {
        color: var(--light-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer ul li a:hover {
        color: var(--accent-color);
        padding-left: 5px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .contact-item i {
        font-size: 1.2rem;
        margin-right: 1rem;
        color: var(--accent-color);
    }

    .copyright {
        background-color: rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        margin-top: 2rem;
        text-align: center;
        font-size: 0.9rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        display: none;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-notice .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

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

    .cookie-notice .btn-outline-light:hover {
        color: var(--secondary-color);
    }

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

    .btn-accept:hover {
        background-color: #fff;
        transform: translateY(-2px);
    }

    .btn-learn {
        background-color: transparent;
        color: white;
        border: 1px solid white;
        padding: 8px 16px;
        border-radius: 4px;
        transition: all 0.3s ease;
        margin-left: 10px;
    }

    .btn-learn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 767px) {
        .footer-links {
            margin-top: 2rem;
        }
        
        .cookie-notice .btn {
            margin-top: 10px;
        }
    }

:root {
            --primary: hsl(170, 33%, 36%);
            --secondary: hsl(170, 33%, 21%);
            --accent: hsl(170, 33%, 61%);
            --primary-light: hsl(170, 33%, 95%);
            --secondary-dark: hsl(170, 33%, 15%);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .navbar {
            background-color: var(--primary-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.25rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:before {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 50%;
            background-color: var(--accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:before {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        @media (max-width: 992px) {
            .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .nav-link:before {
                display: none;
            }
        }

.services-section {
        padding: 100px 0;
        background-color: #f9f9f9;
    }
    
    .services-header {
        margin-bottom: 60px;
        text-align: center;
    }
    
    .services-title {
        color: hsl(170, 33%, 21%);
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
    }
    
    .services-title:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(170, 33%, 61%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .services-subtitle {
        color: #666;
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .service-card {
        display: flex;
        margin-bottom: 30px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .service-icon {
        padding: 30px;
        background-color: hsl(170, 33%, 36%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        min-width: 100px;
    }
    
    .service-content {
        padding: 30px;
        flex-grow: 1;
    }
    
    .service-title {
        color: hsl(170, 33%, 21%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .service-description {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .service-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: hsl(170, 33%, 61%);
        margin-bottom: 0;
    }
    
    .service-conditions {
        margin-top: 15px;
        font-size: 0.9rem;
        color: #999;
    }
    
    @media (max-width: 768px) {
        .service-card {
            flex-direction: column;
        }
        
        .service-icon {
            min-width: 100%;
            padding: 20px;
        }
    }

.newsletter-section {
    background: linear-gradient(135deg, hsl(170, 33%, 36%) 0%, hsl(170, 33%, 21%) 100%);
    padding: 5rem 2rem;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 5rem auto;
    max-width: 1200px;
  }
  
  .newsletter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .newsletter-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }
  
  .newsletter-heading:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: hsl(170, 33%, 61%);
    border-radius: 2px;
  }
  
  .newsletter-description {
    max-width: 700px;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
  }
  
  .benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 800px;
  }
  
  .benefit-item {
    background-color: hsla(170, 33%, 61%, 0.2);
    padding: 1.2rem;
    border-radius: 8px;
    flex: 1 1 250px;
    max-width: 350px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
    background-color: hsla(170, 33%, 61%, 0.3);
  }
  
  .benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: hsl(170, 33%, 61%);
  }
  
  .benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
  }
  
  .newsletter-form {
    width: 100%;
    max-width: 550px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .form-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
  }
  
  .form-control {
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    margin-bottom: 1.2rem;
    transition: background-color 0.3s ease;
  }
  
  .form-control:focus {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px hsla(170, 33%, 61%, 0.5);
    color: #fff;
  }
  
  .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .btn-subscribe {
    background-color: hsl(170, 33%, 61%);
    color: hsl(170, 33%, 21%);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .btn-subscribe:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
  }
  
  .privacy-text {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.8;
  }
  
  @media (max-width: 768px) {
    .newsletter-heading {
      font-size: 2rem;
    }
    
    .newsletter-description {
      font-size: 1rem;
    }
    
    .benefit-item {
      flex: 1 1 100%;
    }
  }

.testimonials-section {
        padding: 5rem 0;
        background-color: #f9f9f9;
    }
    
    .testimonials-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .testimonials-header h2 {
        color: hsl(170, 33%, 21%);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .testimonials-header p {
        color: hsl(170, 33%, 36%);
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: 10px;
        padding: 1.75rem;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 4px solid hsl(170, 33%, 61%);
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-content {
        font-style: italic;
        color: #444;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author {
        color: hsl(170, 33%, 21%);
        font-weight: 600;
        margin-bottom: 0.25rem;
    }
    
    .testimonial-location {
        color: hsl(170, 33%, 36%);
        font-size: 0.9rem;
    }
    
    .testimonial-quote {
        color: hsl(170, 33%, 61%);
        font-size: 2rem;
        margin-bottom: 1rem;
        display: block;
    }
    
    @media (max-width: 768px) {
        .testimonial-card {
            margin-bottom: 1.5rem;
        }
    }

:root {
        --primary-color: hsl(170, 33%, 36%);
        --secondary-color: hsl(170, 33%, 21%);
        --accent-color: hsl(170, 33%, 61%);
        --light-color: #f8f9fa;
        --dark-color: #212529;
    }

    footer {
        background-color: var(--secondary-color);
        color: var(--light-color);
        padding: 3rem 0 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

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

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

    footer p {
        line-height: 1.7;
        opacity: 0.9;
    }

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

    footer ul li {
        margin-bottom: 0.7rem;
    }

    footer ul li a {
        color: var(--light-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer ul li a:hover {
        color: var(--accent-color);
        padding-left: 5px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .contact-item i {
        font-size: 1.2rem;
        margin-right: 1rem;
        color: var(--accent-color);
    }

    .copyright {
        background-color: rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        margin-top: 2rem;
        text-align: center;
        font-size: 0.9rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        display: none;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-notice .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

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

    .cookie-notice .btn-outline-light:hover {
        color: var(--secondary-color);
    }

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

    .btn-accept:hover {
        background-color: #fff;
        transform: translateY(-2px);
    }

    .btn-learn {
        background-color: transparent;
        color: white;
        border: 1px solid white;
        padding: 8px 16px;
        border-radius: 4px;
        transition: all 0.3s ease;
        margin-left: 10px;
    }

    .btn-learn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 767px) {
        .footer-links {
            margin-top: 2rem;
        }
        
        .cookie-notice .btn {
            margin-top: 10px;
        }
    }

:root {
            --primary: hsl(170, 33%, 36%);
            --secondary: hsl(170, 33%, 21%);
            --accent: hsl(170, 33%, 61%);
            --primary-light: hsl(170, 33%, 95%);
            --secondary-dark: hsl(170, 33%, 15%);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .navbar {
            background-color: var(--primary-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.25rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:before {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 50%;
            background-color: var(--accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:before {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        @media (max-width: 992px) {
            .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .nav-link:before {
                display: none;
            }
        }

.faq-section {
    padding: 80px 0;
    background-color: #f8fbfa;
  }
  
  .faq-title {
    color: hsl(170, 33%, 21%);
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
  }
  
  .faq-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: hsl(170, 33%, 61%);
  }
  
  .accordion-button:not(.collapsed) {
    background-color: hsl(170, 33%, 95%);
    color: hsl(170, 33%, 21%);
    box-shadow: none;
  }
  
  .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem hsla(170, 33%, 61%, 0.25);
    border-color: hsla(170, 33%, 36%, 0.2);
  }
  
  .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='%23427568'%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");
  }
  
  .accordion-button {
    color: hsl(170, 33%, 36%);
    font-weight: 600;
  }
  
  .accordion-body {
    color: #555;
    line-height: 1.7;
    padding: 20px 25px;
  }
  
  .accordion-item {
    border: 1px solid rgba(0,0,0,.125);
    margin-bottom: 12px;
    border-radius: 6px !important;
    overflow: hidden;
  }

.about-section {
        padding: 6rem 0;
        background-color: #ffffff;
        color: #333;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(170, 33%, 36%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .about-section h2:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 3px;
        background-color: hsl(170, 33%, 61%);
    }
    
    .about-section h3 {
        color: hsl(170, 33%, 21%);
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-section p {
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: #555;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-10px);
    }
    
    .about-card {
        background-color: rgba(231, 248, 243, 0.5);
        border-left: 4px solid hsl(170, 33%, 36%);
        padding: 2rem;
        border-radius: 0 8px 8px 0;
        margin: 2rem 0;
    }
    
    .value-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        background-color: hsl(170, 33%, 61%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
        color: white;
        font-size: 1.5rem;
    }
    
    .highlight {
        color: hsl(170, 33%, 36%);
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .order-md-2 {
            order: 1 !important;
        }
        
        .order-md-1 {
            order: 2 !important;
        }
    }

.newsletter-section {
    background: linear-gradient(135deg, hsl(170, 33%, 36%) 0%, hsl(170, 33%, 21%) 100%);
    padding: 5rem 2rem;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 5rem auto;
    max-width: 1200px;
  }
  
  .newsletter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .newsletter-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }
  
  .newsletter-heading:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: hsl(170, 33%, 61%);
    border-radius: 2px;
  }
  
  .newsletter-description {
    max-width: 700px;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
  }
  
  .benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 800px;
  }
  
  .benefit-item {
    background-color: hsla(170, 33%, 61%, 0.2);
    padding: 1.2rem;
    border-radius: 8px;
    flex: 1 1 250px;
    max-width: 350px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
    background-color: hsla(170, 33%, 61%, 0.3);
  }
  
  .benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: hsl(170, 33%, 61%);
  }
  
  .benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
  }
  
  .newsletter-form {
    width: 100%;
    max-width: 550px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .form-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
  }
  
  .form-control {
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    margin-bottom: 1.2rem;
    transition: background-color 0.3s ease;
  }
  
  .form-control:focus {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px hsla(170, 33%, 61%, 0.5);
    color: #fff;
  }
  
  .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .btn-subscribe {
    background-color: hsl(170, 33%, 61%);
    color: hsl(170, 33%, 21%);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .btn-subscribe:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
  }
  
  .privacy-text {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.8;
  }
  
  @media (max-width: 768px) {
    .newsletter-heading {
      font-size: 2rem;
    }
    
    .newsletter-description {
      font-size: 1rem;
    }
    
    .benefit-item {
      flex: 1 1 100%;
    }
  }

:root {
        --primary-color: hsl(170, 33%, 36%);
        --secondary-color: hsl(170, 33%, 21%);
        --accent-color: hsl(170, 33%, 61%);
        --light-color: #f8f9fa;
        --dark-color: #212529;
    }

    footer {
        background-color: var(--secondary-color);
        color: var(--light-color);
        padding: 3rem 0 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

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

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

    footer p {
        line-height: 1.7;
        opacity: 0.9;
    }

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

    footer ul li {
        margin-bottom: 0.7rem;
    }

    footer ul li a {
        color: var(--light-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer ul li a:hover {
        color: var(--accent-color);
        padding-left: 5px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .contact-item i {
        font-size: 1.2rem;
        margin-right: 1rem;
        color: var(--accent-color);
    }

    .copyright {
        background-color: rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        margin-top: 2rem;
        text-align: center;
        font-size: 0.9rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        display: none;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-notice .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

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

    .cookie-notice .btn-outline-light:hover {
        color: var(--secondary-color);
    }

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

    .btn-accept:hover {
        background-color: #fff;
        transform: translateY(-2px);
    }

    .btn-learn {
        background-color: transparent;
        color: white;
        border: 1px solid white;
        padding: 8px 16px;
        border-radius: 4px;
        transition: all 0.3s ease;
        margin-left: 10px;
    }

    .btn-learn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 767px) {
        .footer-links {
            margin-top: 2rem;
        }
        
        .cookie-notice .btn {
            margin-top: 10px;
        }
    }

:root {
            --primary: hsl(170, 33%, 36%);
            --secondary: hsl(170, 33%, 21%);
            --accent: hsl(170, 33%, 61%);
            --primary-light: hsl(170, 33%, 95%);
            --secondary-dark: hsl(170, 33%, 15%);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .navbar {
            background-color: var(--primary-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.25rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:before {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 50%;
            background-color: var(--accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:before {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        @media (max-width: 992px) {
            .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .nav-link:before {
                display: none;
            }
        }

.cookies-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px 20px;
        color: #333;
        line-height: 1.6;
    }
    
    .cookies-policy h1 {
        color: #2c3e50;
        font-size: 2.5rem;
        margin-bottom: 10px;
        text-align: center;
        border-bottom: 2px solid #3498db;
        padding-bottom: 15px;
    }
    
    .cookies-policy h2 {
        color: #2980b9;
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #eaeaea;
    }
    
    .cookies-policy h3 {
        color: #3498db;
        font-size: 1.3rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .cookies-policy p {
        margin-bottom: 15px;
        font-size: 1rem;
    }
    
    .cookies-policy ul {
        margin-bottom: 20px;
        padding-left: 25px;
    }
    
    .cookies-policy li {
        margin-bottom: 8px;
    }
    
    .policy-content {
        background-color: #f9f9f9;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .cookie-type {
        background-color: white;
        padding: 15px 20px;
        margin-bottom: 15px;
        border-radius: 6px;
        border-left: 4px solid #3498db;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .no-link {
        color: #3498db;
        text-decoration: none;
        cursor: default;
    }
    
    @media (max-width: 768px) {
        .cookies-policy {
            padding: 20px 15px;
        }
        
        .cookies-policy h1 {
            font-size: 2rem;
        }
        
        .cookies-policy h2 {
            font-size: 1.5rem;
        }
        
        .policy-content {
            padding: 20px;
        }
    }

:root {
        --primary-color: hsl(170, 33%, 36%);
        --secondary-color: hsl(170, 33%, 21%);
        --accent-color: hsl(170, 33%, 61%);
        --light-color: #f8f9fa;
        --dark-color: #212529;
    }

    footer {
        background-color: var(--secondary-color);
        color: var(--light-color);
        padding: 3rem 0 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

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

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

    footer p {
        line-height: 1.7;
        opacity: 0.9;
    }

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

    footer ul li {
        margin-bottom: 0.7rem;
    }

    footer ul li a {
        color: var(--light-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer ul li a:hover {
        color: var(--accent-color);
        padding-left: 5px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .contact-item i {
        font-size: 1.2rem;
        margin-right: 1rem;
        color: var(--accent-color);
    }

    .copyright {
        background-color: rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        margin-top: 2rem;
        text-align: center;
        font-size: 0.9rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        display: none;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-notice .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

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

    .cookie-notice .btn-outline-light:hover {
        color: var(--secondary-color);
    }

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

    .btn-accept:hover {
        background-color: #fff;
        transform: translateY(-2px);
    }

    .btn-learn {
        background-color: transparent;
        color: white;
        border: 1px solid white;
        padding: 8px 16px;
        border-radius: 4px;
        transition: all 0.3s ease;
        margin-left: 10px;
    }

    .btn-learn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 767px) {
        .footer-links {
            margin-top: 2rem;
        }
        
        .cookie-notice .btn {
            margin-top: 10px;
        }
    }