:root {
    --primary-color: hsl(161, 49%, 41%);
    --secondary-color: hsl(161, 49%, 26%);
    --accent-color: hsl(161, 49%, 66%);
  }
  
  body {
    font-family: 'Merriweather', serif;
    color: #333;
    line-height: 1.7;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
  }
  
  .navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1rem 0;
  }
  
  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .navbar-brand:hover {
    color: var(--secondary-color);
  }
  
  .nav-link {
    color: #333;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: var(--primary-color);
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary-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(51, 51, 51, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

.about-section {
    padding: 80px 0;
    background: #ffffff;
  }
  
  .about-section h2 {
    font-family: 'Lato', sans-serif;
    color: hsl(161, 49%, 26%);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .about-section h3 {
    font-family: 'Lato', sans-serif;
    color: hsl(161, 49%, 41%);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .about-section p, .about-section li {
    font-family: 'Merriweather', serif;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  
  .about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .about-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid hsl(161, 49%, 41%);
  }
  
  .values-list {
    list-style: none;
    padding: 0;
  }
  
  .values-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
  }
  
  .values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(161, 49%, 41%);
    font-weight: bold;
    font-size: 1.3rem;
  }
  
  @media (max-width: 768px) {
    .about-section {
      padding: 50px 0;
    }
    
    .about-section h2 {
      font-size: 2rem;
    }
    
    .about-image {
      height: 250px;
      margin-bottom: 20px;
    }
  }

.portfolio-section {
    padding: 80px 0;
    background: #f8f9fa;
  }

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

  .portfolio-section .lead {
    font-family: 'Merriweather', serif;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

  .filter-buttons {
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .filter-btn {
    font-family: 'Lato', sans-serif;
    padding: 10px 24px;
    border: 2px solid hsl(161, 49%, 41%);
    background: #fff;
    color: hsl(161, 49%, 26%);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(161, 49%, 41%);
    color: #fff;
  }

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

  .portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

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

  .portfolio-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
  }

  .portfolio-content {
    padding: 24px;
  }

  .portfolio-category {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: hsl(161, 49%, 41%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }

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

  .portfolio-description {
    font-family: 'Merriweather', serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .modal-header {
    background: hsl(161, 49%, 41%);
    color: #fff;
    border-bottom: none;
  }

  .modal-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
  }

  .modal-body {
    padding: 30px;
  }

  .modal-body h5 {
    font-family: 'Lato', sans-serif;
    color: hsl(161, 49%, 26%);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .modal-body p,
  .modal-body ul {
    font-family: 'Merriweather', serif;
    color: #555;
    line-height: 1.7;
  }

  .modal-body ul {
    padding-left: 20px;
  }

  .modal-body ul li {
    margin-bottom: 8px;
  }

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

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

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

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

    .filter-buttons {
      justify-content: flex-start;
    }
  }

.advantages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
  }
  
  .advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(161, 49%, 41%) 0%, hsl(161, 49%, 66%) 100%);
  }

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

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

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

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

  .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, hsl(161, 49%, 41%), hsl(161, 49%, 66%));
    transition: left 0.5s ease;
  }

  .advantage-card:hover::before {
    left: 0;
  }

  .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(42, 129, 105, 0.2);
    border-color: hsl(161, 49%, 66%);
  }

  .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(161, 49%, 41%) 0%, hsl(161, 49%, 26%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
  }

  .advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(161, 49%, 26%) 0%, hsl(161, 49%, 41%) 100%);
  }

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

  .advantage-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 14px;
  }

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

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

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

    .advantage-card {
      margin-bottom: 25px;
      padding: 28px 20px;
    }
  }

#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(161, 49%, 66%);
    opacity: 0.05;
    border-radius: 50%;
  }

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

  #statistics .section-subtitle {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    border: 2px solid transparent;
    height: 100%;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: hsl(161, 49%, 66%);
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(161, 49%, 41%) 0%, hsl(161, 49%, 26%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s ease;
  }

  .stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
  }

  .stat-number {
    font-family: 'Lato', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: hsl(161, 49%, 26%);
    margin-bottom: 0.5rem;
    line-height: 1;
  }

  .stat-label {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
  }

  .stat-context {
    font-family: 'Merriweather', serif;
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
    font-style: italic;
  }

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

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

    #statistics .section-subtitle {
      font-size: 1rem;
      margin-bottom: 2.5rem;
    }

    .stat-card {
      padding: 1.5rem 1rem;
    }

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

    .stat-icon {
      width: 60px;
      height: 60px;
      font-size: 1.7rem;
    }
  }

  @media (max-width: 576px) {
    .stat-number {
      font-size: 2rem;
    }
  }

