:root {
            --primary: hsl(140, 34%, 47%);
            --secondary: hsl(140, 34%, 32%);
            --accent: hsl(140, 34%, 72%);
        }
        
        body {
            font-family: 'Lora', serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            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: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--secondary);
        }
        
        .navbar-brand:hover {
            color: var(--primary);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-family: 'Lora', serif;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-toggler {
            border-color: var(--primary);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(92, 158, 117, 0.25);
        }

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

  #about {
    font-family: 'Lora', serif;
    background-color: #ffffff;
    padding: 80px 0;
    color: #333333;
  }

  #about h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #about h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(140, 34%, 32%);
    margin-bottom: 15px;
    margin-top: 30px;
  }

  #about p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 18px;
  }

  #about .about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }

  #about .about-intro p {
    font-size: 1.15rem;
    color: #555555;
  }

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

  #about .about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px 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 .values-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid hsl(140, 34%, 47%);
    margin-top: 25px;
  }

  #about .values-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
  }

  #about .values-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #444444;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 30px;
  }

  #about .values-list li:last-child {
    border-bottom: none;
  }

  #about .values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(140, 34%, 47%);
    font-weight: bold;
    font-size: 1.3rem;
  }

  #about .highlight-text {
    background-color: hsl(140, 34%, 72%, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    color: #222222;
  }

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

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

    #about h3 {
      font-size: 1.5rem;
    }

    #about p {
      font-size: 1rem;
    }

    #about .values-box {
      padding: 20px;
    }
  }

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

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

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

  .portfolio-section .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

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

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

  .filter-btn {
    font-family: 'Oswald', sans-serif;
    padding: 12px 28px;
    border: 2px solid hsl(140, 34%, 47%);
    background: transparent;
    color: hsl(140, 34%, 32%);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(140, 34%, 47%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

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

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

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

  .portfolio-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

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

  .portfolio-category {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: hsl(140, 34%, 72%);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
  }

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

  .portfolio-description {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .view-details-btn {
    font-family: 'Oswald', sans-serif;
    padding: 10px 24px;
    background: hsl(140, 34%, 47%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    transition: all 0.3s ease;
  }

  .view-details-btn:hover {
    background: hsl(140, 34%, 32%);
    transform: translateX(5px);
  }

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

  .modal-header {
    background: hsl(140, 34%, 47%);
    color: #fff;
    border: none;
    padding: 25px 30px;
  }

  .modal-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
  }

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

  .modal-body {
    padding: 40px;
    background: #fff;
  }

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

  .modal-category {
    font-family: 'Oswald', sans-serif;
    display: inline-block;
    padding: 8px 20px;
    background: hsl(140, 34%, 72%);
    color: hsl(140, 34%, 32%);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .modal-description {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
  }

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

  .project-details h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
  }

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

  .project-details li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px solid #e0e0e0;
  }

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

  .project-details li strong {
    color: hsl(140, 34%, 32%);
    font-weight: 600;
  }

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

    .section-title {
      font-size: 2.2rem;
    }

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

    .portfolio-filters {
      gap: 10px;
    }

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

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

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:wght@400;500;600;700&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: 'Lora', serif;
  }

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

  #advantages .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    border-color: hsl(140, 34%, 72%);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  }

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

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

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(140, 34%, 32%) 0%, hsl(140, 34%, 47%) 100%);
  }

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

  #advantages .advantage-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

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

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

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

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

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

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

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(140, 34%, 72%, 0.15) 0%, transparent 70%);
    border-radius: 50%;
  }

  #statistics::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(140, 34%, 47%, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .statistics-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }

  .statistics-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .statistics-header p {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
  }

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

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(140, 34%, 47%) 0%, hsl(140, 34%, 72%) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: hsl(140, 34%, 72%);
  }

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

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(140, 34%, 47%) 0%, hsl(140, 34%, 32%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(140, 34%, 32%) 0%, hsl(140, 34%, 47%) 100%);
  }

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

  .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(140, 34%, 32%);
    margin-bottom: 12px;
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .stat-context {
    font-family: 'Lora', serif;
    font-size: 0.875rem;
    color: #777;
    font-style: italic;
  }

  @media (max-width: 992px) {
    .statistics-header h2 {
      font-size: 2.5rem;
    }

    .stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

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

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

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

    .statistics-header {
      margin-bottom: 40px;
    }

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

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

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

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

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

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

    .stat-icon i {
      font-size: 1.75rem;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(140, 34%, 32%) 0%, hsl(140, 34%, 27%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Lora', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: hsl(140, 34%, 72%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

footer .company-description {
  max-width: 350px;
  margin-bottom: 20px;
}

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

footer ul li {
  margin-bottom: 12px;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: hsl(140, 34%, 72%);
  transform: translateX(5px);
}

footer .contact-info i {
  color: hsl(140, 34%, 72%);
  margin-right: 10px;
  width: 20px;
}

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

footer .contact-item svg {
  min-width: 20px;
  margin-right: 12px;
  margin-top: 3px;
}

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

footer .policy-links {
  margin-top: 15px;
}

footer .policy-links a {
  margin: 0 15px;
  font-size: 0.9rem;
  color: #cccccc;
}

footer .policy-links a:hover {
  color: hsl(140, 34%, 72%);
  transform: none;
}

#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: 30px 0;
  border-top: 4px solid hsl(140, 34%, 47%);
  animation: slideUp 0.5s ease-out;
}

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

#cookieNotice .cookie-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

#cookieNotice .cookie-text {
  font-family: 'Lora', serif;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

#cookieNotice .cookie-categories {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
}

#cookieNotice .cookie-category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

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

#cookieNotice .cookie-category-icon {
  min-width: 24px;
  margin-right: 12px;
  margin-top: 2px;
}

