:root {
            --primary-color: hsl(110, 50%, 30%);
            --secondary-color: hsl(110, 50%, 15%);
            --accent-color: hsl(110, 50%, 55%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(80, 120, 60, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(110, 50%%, 30%%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

  #about {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    background-color: #ffffff;
    padding: 80px 0;
  }

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

  #about .section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(110, 50%, 30%);
    margin-bottom: 20px;
  }

  #about .section-header .subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
  }

  #about .about-content {
    margin-bottom: 50px;
  }

  #about .about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
  }

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

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

  #about .text-content {
    padding: 20px 0;
  }

  #about .text-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: hsl(110, 50%, 30%);
    margin-bottom: 25px;
  }

  #about .text-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
  }

  #about .values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin-top: 60px;
    border-radius: 15px;
  }

  #about .values-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(110, 50%, 30%);
    text-align: center;
    margin-bottom: 50px;
  }

  #about .value-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }

  #about .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  }

  #about .value-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(110, 50%, 30%);
    margin-bottom: 15px;
  }

  #about .value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
  }

  #about .stats-row {
    margin-top: 50px;
    padding: 40px 0;
    background-color: hsl(110, 50%, 30%);
    border-radius: 12px;
  }

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

  #about .stat-item .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
  }

  #about .stat-item .stat-label {
    font-size: 1.1rem;
    color: #f0f0f0;
    font-weight: 400;
  }

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

    #about .section-header h2 {
      font-size: 2.2rem;
    }

    #about .text-content h3 {
      font-size: 1.6rem;
    }

    #about .values-section h3 {
      font-size: 1.8rem;
    }

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

    #about .text-content p {
      text-align: left;
    }
  }

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

  .portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(110, 50%, 30%), hsl(110, 50%, 55%));
  }

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

  .portfolio-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    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(110, 50%, 55%);
    border-radius: 2px;
  }

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

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

  .filter-btn {
    font-family: 'Source Sans Pro', sans-serif;
    padding: 12px 28px;
    border: 2px solid hsl(110, 50%, 30%);
    background: transparent;
    color: hsl(110, 50%, 30%);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(110, 50%, 30%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px 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: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
  }

  .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px 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, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .view-details {
    font-family: 'Source Sans Pro', sans-serif;
    padding: 12px 30px;
    background: hsl(110, 50%, 55%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
  }

  .portfolio-item:hover .view-details {
    transform: translateY(0);
    opacity: 1;
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Source Sans Pro', sans-serif;
    display: inline-block;
    padding: 6px 16px;
    background: hsl(110, 50%, 95%);
    color: hsl(110, 50%, 30%);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .portfolio-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
  }

  .portfolio-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(110, 50%, 30%), hsl(110, 50%, 40%));
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
    border: none;
  }

  .modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
  }

  .btn-close {
    filter: brightness(0) invert(1);
  }

  .modal-body {
    padding: 35px;
  }

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

  .modal-detail-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: hsl(110, 50%, 30%);
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .modal-detail-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

    .portfolio-image {
      height: 240px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

  #advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Source Sans Pro', sans-serif;
  }

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

  #advantages .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #advantages .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(110, 50%, 30%);
    border-radius: 2px;
  }

  #advantages .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
  }

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 4px 15px 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(110, 50%, 30%), hsl(110, 50%, 55%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: hsl(110, 50%, 55%);
  }

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

  #advantages .icon-wrapper {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(110, 50%, 30%), hsl(110, 50%, 55%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
  }

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

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

  #advantages .advantage-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
  }

  #advantages .advantage-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
  }

  #advantages .row {
    row-gap: 30px;
  }

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

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

    #advantages .section-subtitle {
      font-size: 1rem;
    }

    #advantages .advantage-card {
      padding: 30px 20px;
    }

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

    #advantages .icon-wrapper i {
      font-size: 1.75rem;
    }

    #advantages .advantage-title {
      font-size: 1.2rem;
    }
  }

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro: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: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(110, 50%, 30%) 0%, hsl(110, 50%, 55%) 100%);
  }
  
  .statistics-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .statistics-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .statistics-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(110, 50%, 30%);
  }
  
  .statistics-header p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-top: 25px;
  }
  
  .stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    height: 100%;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
  }
  
  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: hsl(110, 50%, 55%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: hsl(110, 50%, 55%);
  }
  
  .stat-card:hover::before {
    transform: scaleX(1);
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(110, 50%, 30%) 0%, hsl(110, 50%, 55%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }
  
  .stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
  }
  
  .stat-icon i {
    font-size: 32px;
    color: #ffffff;
  }
  
  .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(110, 50%, 30%);
    margin-bottom: 10px;
    line-height: 1.2;
    display: block;
  }
  
  .stat-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
  }
  
  .stat-context {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-top: 5px;
  }
  
  .statistics-row {
    margin-bottom: 30px;
  }
  
  @media (max-width: 991px) {
    .statistics-header h2 {
      font-size: 2rem;
    }
    
    .stat-number {
      font-size: 2rem;
    }
    
    #statistics {
      padding: 60px 0;
    }
  }
  
  @media (max-width: 767px) {
    .statistics-header h2 {
      font-size: 1.75rem;
    }
    
    .stat-card {
      margin-bottom: 20px;
      padding: 30px 20px;
    }
    
    .stat-icon {
      width: 60px;
      height: 60px;
    }
    
    .stat-icon i {
      font-size: 28px;
    }
    
    .stat-number {
      font-size: 1.8rem;
    }
    
    #statistics {
      padding: 50px 0;
    }
  }
  
  @media (max-width: 575px) {
    .statistics-header {
      margin-bottom: 40px;
    }
    
    .stat-label {
      font-size: 0.95rem;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(110, 50%, 15%) 0%, hsl(110, 50%, 20%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  font-family: 'Source Sans Pro', sans-serif;
}

footer h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

footer p, footer li, footer a {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.8;
}

footer a {
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: hsl(110, 50%, 55%);
  padding-left: 5px;
}

footer .company-description {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

footer .contact-info li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

footer .contact-info li i {
  color: hsl(110, 50%, 55%);
  margin-right: 10px;
  margin-top: 3px;
  font-size: 1rem;
}

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

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

footer .footer-links a {
  display: inline-block;
}

footer .business-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

footer .business-hours p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

footer .business-hours p:last-child {
  margin-bottom: 0;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

footer .footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #c0c0c0;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 2rem 0;
  border-top: 3px solid hsl(110, 50%, 30%);
  font-family: 'Source Sans Pro', sans-serif;
}

#cookieNotice .cookie-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

#cookieNotice .cookie-description {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

#cookieNotice .cookie-categories {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

#cookieNotice .cookie-category {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

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

#cookieNotice .cookie-category-title {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

#cookieNotice .cookie-category-desc {
  color: #666;
  font-size: 0.88rem;
  margin: 0;
}

#cookieNotice .cookie-required {
  display: inline-block;
  background: hsl(110, 50%, 30%);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 8px;
  font-weight: 600;
}

#cookieNotice .cookie-optional {
  display: inline-block;
  background: #6c757d;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 8px;
  font-weight: 600;
}