footer {
  background: hsl(161, 49%, 26%);
    color: #fff;
  padding: 60px 0 20px;
    font-family: 'Merriweather', serif;
}

footer h5 {
font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
  margin-bottom: 20px;
      font-weight: 700;
}

footer p, footer a {
  font-size: 0.95rem;
    line-height: 1.7;
}

footer a {
    color: hsl(161, 49%, 66%);
  text-decoration: none;
      transition: color 0.3s ease;
}

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

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

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

footer .contact-info p {
  margin-bottom: 8px;
}

footer .contact-info i {
    margin-right: 8px;
  color: hsl(161, 49%, 66%);
}

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

#cookieNotice {
  position: fixed;
    bottom: 0;
  left: 0;
    right: 0;
      background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
  padding: 25px 0;
      border-top: 3px solid hsl(161, 49%, 41%);
}

#cookieNotice .cookie-title {
    font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
      font-weight: 700;
    color: #222;
  margin-bottom: 12px;
}

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

#cookieNotice .cookie-categories {
    list-style: none;
  padding: 0;
      margin: 20px 0;
}

#cookieNotice .cookie-categories li {
  padding: 8px 0;
    color: #333;
      font-size: 0.9rem;
}

#cookieNotice .cookie-categories strong {
    color: #222;
}

#cookieNotice .cookie-categories .required {
  color: hsl(161, 49%, 41%);
    font-weight: 600;
}

#cookieNotice .btn-accept-all {
    background: hsl(161, 49%, 41%);
  color: #fff;
      border: none;
    padding: 12px 30px;
  font-weight: 600;
      border-radius: 5px;
    transition: all 0.3s ease;
}

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

#cookieNotice .btn-reject {
    background: #6c757d;
  color: #fff;
      border: none;
    padding: 12px 30px;
      font-weight: 600;
  border-radius: 5px;
    transition: all 0.3s ease;
}

#cookieNotice .btn-reject:hover {
  background: #5a6268;
    transform: translateY(-2px);
}

#cookieNotice .btn-manage {
    background: transparent;
  color: hsl(161, 49%, 41%);
      border: 2px solid hsl(161, 49%, 41%);
    padding: 10px 28px;
  font-weight: 600;
      border-radius: 5px;
    transition: all 0.3s ease;
}

#cookieNotice .btn-manage:hover {
  background: hsl(161, 49%, 41%);
    color: #fff;
}

@media (max-width: 768px) {
  #cookieNotice {
      padding: 20px 0;
  }
  
  #cookieNotice .btn-accept-all,
    #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    width: 100%;
      margin-bottom: 10px;
  }
}