#cookieNotice .cookie-category-content h6 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

#cookieNotice .cookie-category-content p {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

#cookieNotice .cookie-category-badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 600;
}

#cookieNotice .badge-required {
  background: hsl(140, 34%, 47%);
  color: #ffffff;
}

#cookieNotice .badge-optional {
  background: #6c757d;
  color: #ffffff;
}

#cookieNotice .cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

#cookieNotice .btn-accept-all {
  background: hsl(140, 34%, 47%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

#cookieNotice .btn-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#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(140, 34%, 47%);
  border: 2px solid hsl(140, 34%, 47%);
  padding: 10px 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
}

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

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

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

  footer .company-description {
    max-width: 100%;
  }

  #cookieNotice {
    padding: 20px 0;
  }

  #cookieNotice .cookie-title {
    font-size: 1.3rem;
  }

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

  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    width: 100%;
    text-align: center;
  }
}

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Lora, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(140, 34%, 47%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Oswald, sans-serif; color: hsl(140, 34%, 32%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(140, 34%, 47%); }
.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(140, 34%, 32%); font-family: Oswald, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(140, 34%, 32%); font-family: Oswald, sans-serif; }
.blog-article a { color: hsl(140, 34%, 47%); }
.blog-article a:hover { color: hsl(140, 34%, 72%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(140, 34%, 47%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

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

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

  #contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(140, 34%, 72%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
  }

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

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

  #contact .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #contact .section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  #contact .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }

  #contact .contact-form-container {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  }

  #contact .contact-form-container h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
  }

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

  #contact .form-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  #contact .form-control:focus {
    outline: none;
    border-color: hsl(140, 34%, 47%);
    background: #ffffff;
    box-shadow: 0 0 0 3px hsla(140, 34%, 47%, 0.1);
  }

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

  #contact .btn-submit {
    font-family: 'Oswald', sans-serif;
    background: hsl(140, 34%, 47%);
    color: #ffffff;
    padding: 16px 45px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
  }

  #contact .btn-submit:hover {
    background: hsl(140, 34%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  #contact .contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  #contact .info-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-left: 5px solid hsl(140, 34%, 47%);
    transition: all 0.3s ease;
  }

  #contact .info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  }

  #contact .info-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  #contact .info-item {
    display: flex;
    align-items: start;
    margin-bottom: 18px;
    gap: 15px;
  }

  #contact .info-item:last-child {
    margin-bottom: 0;
  }

  #contact .info-icon {
    width: 45px;
    height: 45px;
    background: hsl(140, 34%, 72%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: hsl(140, 34%, 32%);
  }

  #contact .info-content {
    flex: 1;
  }

  #contact .info-content p {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
  }

  #contact .info-content a {
    color: hsl(140, 34%, 32%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  #contact .info-content a:hover {
    color: hsl(140, 34%, 47%);
    text-decoration: underline;
  }

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

  #contact .hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
    color: #555;
    font-size: 0.95rem;
  }

  #contact .hours-list li:last-child {
    border-bottom: none;
  }

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

  #contact .map-container {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  }

  #contact .map-container h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  #contact .map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, hsl(140, 34%, 72%) 0%, hsl(140, 34%, 82%) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(140, 34%, 32%);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
  }

  @media (max-width: 992px) {
    #contact .contact-wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    #contact .section-header h2 {
      font-size: 2.5rem;
    }

    #contact .contact-form-container {
      padding: 35px;
    }
  }

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

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

    #contact .section-header p {
      font-size: 1rem;
    }

    #contact .contact-form-container {
      padding: 30px 25px;
    }

    #contact .info-card {
      padding: 25px;
    }

    #contact .btn-submit {
      padding: 14px 35px;
      font-size: 1rem;
    }
  }

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

    #contact .contact-form-container h3 {
      font-size: 1.5rem;
    }

    #contact .info-card h4 {
      font-size: 1.2rem;
    }

    #contact .info-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }

    #contact .hours-list li {
      flex-direction: column;
      gap: 5px;
    }
  }

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

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

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

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

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

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

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

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

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: 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.75rem;
  }

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

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

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

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

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

  .contact-box a:hover {
    color: #f8f9fa;
  }

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

  .cookie-table {
    background-color: white;
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    overflow: hidden;
    margin: 1.5rem 0;
  }

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

  .cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--accent-color);
  }

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

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

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

  #faq .faq-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #faq .faq-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
  }

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

  #faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }

  #faq .accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }

  #faq .accordion-button {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    background-color: #ffffff;
    padding: 20px 25px;
    border: none;
    transition: all 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed) {
    background-color: hsl(140, 34%, 47%);
    color: #ffffff;
    box-shadow: none;
  }

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

  #faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
  }

  #faq .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-body {
    padding: 25px;
    background-color: #ffffff;
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    border-top: 2px solid hsl(140, 34%, 72%);
  }

  #faq .accordion-body strong {
    color: hsl(140, 34%, 32%);
    font-weight: 600;
  }

  #faq .accordion-body ul {
    margin: 15px 0;
    padding-left: 25px;
  }

  #faq .accordion-body li {
    margin-bottom: 8px;
    color: #444;
  }

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

    #faq .faq-title {
      font-size: 2.2rem;
    }

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

    #faq .accordion-button {
      font-size: 1.1rem;
      padding: 18px 20px;
    }

    #faq .accordion-body {
      padding: 20px;
      font-size: 0.95rem;
    }
  }

  @media (max-width: 576px) {
    #faq .faq-title {
      font-size: 1.8rem;
    }

    #faq .accordion-button {
      font-size: 1rem;
      padding: 15px 18px;
    }
  }

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

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

  #newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(140, 34%, 72%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
  }

  #newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(140, 34%, 47%);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
  }

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

  #newsletter .newsletter-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.5px;
  }

  #newsletter .newsletter-description {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 45px;
    line-height: 1.7;
  }

  #newsletter .newsletter-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
  }

  #newsletter .newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }

  #newsletter .newsletter-input {
    flex: 1;
    min-width: 280px;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background: #f8f9fa;
  }

  #newsletter .newsletter-input:focus {
    outline: none;
    border-color: hsl(140, 34%, 47%);
    background: #ffffff;
    box-shadow: 0 0 0 4px hsla(140, 34%, 47%, 0.1);
  }

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

  #newsletter .newsletter-button {
    padding: 18px 45px;
    background: hsl(140, 34%, 47%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
  }

  #newsletter .newsletter-button:hover {
    background: hsl(140, 34%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

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

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

  #newsletter .benefit-icon {
    width: 22px;
    height: 22px;
    background: hsl(140, 34%, 47%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
  }

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

    #newsletter .newsletter-heading {
      font-size: 2.2rem;
    }

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

    #newsletter .newsletter-box {
      padding: 35px 25px;
    }

    #newsletter .newsletter-form {
      flex-direction: column;
    }

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

    #newsletter .newsletter-button {
      width: 100%;
    }

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

  @media (max-width: 480px) {
    #newsletter .newsletter-heading {
      font-size: 1.8rem;
    }

    #newsletter .newsletter-box {
      padding: 30px 20px;
    }

    #newsletter .newsletter-input {
      padding: 15px 20px;
      font-size: 0.95rem;
    }

    #newsletter .newsletter-button {
      padding: 15px 35px;
      font-size: 1rem;
    }
  }

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

  .hero-section {
    background-color: #f8f9fa;
    padding: 80px 0 60px;
    overflow: hidden;
    position: relative;
  }

  .hero-section h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .hero-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: hsl(140, 34%, 32%);
    margin-bottom: 25px;
    line-height: 1.4;
  }

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

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

  .hero-advantages li {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #333;
    padding: 12px 0 12px 45px;
    position: relative;
    line-height: 1.6;
  }

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

  .hero-advantages li i {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1rem;
  }

  .hero-image-wrapper {
    position: relative;
    z-index: 2;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
  }

  .hero-image-wrapper:hover img {
    transform: rotate(0deg) scale(1.02);
  }

  .hero-content {
    position: relative;
    z-index: 3;
  }

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

  .hero-btn-primary {
    font-family: 'Oswald', sans-serif;
    background-color: hsl(140, 34%, 47%);
    color: #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid hsl(140, 34%, 47%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  .hero-btn-secondary {
    font-family: 'Oswald', sans-serif;
    background-color: transparent;
    color: hsl(140, 34%, 32%);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid hsl(140, 34%, 47%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  .hero-decorative {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: hsl(140, 34%, 72%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
    top: -100px;
    right: -100px;
  }

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

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

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

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

    .hero-image-wrapper img {
      transform: rotate(0deg);
    }
  }

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

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

    .hero-section p {
      font-size: 1rem;
    }

    .hero-advantages li {
      font-size: 1rem;
      padding-left: 40px;
    }

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

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

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

  #credentials {
    padding: 60px 0;
    background-color: #f8f9fa;
  }

  #credentials .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
  }

  #credentials .trust-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #credentials .trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  #credentials .trust-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 15px;
  }

  #credentials .trust-text {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    margin: 0;
  }

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

    #credentials .section-title {
      font-size: 1.6rem;
      margin-bottom: 30px;
    }

    #credentials .trust-card {
      padding: 20px 15px;
      margin-bottom: 15px;
    }

    #credentials .trust-icon {
      font-size: 2rem;
    }
  }