#cookieNotice .cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

#cookieNotice .btn-accept-all {
  background: hsl(110, 50%, 30%);
  color: #ffffff;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

#cookieNotice .btn-accept-all:hover {
  background: hsl(110, 50%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#cookieNotice .btn-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

#cookieNotice .btn-reject:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#cookieNotice .btn-manage {
  background: transparent;
  color: hsl(110, 50%, 30%);
  border: 2px solid hsl(110, 50%, 30%);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}

#cookieNotice .btn-manage:hover {
  background: hsl(110, 50%, 30%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1.5rem;
  }
  
  footer h5 {
    margin-top: 2rem;
  }
  
  footer h5:first-child {
    margin-top: 0;
  }
  
  #cookieNotice {
    padding: 1.5rem 0;
  }
  
  #cookieNotice .cookie-title {
    font-size: 1.2rem;
  }
  
  #cookieNotice .cookie-buttons {
    flex-direction: column;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    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: Source Sans Pro, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(110, 50%, 30%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Montserrat, sans-serif; color: hsl(110, 50%, 15%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(110, 50%, 30%); }
.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(110, 50%, 15%); font-family: Montserrat, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(110, 50%, 15%); font-family: Montserrat, sans-serif; }
.blog-article a { color: hsl(110, 50%, 30%); }
.blog-article a:hover { color: hsl(110, 50%, 55%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(110, 50%, 30%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

.contact-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section .lead {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid hsl(110, 50%, 30%);
}

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

.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(110, 50%, 30%) 0%, hsl(110, 50%, 15%) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.25rem;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.contact-info-content h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-content a {
    color: hsl(110, 50%, 30%);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: hsl(110, 50%, 15%);
}

.contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #222;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: hsl(110, 50%, 30%);
    box-shadow: 0 0 0 0.2rem rgba(82, 153, 61, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

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

.btn-submit {
    background: linear-gradient(135deg, hsl(110, 50%, 30%) 0%, hsl(110, 50%, 15%) 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82, 153, 61, 0.3);
}

.required-mark {
    color: hsl(110, 50%, 30%);
    margin-left: 2px;
}

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

.hours-list li {
    padding: 0.4rem 0;
    color: #555;
    display: flex;
    justify-content: space-between;
}

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

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

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .btn-submit {
        padding: 0.875rem 2rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(110, 50%, 30%);
    --secondary-color: hsl(110, 50%, 15%);
    --accent-color: hsl(110, 50%, 55%);
  }
  
  .policy-content {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Montserrat', 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;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.25rem;
    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-intro {
    background: linear-gradient(135deg, rgba(110, 175, 65, 0.1) 0%, rgba(55, 88, 33, 0.05) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .policy-section {
    background: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
  }
  
  .policy-section:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }
  
  .contact-box a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-box a:hover {
    color: var(--accent-color);
  }
  
  .cookie-type-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

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

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

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

  .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-accordion .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;
  }

  .faq-accordion .accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #222;
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(110, 50%, 30%);
    color: #ffffff;
    box-shadow: none;
  }

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

  .faq-accordion .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");
  }

  .faq-accordion .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");
  }

  .faq-accordion .accordion-body {
    padding: 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    background-color: #ffffff;
  }

  .faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, hsl(110, 50%, 30%) 0%, hsl(110, 50%, 15%) 100%);
    border-radius: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .faq-cta p {
    color: #f8f9fa;
    margin-bottom: 1.5rem;
  }

  .faq-cta .btn-contact {
    background-color: hsl(110, 50%, 55%);
    color: #222;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
  }

  .faq-cta .btn-contact:hover {
    background-color: hsl(110, 50%, 65%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

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

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

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

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

    .faq-cta h3 {
      font-size: 1.25rem;
    }
  }

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

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

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

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

.newsletter-icon {
  width: 70px;
  height: 70px;
  background: hsl(110, 50%, 55%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.newsletter-icon svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}

.newsletter-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.newsletter-description {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.125rem;
  color: #f8f9fa;
  margin-bottom: 35px;
  line-height: 1.7;
}

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

.form-group-newsletter {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

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

.newsletter-input:focus {
  outline: none;
  border-color: hsl(110, 50%, 55%);
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

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

.newsletter-submit {
  padding: 16px 40px;
  background: hsl(110, 50%, 55%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.newsletter-submit:hover {
  background: hsl(110, 50%, 45%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

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

.newsletter-privacy {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin-top: 15px;
}

.newsletter-privacy a {
  color: hsl(110, 50%, 55%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.newsletter-privacy a:hover {
  color: hsl(110, 50%, 65%);
  text-decoration: underline;
}

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

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

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

  .form-group-newsletter {
    flex-direction: column;
    gap: 15px;
  }

  .newsletter-submit {
    width: 100%;
    padding: 16px 30px;
  }

  .newsletter-input {
    padding: 14px 20px;
  }
}

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

  .newsletter-icon {
    width: 60px;
    height: 60px;
  }

  .newsletter-icon svg {
    width: 30px;
    height: 30px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Source+Sans+Pro:wght@300;400;600&display=swap');
  
  .hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
  }
  
  .hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: hsl(110, 50%, 15%);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: hsl(110, 50%, 30%);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-section p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 500px;
  }
  
  .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .hero-image-wrapper:hover img {
    transform: scale(1.05);
  }
  
  .advantages-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }
  
  .advantages-list li {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.05rem;
    color: #333;
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }
  
  .advantages-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: hsl(110, 50%, 55%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .advantages-list li i {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 0.9rem;
  }
  
  .hero-cta-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }
  
  .btn-hero-primary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background-color: hsl(110, 50%, 30%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 112, 42, 0.3);
  }
  
  .btn-hero-primary:hover {
    background-color: hsl(110, 50%, 25%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 112, 42, 0.4);
  }
  
  .btn-hero-secondary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background-color: transparent;
    color: hsl(110, 50%, 30%);
    padding: 1rem 2.5rem;
    border: 2px solid hsl(110, 50%, 30%);
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .btn-hero-secondary:hover {
    background-color: hsl(110, 50%, 30%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 112, 42, 0.3);
  }
  
  @media (max-width: 991px) {
    .hero-section {
      padding: 60px 0;
    }
    
    .hero-section h1 {
      font-size: 2.5rem;
    }
    
    .hero-section h2 {
      font-size: 1.3rem;
    }
    
    .hero-image-wrapper {
      min-height: 400px;
      margin-bottom: 3rem;
    }
    
    .hero-cta-wrapper {
      justify-content: center;
    }
  }
  
  @media (max-width: 767px) {
    .hero-section h1 {
      font-size: 2rem;
    }
    
    .hero-section h2 {
      font-size: 1.2rem;
    }
    
    .hero-section p {
      font-size: 1rem;
    }
    
    .hero-image-wrapper {
      min-height: 300px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
      width: 100%;
      text-align: center;
      padding: 0.9rem 2rem;
      font-size: 1rem;
    }
  }

.blog-preview-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.blog-preview-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.blog-preview-section .section-subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.9rem;
  color: #888;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta-item i {
  color: hsl(110, 50%, 30%);
  font-size: 0.95rem;
}

.blog-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  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(110, 50%, 30%);
}

.blog-card-excerpt {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.blog-card-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: hsl(110, 50%, 30%);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.blog-card-link:hover {
  color: hsl(110, 50%, 25%);
  gap: 12px;
}

.blog-card-link i {
  font-size: 0.9rem;
}

.view-all-container {
  text-align: center;
  margin-top: 50px;
}

.btn-view-all {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: hsl(110, 50%, 30%);
  border: 2px solid hsl(110, 50%, 30%);
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-view-all:hover {
  background-color: hsl(110, 50%, 25%);
  border-color: hsl(110, 50%, 25%);
  color: #fff;
  transform: translateY(-2px);
}

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

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

  .blog-card-image {
    height: 220px;
  }

  .blog-card-content {
    padding: 25px;
  }

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

  .view-all-container {
    margin-top: 40px;
  }
}

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

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(110, 50%, 30%), hsl(110, 50%, 55%));
}

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

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.section-header p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px 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(110, 50%, 55%);
}

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

.testimonial-card.featured {
    background: linear-gradient(135deg, hsl(110, 50%, 30%) 0%, hsl(110, 50%, 15%) 100%);
    border-left: 4px solid hsl(110, 50%, 55%);
    color: #ffffff;
}

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

.testimonial-card.featured .stars i {
    color: hsl(110, 50%, 55%);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.customer-info {
    flex: 1;
}

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

.customer-location {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.customer-location i {
    color: hsl(110, 50%, 30%);
    font-size: 0.9rem;
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: hsl(110, 50%, 55%);
    font-size: 1.1rem;
}

.stars i.far {
    color: #ddd;
}

.testimonial-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.9rem;
    color: #888;
}

.testimonial-card.featured .testimonial-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.service-tag {
    display: inline-block;
    background: hsl(110, 50%, 95%);
    color: hsl(110, 50%, 25%);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.compact-card {
    padding: 25px;
}

.compact-card .testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.detailed-card {
    padding: 35px;
}

.quote-icon {
    font-size: 2.5rem;
    color: hsl(110, 50%, 55%);
    opacity: 0.2;
    margin-bottom: 15px;
}

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

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

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-header {
        flex-direction: column;
        gap: 10px;
    }
}

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

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

  .services-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

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

  .services-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    height: 100%;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(72, 120, 50, 0.15);
    border-color: hsl(110, 50%, 55%);
  }

  .service-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(110, 50%, 30%) 0%, hsl(110, 50%, 40%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

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

  .service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(110, 50%, 40%) 0%, hsl(110, 50%, 55%) 100%);
  }

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

  .service-icon-wrapper i {
    font-size: 32px;
    color: #ffffff;
    z-index: 1;
  }

  .service-content {
    flex: 1;
  }

  .service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    transition: color 0.3s ease;
  }

  .service-card:hover .service-title {
    color: hsl(110, 50%, 30%);
  }

  .service-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .service-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
  }

  .service-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(110, 50%, 30%);
  }

  .service-price-label {
    font-size: 0.85rem;
    color: #777;
    font-weight: 400;
  }

  .service-terms {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .service-terms i {
    color: hsl(110, 50%, 55%);
    font-size: 0.9rem;
  }

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

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

    .service-card {
      flex-direction: column;
      text-align: center;
      padding: 25px;
    }

    .service-icon-wrapper {
      margin: 0 auto;
    }

    .service-details {
      flex-direction: column;
      text-align: center;
    }

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

  @media (max-width: 576px) {
    .services-section .section-title {
      font-size: 1.75rem;
    }

    .service-price {
      font-size: 1.3rem;
    }
  }

.offer-section {
  background: linear-gradient(135deg, hsl(110, 50%, 30%) 0%, hsl(110, 50%, 15%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(110, 50%, 55%);
  opacity: 0.1;
  border-radius: 50%;
}

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(110, 50%, 55%);
  opacity: 0.08;
  border-radius: 50%;
}

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

.offer-badge {
  display: inline-block;
  background: hsl(110, 50%, 55%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.offer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: #f8f9fa;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
}

.offer-deadline-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  text-align: center;
}

.deadline-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 600;
}

.deadline-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: hsl(110, 50%, 30%);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  fill: hsl(110, 50%, 55%);
}