.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: Merriweather, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(161, 49%, 41%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Lato, sans-serif; color: hsl(161, 49%, 26%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(161, 49%, 41%); }
.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(161, 49%, 26%); font-family: Lato, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(161, 49%, 26%); font-family: Lato, sans-serif; }
.blog-article a { color: hsl(161, 49%, 41%); }
.blog-article a:hover { color: hsl(161, 49%, 66%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(161, 49%, 41%); 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%);
  }
  
  .contact-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .contact-header h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .contact-header p {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
  }
  
  .contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  }
  
  .contact-form-wrapper h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 25px;
    font-weight: 600;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: hsl(161, 49%, 41%);
    box-shadow: 0 0 0 3px hsla(161, 49%, 41%, 0.1);
  }
  
  .form-group textarea {
    min-height: 140px;
    resize: vertical;
  }
  
  .submit-btn {
    background: hsl(161, 49%, 41%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
  }
  
  .submit-btn:hover {
    background: hsl(161, 49%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }
  
  .contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-left: 4px solid hsl(161, 49%, 41%);
  }
  
  .info-card h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 12px;
  }
  
  .info-item:last-child {
    margin-bottom: 0;
  }
  
  .info-icon {
    width: 24px;
    height: 24px;
    background: hsl(161, 49%, 66%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .info-icon svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
  }
  
  .info-content {
    flex: 1;
  }
  
  .info-content p {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
  }
  
  .info-content a {
    color: hsl(161, 49%, 41%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .info-content a:hover {
    color: hsl(161, 49%, 26%);
    text-decoration: underline;
  }
  
  .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .hours-list li {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .hours-list li:last-child {
    border-bottom: none;
  }
  
  .hours-list strong {
    color: #333;
    font-weight: 600;
  }
  
  @media (max-width: 992px) {
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .contact-header h2 {
      font-size: 2rem;
    }
    
    .contact-form-wrapper {
      padding: 30px;
    }
  }
  
  @media (max-width: 576px) {
    .contact-section {
      padding: 60px 0;
    }
    
    .contact-header h2 {
      font-size: 1.75rem;
    }
    
    .contact-form-wrapper,
    .info-card {
      padding: 25px;
    }
    
    .submit-btn {
      padding: 12px 30px;
    }
  }

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

  :root {
    --primary-color: hsl(161, 49%, 41%);
    --secondary-color: hsl(161, 49%, 26%);
    --accent-color: hsl(161, 49%, 66%);
  }

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

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

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

  h2 {
    font-size: 1.875rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

  h3 {
    font-size: 1.375rem;
    color: var(--secondary-color);
  }

  .policy-content {
    background: linear-gradient(to bottom, #ffffff, #f8fffe);
  }

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

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--accent-color);
  }

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

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

  .info-box {
    background-color: rgba(59, 178, 140, 0.1);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

  .cookie-type-card {
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(59, 178, 140, 0.2);
  }

  .cookie-type-card h3 {
    margin-top: 0;
    color: var(--primary-color);
  }

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

  .contact-section h2 {
    color: white;
    border-left-color: white;
  }

  .contact-section a {
    color: white;
    border-bottom-color: white;
  }

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

  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Lato', sans-serif;
  }

  strong {
    color: var(--secondary-color);
  }

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .faq-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .faq-header h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }
  
  .faq-header p {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  .accordion-item:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }
  
  .accordion-button {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    background-color: #ffffff;
    padding: 25px 30px;
    border: none;
    box-shadow: none !important;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: hsl(161, 49%, 41%);
    color: #ffffff;
  }
  
  .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
  }
  
  .accordion-body {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    padding: 30px;
    background-color: #ffffff;
  }
  
  .accordion-body ul {
    margin: 15px 0;
    padding-left: 20px;
  }
  
  .accordion-body li {
    margin-bottom: 10px;
    color: #444;
  }
  
  .accordion-body strong {
    color: hsl(161, 49%, 26%);
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .faq-section {
      padding: 50px 0;
    }
    
    .faq-header h2 {
      font-size: 2rem;
    }
    
    .accordion-button {
      font-size: 1rem;
      padding: 20px;
    }
    
    .accordion-body {
      padding: 20px;
      font-size: 0.95rem;
    }
  }

#newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(161, 49%, 41%) 0%, hsl(161, 49%, 26%) 100%);
    position: relative;
    overflow: hidden;
  }

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

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

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

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

  .newsletter-description {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #f8f9fa;
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

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

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

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

  .newsletter-email-input:focus {
    outline: none;
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

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

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

  .newsletter-submit-btn:hover {
    background: hsl(161, 49%, 66%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  }

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

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

  .newsletter-benefit-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }

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

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

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

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

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

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

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

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

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

  :root {
    --primary: hsl(161, 49%, 41%);
    --secondary: hsl(161, 49%, 26%);
    --accent: hsl(161, 49%, 66%);
  }

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

  .hero-section h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #222;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-section h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .hero-section p {
    font-family: 'Merriweather', serif;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  }

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

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

  .advantages-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
  }

  .advantages-list li {
    font-family: 'Merriweather', serif;
    color: #333;
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
  }

  .advantages-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .btn-primary-hero {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-primary-hero:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: #fff;
  }

  .btn-secondary-hero {
    background: transparent;
    color: var(--secondary);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-secondary-hero:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

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

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

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

    .hero-image-wrapper {
      margin-bottom: 40px;
    }
  }

  @media (max-width: 576px) {
    .hero-section h1 {
      font-size: 1.8rem;
    }

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

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

    .btn-primary-hero,
    .btn-secondary-hero {
      width: 100%;
      justify-content: center;
    }
  }

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .services-section .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .services-section .section-title {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }
  
  .services-section .section-subtitle {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(42, 130, 102, 0.2);
    border-color: hsl(161, 49%, 41%);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(161, 49%, 41%) 0%, hsl(161, 49%, 26%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover .service-icon {
    transform: rotate(360deg);
  }
  
  .service-icon i {
    font-size: 32px;
    color: #ffffff;
  }
  
  .service-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
  }
  
  .service-description {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .service-price {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(161, 49%, 26%);
    margin-bottom: 15px;
  }
  
  .service-price span {
    font-size: 1rem;
    color: #777;
    font-weight: 400;
  }
  
  .service-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
  }
  
  .service-features li {
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    color: #555;
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
  }
  
  .service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(161, 49%, 41%);
    font-weight: bold;
  }
  
  .service-btn {
    background: hsl(161, 49%, 41%);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }
  
  .service-btn:hover {
    background: hsl(161, 49%, 26%);
    color: #ffffff;
    transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
    .services-section {
      padding: 50px 0;
    }
    
    .services-section .section-title {
      font-size: 2rem;
    }
    
    .service-card {
      padding: 25px 20px;
    }
  }

.credentials-section {
    padding: 50px 0;
    background: #f8f9fa;
  }
  
  .credentials-section .section-title {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    color: #222;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 600;
  }
  
  .credential-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
  }
  
  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .credential-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 12px;
  }
  
  .credential-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    margin: 0;
  }
  
  .credential-subtitle {
    font-family: 'Merriweather', serif;
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
  }

  @media (max-width: 768px) {
    .credentials-section {
      padding: 35px 0;
    }
    
    .credentials-section .section-title {
      font-size: 1.6rem;
      margin-bottom: 25px;
    }
    
    .credential-card {
      padding: 20px 12px;
    }
  }

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

  .testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(161, 49%, 66%);
    opacity: 0.05;
    border-radius: 50%;
  }

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

  .testimonials-section .lead-text {
    font-family: 'Merriweather', serif;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid hsl(161, 49%, 41%);
  }

  .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(161, 49%, 41%) 0%, hsl(161, 49%, 26%) 100%);
    color: #fff;
    border-left: none;
  }

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

  .testimonial-card.featured .star {
    color: #ffd700;
  }

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

  .customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: hsl(161, 49%, 66%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
  }

  .testimonial-card.featured .customer-avatar {
    background: #fff;
    color: hsl(161, 49%, 41%);
  }

  .customer-info {
    flex: 1;
  }

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

  .customer-location {
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .rating {
    display: flex;
    gap: 3px;
    margin-top: 5px;
  }

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

  .star.empty {
    color: #ddd;
  }

  .review-text {
    font-family: 'Merriweather', serif;
    color: #333;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .review-date {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
  }

  .testimonial-card.featured .review-date {
    color: rgba(255,255,255,0.8);
  }

  .testimonial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: hsl(161, 49%, 41%);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .testimonial-card.featured .testimonial-badge {
    background: #fff;
    color: hsl(161, 49%, 41%);
  }

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

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

    .testimonial-card {
      padding: 25px;
    }

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

    .testimonial-badge {
      position: static;
      display: inline-block;
      margin-bottom: 15px;
    }
  }

