:root {
            --primary-color: hsl(150, 42%, 35%);
            --secondary-color: hsl(150, 42%, 20%);
            --accent-color: hsl(150, 42%, 60%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.3rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851, 51, 51, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.7rem 1rem;
            }
        }

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

  .about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: hsl(150, 42%, 35%, 0.03);
    border-radius: 50%;
    z-index: 0;
  }

  .about-section .container {
    position: relative;
    z-index: 1;
  }

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

  .about-header .section-subtitle {
    color: hsl(150, 42%, 35%);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }

  .about-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .about-header .lead-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .about-story-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 40px;
  }

  .about-story-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    color: #222;
    margin-bottom: 25px;
    font-weight: 600;
  }

  .about-story-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    margin-bottom: 30px;
  }

  .about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }

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

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

  .value-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .value-card:hover {
    border-color: hsl(150, 42%, 35%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(150, 42%, 35%) 0%, hsl(150, 42%, 45%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
  }

  .value-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .value-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.98rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
  }

  .mission-vision-row {
    margin-top: 60px;
  }

  .mission-box, .vision-box {
    background: linear-gradient(135deg, hsl(150, 42%, 35%) 0%, hsl(150, 42%, 25%) 100%);
    border-radius: 20px;
    padding: 45px 40px;
    color: #ffffff;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .mission-box::before, .vision-box::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
  }

  .mission-box h3, .vision-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }

  .mission-box p, .vision-box p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
    opacity: 0.95;
  }

  .stats-row {
    margin-top: 70px;
    padding: 50px 0;
    background: #f8f9fa;
    border-radius: 20px;
  }

  .stat-item {
    text-align: center;
    padding: 20px;
  }

  .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(150, 42%, 35%);
    margin-bottom: 10px;
    display: block;
  }

  .stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: #555;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .about-section {
      padding: 50px 0;
    }

    .about-header h2 {
      font-size: 2rem;
    }

    .about-story-card {
      padding: 30px 25px;
    }

    .about-story-card h3 {
      font-size: 1.5rem;
    }

    .values-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .stat-number {
      font-size: 2.2rem;
    }

    .mission-box, .vision-box {
      padding: 35px 25px;
      margin-bottom: 20px;
    }
  }

#portfolio {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  #portfolio::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(150, 42%, 60%, 0.08);
    border-radius: 50%;
    z-index: 0;
  }

  #portfolio .container {
    position: relative;
    z-index: 1;
  }

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

  .portfolio-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(150, 42%, 20%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .portfolio-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(150, 42%, 35%);
    border-radius: 2px;
  }

  .portfolio-header p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

  .portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
  }

  .filter-btn {
    font-family: 'Nunito', sans-serif;
    padding: 12px 28px;
    background: #ffffff;
    color: hsl(150, 42%, 35%);
    border: 2px solid hsl(150, 42%, 35%);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(150, 42%, 35%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

  .portfolio-item {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
  }

  .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
  }

  .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
  }

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsl(150, 42%, 35%, 0.9), hsl(150, 42%, 20%, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
  }

  .portfolio-overlay i {
    font-size: 3rem;
    color: #ffffff;
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: hsl(150, 42%, 35%);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .portfolio-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .portfolio-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .modal-content {
    border-radius: 15px;
    border: none;
    overflow: hidden;
  }

  .modal-header {
    background: linear-gradient(135deg, hsl(150, 42%, 35%), hsl(150, 42%, 20%));
    color: #ffffff;
    border: none;
    padding: 25px 30px;
  }

  .modal-header h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    margin: 0;
  }

  .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
  }

  .modal-body {
    padding: 35px;
  }

  .modal-body img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
  }

  .modal-category {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: hsl(150, 42%, 35%);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
  }

  .modal-body h6 {
    font-family: 'Poppons', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
  }

  .modal-body p {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .modal-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
  }

  .modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .modal-details li {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .modal-details li:last-child {
    border-bottom: none;
  }

  .modal-details strong {
    color: hsl(150, 42%, 20%);
    font-weight: 700;
  }

  @media (max-width: 768px) {
    #portfolio {
      padding: 60px 0;
    }

    .portfolio-header h2 {
      font-size: 2.2rem;
    }

    .portfolio-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .portfolio-filters {
      gap: 10px;
    }

    .filter-btn {
      padding: 10px 20px;
      font-size: 0.85rem;
    }

    .modal-body {
      padding: 25px 20px;
    }
  }

  @media (max-width: 480px) {
    .portfolio-header h2 {
      font-size: 1.8rem;
    }

    .portfolio-header p {
      font-size: 1rem;
    }

    .portfolio-content h3 {
      font-size: 1.2rem;
    }
  }

#advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(150, 42%, 60%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

  #advantages .container {
    position: relative;
    z-index: 1;
  }

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

  #advantages .section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(150, 42%, 20%);
    margin-bottom: 15px;
  }

  #advantages .section-header p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  #advantages .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(150, 42%, 35%), hsl(150, 42%, 60%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(150, 42%, 60%);
  }

  #advantages .advantage-card:hover::before {
    transform: scaleX(1);
  }

  #advantages .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(150, 42%, 35%), hsl(150, 42%, 60%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
  }

  #advantages .icon-wrapper i {
    font-size: 32px;
    color: #ffffff;
  }

  #advantages .advantage-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(150, 42%, 20%);
    margin-bottom: 15px;
  }

  #advantages .advantage-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
  }

  @media (max-width: 768px) {
    #advantages {
      padding: 60px 0;
    }

    #advantages .section-header h2 {
      font-size: 2rem;
    }

    #advantages .advantage-card {
      margin-bottom: 25px;
    }
  }

  @media (max-width: 576px) {
    #advantages .section-header h2 {
      font-size: 1.75rem;
    }

    #advantages .icon-wrapper {
      width: 60px;
      height: 60px;
    }

    #advantages .icon-wrapper i {
      font-size: 28px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Nunito:wght@400;600&display=swap');

  #statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  #statistics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(150, 42%, 35%, 0.03);
    border-radius: 50%;
    z-index: 0;
  }

  #statistics::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(150, 42%, 60%, 0.04);
    border-radius: 50%;
    z-index: 0;
  }

  #statistics .container {
    position: relative;
    z-index: 1;
  }

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

  #statistics .section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(150, 42%, 35%);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }

  #statistics .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  #statistics .section-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  #statistics .stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(150, 42%, 35%), hsl(150, 42%, 60%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: hsl(150, 42%, 60%, 0.3);
  }

  #statistics .stat-card:hover::before {
    transform: scaleX(1);
  }

  #statistics .stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(150, 42%, 35%), hsl(150, 42%, 60%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s ease;
  }

  #statistics .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(58, 134, 91, 0.3);
  }

  #statistics .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(150, 42%, 35%);
    margin-bottom: 10px;
    line-height: 1;
  }

  #statistics .stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  #statistics .stat-context {
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
  }

  @media (max-width: 991px) {
    #statistics {
      padding: 60px 0;
    }

    #statistics .section-title {
      font-size: 2rem;
    }

    #statistics .stat-card {
      margin-bottom: 30px;
    }
  }

  @media (max-width: 767px) {
    #statistics {
      padding: 50px 0;
    }

    #statistics .section-title {
      font-size: 1.75rem;
    }

    #statistics .section-description {
      font-size: 1rem;
    }

    #statistics .stat-number {
      font-size: 2.3rem;
    }

    #statistics .stat-card {
      padding: 35px 25px;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(150, 42%, 20%) 0%, hsl(150, 42%, 15%) 100%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Nunito', sans-serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: hsl(150, 42%, 60%);
  margin-bottom: 25px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