.offer-benefits {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: hsl(110, 50%, 55%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.benefit-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

.offer-cta {
  text-align: center;
}

.cta-button {
  display: inline-block;
  background: hsl(110, 50%, 55%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: none;
}

.cta-button:hover {
  background: hsl(110, 50%, 45%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.discount-highlight {
  font-size: 72px;
  font-weight: 700;
  color: hsl(110, 50%, 55%);
  line-height: 1;
  margin-bottom: 16px;
}

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

  .offer-heading {
    font-size: 36px;
  }

  .offer-description {
    font-size: 16px;
  }

  .deadline-date {
    font-size: 40px;
    flex-direction: column;
    gap: 12px;
  }

  .calendar-icon {
    width: 48px;
    height: 48px;
  }

  .discount-highlight {
    font-size: 56px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .offer-deadline-card {
    padding: 30px 20px;
  }

  .offer-benefits {
    padding: 30px 20px;
  }
}

#credentials {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }

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

  #credentials .section-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    color: #666;
    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: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    border-color: hsl(110, 50%, 55%);
  }

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

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

  .credential-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.9rem;
    color: #777;
    margin: 0;
  }

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

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

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

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

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

    .credential-card {
      padding: 20px 15px;
    }
  }

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

.disclaimer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(110, 50%, 30%), hsl(110, 50%, 55%));
}

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header {
  text-align: center;
  margin-bottom: 50px;
}