.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(140, 34%, 47%) 0%, hsl(140, 34%, 32%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.offer-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offer-description {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.deadline-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.deadline-label {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #333;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deadline-date {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: hsl(140, 34%, 32%);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.calendar-icon {
    width: 60px;
    height: 60px;
    fill: hsl(140, 34%, 47%);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
    font-family: 'Lora', serif;
    font-size: 17px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(8px);
}

.benefit-icon {
    width: 28px;
    height: 28px;
    fill: #fff;
    flex-shrink: 0;
}

.offer-cta {
    display: inline-block;
    background: #fff;
    color: hsl(140, 34%, 32%);
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.offer-cta:hover {
    background: hsl(140, 34%, 72%);
    color: hsl(140, 34%, 32%);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.discount-circle {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.discount-percent {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: hsl(140, 34%, 32%);
    line-height: 1;
}

.discount-text {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: hsl(140, 34%, 47%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@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;
    }
    
    .deadline-box {
        padding: 30px 20px;
    }
    
    .benefits-list li {
        font-size: 15px;
        padding: 16px 20px;
    }
    
    .discount-circle {
        width: 120px;
        height: 120px;
    }
    
    .discount-percent {
        font-size: 40px;
    }
}

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

.testimonials-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonials-section .section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: 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(140, 34%, 47%);
}

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

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(140, 34%, 47%), hsl(140, 34%, 72%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: #222;
  margin: 0 0 5px 0;
}

.testimonial-location {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

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

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

.star.empty {
  color: #ddd;
}

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

.testimonial-date {
  color: #888;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: auto;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(140, 34%, 47%) 0%, hsl(140, 34%, 32%) 100%);
  border-left: 4px solid hsl(140, 34%, 72%);
}

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

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

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

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

.testimonial-card.detailed {
  padding: 35px;
  background: #f8f9fa;
  border-left: 4px solid hsl(140, 34%, 32%);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2.2rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

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

  .services-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .services-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
  }

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 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(-10px);
    box-shadow: 0 12px 30px rgba(64, 123, 90, 0.2);
    border-color: hsl(140, 34%, 47%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(140, 34%, 47%) 0%, hsl(140, 34%, 32%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(140, 34%, 32%) 0%, hsl(140, 34%, 47%) 100%);
  }

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

  .service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

  .service-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(140, 34%, 47%);
    text-align: center;
    margin-bottom: 15px;
  }

  .service-terms {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    font-style: italic;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
  }

  .service-badge {
    display: inline-block;
    background: hsl(140, 34%, 72%);
    color: #222;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

    .service-card {
      padding: 25px 20px;
    }

    .service-card h3 {
      font-size: 1.3rem;
    }

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

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

  .blog-preview-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

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

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

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

  .blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
  }

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

  .blog-card-meta i {
    color: hsl(140, 34%, 47%);
    font-size: 0.95rem;
  }

  .blog-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
  }

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

  .blog-card h3 a:hover {
    color: hsl(140, 34%, 47%);
  }

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

  .blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(140, 34%, 47%);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .blog-card-link:hover {
    color: hsl(140, 34%, 32%);
    gap: 12px;
  }

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

  .view-all-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 16px 45px;
    background: hsl(140, 34%, 47%);
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(76, 153, 110, 0.3);
  }

  .view-all-btn:hover {
    background: hsl(140, 34%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 153, 110, 0.4);
  }

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

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

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

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

    .blog-card-body {
      padding: 22px;
    }

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

    .view-all-btn {
      margin-top: 40px;
      padding: 14px 35px;
      font-size: 1rem;
    }
  }

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

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

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

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

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

  .disclaimer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .disclaimer-content {
    background: #f8f9fa;
    border-left: 4px solid hsl(140, 34%, 47%);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
  }

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

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

    .disclaimer-container {
      padding: 35px 25px;
    }

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

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

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

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

  @media (max-width: 576px) {
    .disclaimer-container {
      padding: 30px 20px;
      border-radius: 8px;
    }

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

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

    .disclaimer-content {
      padding: 20px 15px;
      border-left-width: 3px;
    }
  }

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

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

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

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

  h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }

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

  h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
  }

  .policy-content {
    max-width: 900px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');
  
  :root {
    --primary-color: hsl(140, 34%, 47%);
    --secondary-color: hsl(140, 34%, 32%);
    --accent-color: hsl(140, 34%, 72%);
  }
  
  .policy-content {
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 20px;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-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;
  }
  
  .effective-date {
    background-color: var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .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 4px 6px rgba(0,0,0,0.1);
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-box a:hover {
    color: var(--accent-color);
  }
  
  .section-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 2.5rem 0;
  }

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, hsl(140, 34%, 97%) 0%, hsl(140, 34%, 92%) 100%);
  }

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

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

  .success-icon svg {
    width: 55px;
    height: 55px;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmark 0.6s ease-out 0.3s both;
  }

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

  @keyframes checkmark {
    0% {
      stroke-dasharray: 100;
      stroke-dashoffset: 100;
    }
    100% {
      stroke-dasharray: 100;
      stroke-dashoffset: 0;
    }
  }

  .thank-you-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2.75rem;
    font-weight: 600;
    color: hsl(140, 34%, 32%);
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
  }

  .thank-you-subheading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: hsl(140, 34%, 47%);
    margin-bottom: 1.5rem;
  }

  .thank-you-message {
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
  }

  .thank-you-details {
    background: hsl(140, 34%, 95%);
    border-left: 4px solid hsl(140, 34%, 47%);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    text-align: left;
  }

  .thank-you-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Lora', serif;
    color: #2d3748;
  }

  .thank-you-details li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
  }

  .thank-you-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(140, 34%, 47%);
    font-weight: bold;
    font-size: 1.25rem;
  }

  .btn-home {
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.875rem 2.5rem;
    background-color: hsl(140, 34%, 47%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
  }

  .btn-home:hover {
    background-color: hsl(140, 34%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 89, 0.3);
  }

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

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

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

    .thank-you-subheading {
      font-size: 1.25rem;
    }

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

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

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

    .btn-home {
      font-size: 1rem;
      padding: 0.75rem 2rem;
    }
  }

  @media (max-width: 480px) {
    .thank-you-section {
      padding: 2rem 1rem;
    }

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

    .thank-you-details {
      padding: 1rem;
    }

    .thank-you-details li {
      font-size: 0.9375rem;
    }
  }