footer p {
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

footer a {
  color: #d0d0d0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

footer a:hover {
  color: hsl(150, 42%, 60%);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.footer-contact-item i {
  color: hsl(150, 42%, 60%);
  margin-right: 12px;
  margin-top: 3px;
  font-size: 1.1rem;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0 25px;
}

.footer-bottom {
  text-align: center;
  color: #b0b0b0;
  font-size: 0.9rem;
  padding-top: 20px;
}

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

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

.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(150, 42%, 60%);
  margin-bottom: 20px;
  display: block;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(150, 42%, 35%) 0%, hsl(150, 42%, 25%) 100%);
  color: #ffffff;
  padding: 30px 0;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-family: 'Nunito', sans-serif;
  animation: slideUp 0.5s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.cookie-description {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.cookie-categories {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}

.cookie-category {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cookie-category-title {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.cookie-category-badge {
  background: hsl(150, 42%, 60%);
  color: hsl(150, 42%, 20%);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-left: 10px;
  font-weight: 600;
}

.cookie-category-badge.optional {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.cookie-category-desc {
  font-size: 0.85rem;
  color: #e0e0e0;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn-primary {
  background: hsl(150, 42%, 60%);
  color: hsl(150, 42%, 20%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-primary:hover {
  background: hsl(150, 42%, 65%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.cookie-btn-link {
  background: transparent;
  color: #ffffff;
  text-decoration: underline;
  padding: 12px 20px;
}

.cookie-btn-link:hover {
  color: hsl(150, 42%, 60%);
  text-decoration: none;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }

  .footer-brand {
    font-size: 1.5rem;
  }

  footer h5 {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  #cookieNotice {
    padding: 20px 0;
  }

  .cookie-title {
    font-size: 1.2rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

.blog-page { padding: 4rem 0; }
.blog-page h1 { margin-bottom: 3rem; text-align: center; }
.blog-card { margin-bottom: 2rem; transition: transform 0.3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card .card-img-top { height: 200px; object-fit: cover; }
.blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Nunito, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(150, 42%, 35%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Poppins, sans-serif; color: hsl(150, 42%, 20%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(150, 42%, 35%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(150, 42%, 20%); font-family: Poppins, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(150, 42%, 20%); font-family: Poppins, sans-serif; }
.blog-article a { color: hsl(150, 42%, 35%); }
.blog-article a:hover { color: hsl(150, 42%, 60%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(150, 42%, 35%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@400;600;700&display=swap');

  .contact-section {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  .contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(150, 42%, 60%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
  }

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

  .contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(150, 42%, 20%);
    text-align: center;
    margin-bottom: 15px;
  }

  .contact-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  .contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    border: 2px solid hsl(150, 42%, 90%);
    transition: all 0.3s ease;
  }

  .contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    border-color: hsl(150, 42%, 60%);
  }

  .contact-info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: hsl(150, 42%, 25%);
    margin-bottom: 30px;
  }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
  }

  .contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(150, 42%, 35%) 0%, hsl(150, 42%, 45%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
  }

  .contact-icon i {
    font-size: 1.3rem;
    color: #ffffff;
  }

  .contact-info-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
  }

  .contact-info-content p,
  .contact-info-content a {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
  }

  .contact-info-content a {
    color: hsl(150, 42%, 35%);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
  }

  .contact-info-content a:hover {
    color: hsl(150, 42%, 45%);
  }

  .contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid hsl(150, 42%, 90%);
  }

  .contact-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: hsl(150, 42%, 25%);
    margin-bottom: 30px;
  }

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

  .form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
  }

  .form-label .required {
    color: hsl(150, 42%, 35%);
    margin-left: 3px;
  }

  .form-control,
  .form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background: #f8f9fa;
  }

  .form-control:focus,
  .form-textarea:focus {
    outline: none;
    border-color: hsl(150, 42%, 35%);
    background: #ffffff;
    box-shadow: 0 0 0 4px hsla(150, 42%, 35%, 0.1);
  }

  .form-textarea {
    min-height: 150px;
    resize: vertical;
  }

  .submit-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, hsl(150, 42%, 35%) 0%, hsl(150, 42%, 45%) 100%);
    border: none;
    border-radius: 12px;
    padding: 16px 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 6px 20px hsla(150, 42%, 35%, 0.3);
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(150, 42%, 35%, 0.4);
    background: linear-gradient(135deg, hsl(150, 42%, 40%) 0%, hsl(150, 42%, 50%) 100%);
  }

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

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

  .working-hours-list li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
  }

  .working-hours-list li strong {
    color: #333;
    font-weight: 600;
  }

  .map-container {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid hsl(150, 42%, 90%);
  }

  .map-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .map-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23459c6d" stroke-width="2"/><path d="M50 30 L50 50 L65 50" stroke="%23459c6d" stroke-width="2" fill="none"/></svg>') center/80px no-repeat;
    opacity: 0.1;
  }

  .map-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #999;
    z-index: 1;
  }

  @media (max-width: 991px) {
    .contact-title {
      font-size: 2.3rem;
    }

    .contact-info-card {
      margin-bottom: 30px;
    }

    .contact-section {
      padding: 60px 0;
    }
  }

  @media (max-width: 767px) {
    .contact-title {
      font-size: 2rem;
    }

    .contact-subtitle {
      font-size: 1rem;
      margin-bottom: 40px;
    }

    .contact-form-card,
    .contact-info-card {
      padding: 30px 25px;
    }

    .map-placeholder {
      height: 350px;
    }

    .submit-btn {
      padding: 14px 40px;
      font-size: 1rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@300;400;600;700&display=swap');

  :root {
    --primary-color: hsl(150, 42%, 35%);
    --secondary-color: hsl(150, 42%, 20%);
    --accent-color: hsl(150, 42%, 60%);
  }

  body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-weight: 700;
  }

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
  }

  .policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
  }

  .policy-content h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }

  .policy-content h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }

  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }

  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
  }

  .policy-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .policy-intro p {
    margin-bottom: 0;
    font-size: 1.1rem;
  }

  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
  }

  .contact-box strong {
    color: var(--secondary-color);
  }

  .cookie-table {
    margin: 1.5rem 0;
  }

  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
  }

  .cookie-table td {
    vertical-align: middle;
  }

  .highlight-box {
    background-color: #e8f5e9;
    border-left: 4px solid var(--accent-color);
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 6px;
  }

  .last-updated {
    font-style: italic;
    color: #666;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
  }

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Nunito', sans-serif;
}