.disclaimer-icon {
  font-size: 3.5rem;
  color: hsl(110, 50%, 30%);
  margin-bottom: 20px;
  display: inline-block;
}

.disclaimer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.disclaimer-content {
  background: #ffffff;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid hsl(110, 50%, 30%);
}

.disclaimer-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
  text-align: justify;
}

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

  .disclaimer-title {
    font-size: 2rem;
  }

  .disclaimer-content {
    padding: 30px 25px;
  }

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

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

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

  .disclaimer-title {
    font-size: 1.75rem;
  }

  .disclaimer-content {
    padding: 25px 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

  :root {
    --primary-color: hsl(110, 50%, 30%);
    --secondary-color: hsl(110, 50%, 15%);
    --accent-color: hsl(110, 50%, 55%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Montserrat', 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.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.3rem;
    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: 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.5rem;
  }

  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }

  .policy-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-color);
  }

  .contact-box {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }

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

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

  .contact-box a:hover {
    color: var(--accent-color);
  }

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

  .highlight-box {
    background: #fff;
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
  }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

  :root {
    --primary-color: hsl(110, 50%, 30%);
    --secondary-color: hsl(110, 50%, 15%);
    --accent-color: hsl(110, 50%, 55%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Montserrat', 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.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    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.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }

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

  .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;
    font-size: 1.05rem;
  }

  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }

  .contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .contact-box h3 {
    color: white;
    margin-bottom: 1.25rem;
  }

  .contact-box a {
    color: var(--accent-color);
    font-weight: 600;
  }

  .contact-box a:hover {
    color: white;
  }

  .effective-date {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 4px;
  }

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