.promo-offer {
    background: linear-gradient(135deg, hsl(161, 49%, 41%) 0%, hsl(161, 49%, 26%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

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

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

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

  .offer-badge {
    background: hsl(161, 49%, 66%);
    color: #222;
    padding: 8px 24px;
    border-radius: 30px;
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  .offer-title {
    font-family: 'Lato', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
  }

  .offer-description {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #f8f9fa;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
  }

  .deadline-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 35px 45px;
    margin: 40px 0;
    text-align: center;
  }

  .deadline-label {
    font-family: 'Lato', sans-serif;
    color: #f8f9fa;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }

  .deadline-date {
    font-family: 'Lato', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .calendar-icon {
    font-size: 3rem;
    color: hsl(161, 49%, 66%);
  }

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

  .benefit-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
  }

  .benefit-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(161, 49%, 66%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #222;
  }

  .benefit-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
  }

  .benefit-text {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #f8f9fa;
    line-height: 1.6;
  }

  .discount-badge {
    background: #fff;
    color: hsl(161, 49%, 26%);
    font-family: 'Lato', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    padding: 30px 50px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    margin: 30px 0;
    line-height: 1;
  }

  .discount-badge span {
    font-size: 1.2rem;
    display: block;
    margin-top: 10px;
    font-weight: 600;
  }

  .cta-button {
    background: #fff;
    color: hsl(161, 49%, 26%);
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 60px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
  }

  .cta-button:hover {
    background: hsl(161, 49%, 66%);
    color: #222;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  }

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

    .deadline-date {
      font-size: 2.2rem;
      flex-direction: column;
      gap: 10px;
    }

    .discount-badge {
      font-size: 2.5rem;
      padding: 20px 30px;
    }

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

    .cta-button {
      font-size: 1.1rem;
      padding: 16px 40px;
    }
  }

  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

.blog-preview {
    padding: 80px 0;
    background: #f8f9fa;
  }

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

  .blog-preview .section-subtitle {
    font-family: 'Merriweather', serif;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-card {
    background: #fff;
    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-image {
    position: relative;
    overflow: hidden;
    height: 240px;
  }

  .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.1);
  }

  .blog-card-meta {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 12px;
  }

  .blog-meta-badge {
    background: rgba(255,255,255,0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: #333;
    font-weight: 600;
  }

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

  .blog-card-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
    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(161, 49%, 41%);
  }

  .blog-card-excerpt {
    font-family: 'Merriweather', serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }

  .blog-date {
    font-family: 'Lato', sans-serif;
    color: #888;
    font-size: 0.85rem;
  }

  .blog-read-more {
    font-family: 'Lato', sans-serif;
    color: hsl(161, 49%, 41%);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
  }

  .blog-read-more:hover {
    gap: 10px;
    color: hsl(161, 49%, 26%);
  }

  .blog-read-more::after {
    content: '→';
    font-size: 1.1rem;
  }

  .btn-view-all {
    background: hsl(161, 49%, 41%);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 3rem;
  }

  .btn-view-all:hover {
    background: hsl(161, 49%, 26%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

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

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

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

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

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

.disclaimer-section {
    background: #f8f9fa;
    padding: 60px 0;
  }

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

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

  .disclaimer-icon {
    font-size: 48px;
    color: hsl(161, 49%, 41%);
    margin-bottom: 20px;
  }

  .disclaimer-title {
    font-family: 'Lato', sans-serif;
    font-size: 2.2rem;
    color: #222;
    font-weight: 700;
    margin: 0;
  }

  .disclaimer-content {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid hsl(161, 49%, 41%);
  }

  .disclaimer-text {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
  }

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

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

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

    .disclaimer-icon {
      font-size: 40px;
    }
  }

  @media (max-width: 480px) {
    .disclaimer-title {
      font-size: 1.5rem;
    }

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

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

  :root {
    --primary-color: hsl(161, 49%, 41%);
    --secondary-color: hsl(161, 49%, 26%);
    --accent-color: hsl(161, 49%, 66%);
  }

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

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

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

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

  h3 {
    font-size: 1.375rem;
    color: var(--secondary-color);
  }

  .policy-content {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  }

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

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }

  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--accent-color);
  }

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

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

  .info-box {
    background-color: #f8fcfb;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .contact-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }

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

  .contact-card p {
    margin-bottom: 0.5rem;
    text-align: left;
  }

  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Lato', sans-serif;
  }

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

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

  :root {
    --primary-color: hsl(161, 49%, 41%);
    --secondary-color: hsl(161, 49%, 26%);
    --accent-color: hsl(161, 49%, 66%);
  }

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

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

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

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

  h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
  }

  .policy-content {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  }

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

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

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

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

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

  .contact-box {
    background-color: var(--accent-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

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

  .contact-box p {
    margin-bottom: 0.5rem;
    text-align: left;
  }

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

  .effective-date {
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 2rem;
  }

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

:root {
    --primary: hsl(161, 49%, 41%);
    --secondary: hsl(161, 49%, 26%);
    --accent: hsl(161, 49%, 66%);
  }

  .thank-you-section {
    font-family: 'Merriweather', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 1rem;
  }

  .thank-you-container {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    text-align: center;
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
  }

  .success-icon svg {
    width: 60px;
    height: 60px;
  }

  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .thank-you-heading {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
  }

  .thank-you-message {
    font-size: 1.125rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .thank-you-message p {
    margin-bottom: 1rem;
  }

  .info-box {
    background: #f8f9fa;
    border-left: 4px solid var(--accent);
    padding: 1.25rem;
    margin: 2rem 0;
    text-align: left;
    border-radius: 4px;
  }

  .info-box ul {
    margin: 0;
    padding-left: 1.25rem;
    list-style: none;
  }

  .info-box li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
  }

  .info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
  }

  .btn-home {
    font-family: 'Lato', sans-serif;
    background-color: var(--primary);
    border: none;
    color: white;
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
  }

  .btn-home:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 576px) {
    .thank-you-container {
      padding: 2rem 1.5rem;
    }

    .thank-you-heading {
      font-size: 2rem;
    }

    .thank-you-message {
      font-size: 1rem;
    }

    .success-icon {
      width: 80px;
      height: 80px;
    }

    .success-icon svg {
      width: 48px;
      height: 48px;
    }
  }