.faq-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-intro {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #ffffff;
}

.accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    background: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: hsl(150, 42%, 35%);
    color: #ffffff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%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");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%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-body {
    padding: 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    background: #ffffff;
}

.accordion-body ul {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
}

.accordion-body strong {
    color: hsl(150, 42%, 35%);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

.newsletter-section {
  background: linear-gradient(135deg, hsl(150, 42%, 35%) 0%, hsl(150, 42%, 20%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  z-index: 1;
}

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

.newsletter-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.newsletter-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1.125rem;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.newsletter-email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
}

.newsletter-email-input:focus {
  outline: none;
  border-color: hsl(150, 42%, 60%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.newsletter-email-input::placeholder {
  color: #999;
}

.newsletter-submit-btn {
  padding: 16px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(150, 42%, 20%);
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: hsl(150, 42%, 60%);
  border-color: hsl(150, 42%, 60%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.newsletter-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.newsletter-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f8f9fa;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
}

.newsletter-benefit-icon {
  width: 24px;
  height: 24px;
  background: hsl(150, 42%, 60%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-benefit-icon svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0;
  }

  .newsletter-heading {
    font-size: 2rem;
  }

  .newsletter-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .newsletter-input-group {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-email-input {
    min-width: 100%;
  }

  .newsletter-submit-btn {
    width: 100%;
  }

  .newsletter-benefits {
    gap: 20px;
    margin-top: 30px;
  }

  .newsletter-benefit-item {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .newsletter-heading {
    font-size: 1.75rem;
  }

  .newsletter-benefits {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.hero-section {
  background: linear-gradient(135deg, hsl(150, 42%, 97%) 0%, hsl(150, 42%, 92%) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(150, 42%, 60%, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(150, 42%, 35%, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.hero-container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(150, 42%, 20%);
  margin-bottom: 1.2rem;
  line-height: 1.2;
  text-align: center;
}

.hero-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(150, 42%, 35%);
  margin-bottom: 2rem;
  text-align: center;
}

.hero-image-wrapper {
  margin: 2.5rem 0;
  text-align: center;
}

.hero-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.hero-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2.5rem;
  text-align: left;
}

.hero-advantages {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hero-advantages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-advantages li {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: #333;
  padding: 0.75rem 0;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.6;
}

.hero-advantages li:not(:last-child) {
  border-bottom: 1px solid hsl(150, 42%, 90%);
}

.hero-advantages li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: hsl(150, 42%, 35%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-advantages li::after {
  content: '✓';
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 36px;
  background: hsl(150, 42%, 35%);
  color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
  background: hsl(150, 42%, 30%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-hero-secondary {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 36px;
  background: #fff;
  color: hsl(150, 42%, 35%);
  border: 2px solid hsl(150, 42%, 35%);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: hsl(150, 42%, 35%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 80px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section h2 {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-advantages li {
    font-size: 0.95rem;
    padding-left: 2.2rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    font-size: 1rem;
    padding: 12px 28px;
    width: 100%;
  }

  .hero-cta {
    flex-direction: column;
  }
}

.offer-section {
    background: linear-gradient(135deg, hsl(150, 42%, 35%) 0%, hsl(150, 42%, 20%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(150, 42%, 60%);
    opacity: 0.1;
    border-radius: 50%;
  }
  
  .offer-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(150, 42%, 60%);
    opacity: 0.08;
    border-radius: 50%;
  }
  
  .offer-container {
    position: relative;
    z-index: 2;
  }
  
  .offer-badge {
    display: inline-block;
    background: hsl(150, 42%, 60%);
    color: hsl(150, 42%, 20%);
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  
  .offer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  
  .offer-description {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: #f8f9fa;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
  }
  
  .offer-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    margin-top: 40px;
  }
  
  .deadline-box {
    background: linear-gradient(135deg, hsl(150, 42%, 60%) 0%, hsl(150, 42%, 45%) 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .deadline-label {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: hsl(150, 42%, 20%);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .deadline-date {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .calendar-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(150, 42%, 35%);
    font-size: 28px;
  }
  
  .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
  }
  
  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.6;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
    background: hsl(150, 42%, 95%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(150, 42%, 35%);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .discount-highlight {
    background: hsl(150, 42%, 95%);
    border-left: 4px solid hsl(150, 42%, 35%);
    padding: 25px 30px;
    border-radius: 10px;
    margin-bottom: 40px;
  }
  
  .discount-text {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: hsl(150, 42%, 25%);
    margin: 0;
  }
  
  .discount-subtext {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #555555;
    margin: 8px 0 0 0;
  }
  
  .offer-cta-btn {
    display: inline-block;
    background: hsl(150, 42%, 35%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(52, 111, 81, 0.3);
  }
  
  .offer-cta-btn:hover {
    background: hsl(150, 42%, 30%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 111, 81, 0.4);
    color: #ffffff;
  }
  
  .cta-wrapper {
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .offer-section {
      padding: 60px 0;
    }
    
    .offer-heading {
      font-size: 36px;
    }
    
    .offer-description {
      font-size: 16px;
    }
    
    .offer-card {
      padding: 35px 25px;
    }
    
    .deadline-date {
      font-size: 32px;
      flex-direction: column;
      gap: 10px;
    }
    
    .discount-text {
      font-size: 26px;
    }
    
    .benefit-item {
      font-size: 16px;
    }
    
    .offer-cta-btn {
      font-size: 16px;
      padding: 15px 40px;
    }
  }

.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Nunito', sans-serif;
}

.testimonials-section h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(150, 42%, 20%);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.testimonials-section .section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 4px solid hsl(150, 42%, 60%);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(150, 42%, 35%) 0%, hsl(150, 42%, 25%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(150, 42%, 60%);
}

.testimonial-card.featured .testimonial-text {
  color: #ffffff;
}

.testimonial-card.featured .customer-name {
  color: #ffffff;
}

.testimonial-card.featured .customer-location {
  color: rgba(255,255,255,0.85);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: hsl(150, 42%, 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-right: 15px;
  flex-shrink: 0;
}

.testimonial-card.featured .testimonial-avatar {
  background: #ffffff;
  color: hsl(150, 42%, 35%);
}

.testimonial-info {
  flex-grow: 1;
}

.customer-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.customer-location {
  font-size: 0.9rem;
  color: #777;
  display: flex;
  align-items: center;
}

.customer-location i {
  margin-right: 5px;
  font-size: 0.85rem;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

.star {
  color: #ffc107;
  font-size: 1.1rem;
}

.star.empty {
  color: #ddd;
}

.testimonial-card.featured .star.empty {
  color: rgba(255,255,255,0.3);
}

.testimonial-text {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
  flex-grow: 1;
  margin-bottom: 15px;
}

.testimonial-quote {
  font-size: 3rem;
  color: hsl(150, 42%, 60%);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.3;
}

.testimonial-card.featured .testimonial-quote {
  color: #ffffff;
}

.testimonial-badge {
  display: inline-block;
  background: hsl(150, 42%, 95%);
  color: hsl(150, 42%, 35%);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
}

.testimonial-card.featured .testimonial-badge {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}

.testimonial-card.compact {
  padding: 25px;
}

.testimonial-card.compact .testimonial-text {
  font-size: 0.95rem;
}

.testimonial-card.detailed {
  padding: 35px;
}

.testimonial-highlight {
  background: hsl(150, 42%, 95%);
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  font-size: 0.95rem;
  color: #555;
}

.testimonial-card.featured .testimonial-highlight {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-section h2 {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

#credentials {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Nunito', sans-serif;
  }

  #credentials .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 15px;
  }

  #credentials .section-subtitle {
    font-size: 1.05rem;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .credential-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: hsl(150, 42%, 60%);
  }

  .credential-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
  }

  .credential-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
  }

  .credential-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
  }

  @media (max-width: 991px) {
    #credentials {
      padding: 50px 0;
    }

    #credentials .section-title {
      font-size: 1.9rem;
    }

    .credential-card {
      margin-bottom: 20px;
    }
  }

  @media (max-width: 767px) {
    #credentials {
      padding: 40px 0;
    }

    #credentials .section-title {
      font-size: 1.7rem;
    }

    .credential-icon {
      font-size: 2.5rem;
    }

    .credential-title {
      font-size: 1rem;
    }
  }

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Nunito', sans-serif;
  }

  .services-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

  .services-section .lead-text {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

  .service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(56, 116, 87, 0.2);
    border-color: hsl(150, 42%, 60%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(150, 42%, 35%) 0%, hsl(150, 42%, 45%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(150, 42%, 60%) 0%, hsl(150, 42%, 70%) 100%);
    transform: rotate(360deg);
  }

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

  .service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

  .service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
  }

  .service-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(150, 42%, 35%);
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .service-terms {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    font-style: italic;
  }

  .services-grid {
    margin-top: 3rem;
  }

  @media (max-width: 768px) {
    .services-section {
      padding: 60px 0;
    }

    .services-section h2 {
      font-size: 2rem;
    }

    .service-card {
      margin-bottom: 1.5rem;
    }
  }

.blog-preview {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Nunito', sans-serif;
}

.blog-preview h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  text-align: center;
}

.blog-preview .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #777;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-meta-item i {
  color: hsl(150, 42%, 35%);
  font-size: 0.95rem;
}

.blog-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.875rem;
  line-height: 1.4;
}

.blog-card-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: hsl(150, 42%, 35%);
}

.blog-card-excerpt {
  color: #555;
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-card-link {
  color: hsl(150, 42%, 35%);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.blog-card-link:hover {
  color: hsl(150, 42%, 25%);
  gap: 0.75rem;
}

.blog-card-link i {
  transition: transform 0.3s ease;
}

.blog-card-link:hover i {
  transform: translateX(4px);
}

.view-all-btn {
  display: inline-block;
  margin: 3rem auto 0;
  padding: 14px 40px;
  background: hsl(150, 42%, 35%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(63, 142, 99, 0.25);
}

.view-all-btn:hover {
  background: hsl(150, 42%, 30%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(63, 142, 99, 0.35);
}

.btn-container {
  text-align: center;
}

@media (max-width: 768px) {
  .blog-preview {
    padding: 60px 0;
  }

  .blog-preview h2 {
    font-size: 2rem;
  }

  .blog-card-img {
    height: 200px;
  }

  .blog-card-body {
    padding: 1.5rem;
  }

  .blog-card-title {
    font-size: 1.2rem;
  }

  .view-all-btn {
    margin-top: 2rem;
  }
}

.disclaimer-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  font-family: 'Nunito', sans-serif;
}

.disclaimer-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.disclaimer-icon {
  text-align: center;
  margin-bottom: 2rem;
}

.disclaimer-icon i {
  font-size: 3.5rem;
  color: hsl(150, 42%, 35%);
  opacity: 0.9;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.disclaimer-text {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }

  .disclaimer-section h2 {
    font-size: 2rem;
  }

  .disclaimer-content {
    padding: 2rem 1.5rem;
  }

  .disclaimer-icon i {
    font-size: 3rem;
  }

  .disclaimer-text {
    font-size: 1rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@400;600;700&display=swap');

  :root {
    --primary-color: hsl(150, 42%, 35%);
    --secondary-color: hsl(150, 42%, 20%);
    --accent-color: hsl(150, 42%, 60%);
  }

  body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content {
    max-width: 1000px;
    margin: 0 auto;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .policy-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
  }

  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }

  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.75rem;
  }

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .info-box h3 {
    color: white;
    margin-top: 0;
  }

  .info-box a {
    color: white;
    text-decoration: underline;
  }

  .info-box a:hover {
    color: #f0f0f0;
  }

  .section-card {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }

  .highlight {
    background-color: rgba(72, 149, 105, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-weight: 600;
  }

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@400;600;700&display=swap');

  :root {
    --primary-color: hsl(150, 42%, 35%);
    --secondary-color: hsl(150, 42%, 20%);
    --accent-color: hsl(150, 42%, 60%);
  }

  .policy-content {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }

  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }

  .policy-content ul,
  .policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.75rem;
  }

  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }

  .info-box {
    background-color: rgba(60, 130, 90, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

  .contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 3rem;
  }

  .contact-info h3 {
    color: white;
    margin-top: 0;
  }

  .contact-info a {
    color: white;
    text-decoration: underline;
  }

  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 2rem 0;
    border: none;
  }

  .last-updated {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
  }