:root {
            --primary-color: hsl(134, 38%, 40%);
            --secondary-color: hsl(134, 38%, 25%);
            --accent-color: hsl(134, 38%, 65%);
        }
        
        body {
            font-family: 'Lora', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Lora', serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(74, 134, 92, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(134, 38%, 40%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Oswald', sans-serif;
  color: hsl(134, 38%, 25%);
  font-weight: 600;
}

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  margin-top: 3rem;
}

.about-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: hsl(134, 38%, 40%);
}

.about-intro {
  background: linear-gradient(135deg, hsl(134, 38%, 95%) 0%, #ffffff 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  border-radius: 8px;
}

.about-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.2rem;
}

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

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin-bottom: 30px;
}

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

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

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

.value-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid hsl(134, 38%, 40%);
  transition: all 0.3s ease;
}

.value-card:hover {
  background: hsl(134, 38%, 95%);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.value-card p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  text-align: left;
}

.stats-wrapper {
  background: hsl(134, 38%, 25%);
  color: #ffffff;
  padding: 50px 0;
  margin: 60px 0;
  border-radius: 8px;
}

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

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(134, 38%, 65%);
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #f8f9fa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-vision-box {
  background: linear-gradient(135deg, hsl(134, 38%, 40%) 0%, hsl(134, 38%, 25%) 100%);
  color: #ffffff;
  padding: 50px 40px;
  border-radius: 12px;
  margin: 40px 0;
}

.mission-vision-box h2 {
  color: #ffffff;
  margin-top: 0;
}

.mission-vision-box p {
  color: #f8f9fa;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

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

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

  .about-section h2 {
    font-size: 1.8rem;
  }

  .about-intro {
    padding: 40px 20px;
  }

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

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

  .mission-vision-box {
    padding: 30px 25px;
  }
}

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

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

  .portfolio-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

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

  .filter-btn {
    padding: 10px 28px;
    border: 2px solid hsl(134, 38%, 40%);
    background: transparent;
    color: hsl(134, 38%, 40%);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(134, 38%, 40%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(70, 130, 70, 0.3);
  }

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

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

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

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

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(70, 130, 70, 0.85), rgba(46, 85, 46, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
  }

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

  .portfolio-overlay h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
  }

  .portfolio-category {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .portfolio-content {
    padding: 25px;
    background: #fff;
  }

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

  .portfolio-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
  }

  .view-details-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 25px;
    background: #fff;
    color: hsl(134, 38%, 40%);
    border: none;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .portfolio-item:hover .view-details-btn {
    opacity: 1;
    bottom: 30px;
  }

  .view-details-btn:hover {
    background: hsl(134, 38%, 65%);
    color: #222;
    transform: translateX(-50%) scale(1.05);
  }

  .modal-header {
    background: linear-gradient(135deg, hsl(134, 38%, 40%), hsl(134, 38%, 25%));
    color: #fff;
    border-bottom: none;
    padding: 25px 30px;
  }

  .modal-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

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

  .modal-body {
    padding: 35px;
    color: #333;
    line-height: 1.8;
  }

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

  .project-detail-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: hsl(134, 38%, 40%);
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .project-detail-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
  }

  .project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 25px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
  }

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

  .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: hsl(134, 38%, 40%);
    font-weight: 600;
    display: block;
  }

  .stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
  }

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

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

    .portfolio-subtitle {
      font-size: 1rem;
      margin-bottom: 2rem;
    }

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

    .filter-buttons {
      gap: 10px;
    }

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

    .portfolio-image {
      height: 220px;
    }

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

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

@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 ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
  }

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(64, 122, 82, 0.2);
    border-color: hsl(134, 38%, 65%);
  }

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

  #advantages .icon-wrapper {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(134, 38%, 40%) 0%, hsl(134, 38%, 25%) 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(134, 38%, 65%) 0%, hsl(134, 38%, 40%) 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.98rem;
    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 .section-subtitle {
      font-size: 1rem;
    }

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

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

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

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

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(134, 38%, 40%) 0%, hsl(134, 38%, 65%) 100%);
  }

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

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

  .statistics-header p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    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;
    margin-top: 50px;
  }

  .stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 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;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(134, 38%, 40%), hsl(134, 38%, 65%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: hsl(134, 38%, 65%);
  }

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

  .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(134, 38%, 40%), hsl(134, 38%, 65%));
    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);
  }

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

  .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(134, 38%, 40%);
    margin-bottom: 10px;
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
  }

  .stat-context {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    line-height: 1.5;
  }

  @keyframes countUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .stat-card.animate .stat-number {
    animation: countUp 0.8s ease-out;
  }

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

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

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

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

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

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

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

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

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

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

    .stat-label {
      font-size: 1rem;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(134, 38%, 25%) 0%, hsl(134, 38%, 30%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 1.5rem;
  margin-top: 5rem;
  font-family: 'Lora', serif;
}

footer h5 {
  font-family: 'Oswald', sans-serif;
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

footer a:hover {
  color: hsl(134, 38%, 65%);
}

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

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

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

.footer-contact-item i {
  color: hsl(134, 38%, 65%);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

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

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1rem;
  }
  
  footer .col-md-3, footer .col-md-4 {
    margin-bottom: 2.5rem;
  }
}

#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: 1.5rem 0;
  border-top: 3px solid hsl(134, 38%, 40%);
  animation: slideUp 0.5s ease;
}

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

#cookieNotice h5 {
  font-family: 'Oswald', sans-serif;
  color: #222;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

#cookieNotice p {
  font-family: 'Lora', serif;
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cookie-categories {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  border-left: 3px solid hsl(134, 38%, 65%);
}

.cookie-category {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}

.cookie-category strong {
  color: #222;
  font-weight: 600;
}

.cookie-category.required {
  color: #666;
  font-style: italic;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  background: hsl(134, 38%, 40%);
  color: #ffffff;
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cookie-accept:hover {
  background: hsl(134, 38%, 35%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

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

.btn-cookie-settings {
  background: transparent;
  color: hsl(134, 38%, 40%);
  border: 2px solid hsl(134, 38%, 40%);
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
}

.btn-cookie-settings:hover {
  background: hsl(134, 38%, 40%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  #cookieNotice {
    padding: 1rem 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .btn-cookie-accept,
  .btn-cookie-reject,
  .btn-cookie-settings {
    width: 100%;
    text-align: center;
  }
}

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

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

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

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

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

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(134, 38%, 40%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

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

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

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

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

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

.contact-form-wrapper {
  background: #ffffff;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-top: 4px solid hsl(134, 38%, 40%);
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group label span {
  color: hsl(134, 38%, 40%);
}

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

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

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

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

.submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: hsl(134, 38%, 40%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px hsla(134, 38%, 40%, 0.3);
}

.submit-btn:hover {
  background: hsl(134, 38%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(134, 38%, 40%, 0.4);
}

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

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

.info-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.07);
  border-left: 5px solid hsl(134, 38%, 65%);
  transition: all 0.3s ease;
}

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

.info-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(134, 38%, 25%);
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-card h4::before {
  content: '';
  width: 8px;
  height: 8px;
  background: hsl(134, 38%, 40%);
  border-radius: 50%;
}

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

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

.info-icon {
  width: 24px;
  height: 24px;
  background: hsl(134, 38%, 65%);
  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-text {
  flex: 1;
}

.info-text strong {
  display: block;
  color: #333;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.info-text a {
  color: hsl(134, 38%, 40%);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  word-break: break-all;
}

.info-text a:hover {
  color: hsl(134, 38%, 25%);
  text-decoration: underline;
}

.info-text p {
  color: #555;
  margin: 0;
  line-height: 1.7;
  font-size: 0.98rem;
}

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

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

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

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

.day-label {
  flex: 1;
}

.time-label {
  color: hsl(134, 38%, 40%);
  font-weight: 600;
}

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-header h2 {
    font-size: 2.3rem;
  }
  
  .contact-form-wrapper {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-header {
    margin-bottom: 40px;
  }
  
  .contact-header h2 {
    font-size: 2rem;
  }
  
  .contact-header p {
    font-size: 1rem;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }
  
  .info-card {
    padding: 25px 20px;
  }
  
  .info-card h4 {
    font-size: 1.15rem;
  }
}

@media (max-width: 576px) {
  .contact-header h2 {
    font-size: 1.7rem;
  }
  
  .form-control {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .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(134, 38%, 40%);
    --secondary-color: hsl(134, 38%, 25%);
    --accent-color: hsl(134, 38%, 65%);
  }
  
  .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;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .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;
    font-size: 1.05rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .effective-date {
    background-color: hsl(134, 38%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
    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 15px rgba(0,0,0,0.1);
  }
  
  .contact-box h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
  }
  
  .contact-box p {
    margin-bottom: 0.5rem;
  }
  
  .contact-box a {
    color: white;
    border-bottom-color: white;
  }
  
  .contact-box a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }
  
  .cookie-type-card {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cookie-type-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .highlight-box {
    background-color: hsl(134, 38%, 97%);
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
  }

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

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

  .faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(134, 38%, 40%), hsl(134, 38%, 65%));
  }

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

  .faq-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(134, 38%, 25%);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

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

  .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: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    background-color: #ffffff;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  .accordion-button:not(.collapsed) {
    background-color: hsl(134, 38%, 40%);
    color: #ffffff;
    box-shadow: none;
  }

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

  .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 {
    padding: 30px;
    background-color: #ffffff;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.9;
    border-top: 2px solid hsl(134, 38%, 65%);
  }

  .faq-category {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(134, 38%, 40%);
    margin-top: 50px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(134, 38%, 65%);
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .faq-category:first-of-type {
    margin-top: 0;
  }

  .highlight-text {
    color: hsl(134, 38%, 40%);
    font-weight: 600;
  }

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

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

    .accordion-button {
      font-size: 1.05rem;
      padding: 20px 20px;
    }

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

    .faq-category {
      font-size: 1.3rem;
      margin-top: 40px;
    }
  }

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

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

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

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

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

.newsletter-description {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: #f8f9fa;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.newsletter-email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Lora', 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 0 0 4px rgba(255, 255, 255, 0.1);
}

.newsletter-email-input::placeholder {
    color: #666;
    opacity: 0.8;
}

.newsletter-submit-btn {
    padding: 16px 45px;
    background: #ffffff;
    color: hsl(134, 38%, 40%);
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.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;
    color: #f8f9fa;
    font-family: 'Lora', 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;
    flex-shrink: 0;
}

.newsletter-benefit-icon::before {
    content: '✓';
    color: #ffffff;
    font-weight: bold;
    font-size: 0.85rem;
}

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

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

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

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

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

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

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

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

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

    .newsletter-email-input,
    .newsletter-submit-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

.hero-section {
  background: linear-gradient(135deg, hsl(134, 38%, 98%) 0%, hsl(134, 38%, 95%) 100%);
  padding: 80px 0;
  overflow: hidden;
}

.hero-section h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: hsl(134, 38%, 40%);
  margin-bottom: 2rem;
}

.hero-section .description {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-section .advantages-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.hero-section .advantages-list li {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.hero-section .advantages-list li::before {
  content: "\f26b";
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: hsl(134, 38%, 40%);
  font-weight: bold;
}

.hero-section .btn-primary-custom {
  background-color: hsl(134, 38%, 40%);
  border: none;
  color: #fff;
  padding: 14px 36px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.hero-section .btn-primary-custom:hover {
  background-color: hsl(134, 38%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-section .btn-secondary-custom {
  background-color: transparent;
  border: 2px solid hsl(134, 38%, 40%);
  color: hsl(134, 38%, 25%);
  padding: 12px 34px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-section .btn-secondary-custom:hover {
  background-color: hsl(134, 38%, 40%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-section .hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-section .hero-image {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  .hero-section .btn-primary-custom,
  .hero-section .btn-secondary-custom {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}

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

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

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(134, 38%, 40%) 0%, hsl(134, 38%, 65%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

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

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: hsl(134, 38%, 40%);
  }

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

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

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

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

  .service-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    min-height: 100px;
  }

  .service-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: hsl(134, 38%, 40%);
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .service-terms {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
  }

  .service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
  }

  .service-features li {
    color: #666;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
  }

  .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(134, 38%, 40%);
    font-weight: bold;
  }

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

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

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

    .service-description {
      min-height: auto;
    }
  }

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

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: hsl(134, 38%, 65%);
  opacity: 0.1;
  border-radius: 50%;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: hsl(134, 38%, 40%);
  opacity: 0.05;
  border-radius: 50%;
}

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

.section-subtitle {
  font-family: 'Lora', serif;
  color: hsl(134, 38%, 40%);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: hsl(134, 38%, 65%);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(134, 38%, 40%) 0%, hsl(134, 38%, 25%) 100%);
  color: #ffffff;
  grid-column: span 2;
}

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

.testimonial-card.featured .stars i {
  color: hsl(134, 38%, 65%);
}

.quote-icon {
  font-size: 3rem;
  color: hsl(134, 38%, 65%);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 15px;
}

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

.stars {
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}

.stars i {
  color: hsl(134, 38%, 40%);
  font-size: 1.1rem;
}

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

.testimonial-text {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

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

.customer-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: hsl(134, 38%, 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(134, 38%, 40%);
}

.customer-details {
  flex: 1;
}

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

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

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

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

.rating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: hsl(134, 38%, 40%);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 25px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-card.featured .rating-badge {
  background: #ffffff;
  color: hsl(134, 38%, 40%);
}

@media (max-width: 991px) {
  .testimonial-card.featured {
    grid-column: span 1;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.7rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
}

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

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

  .credential-card {
    background: #fff;
    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%;
    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: 15px;
  }

  .credential-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    margin: 0;
  }

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

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

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

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

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

  .blog-preview-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(134, 38%, 65%, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

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

  .blog-preview-section .section-subtitle {
    font-family: 'Lora', serif;
    color: hsl(134, 38%, 40%);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
  }

  .blog-preview-section .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
  }

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

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

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

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

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

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

  .blog-card-meta {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .blog-card-badge {
    background: hsl(134, 38%, 40%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
  }

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

  .blog-card-date {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .blog-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
  }

  .blog-card:hover .blog-card-title {
    color: hsl(134, 38%, 40%);
  }

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

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

  .blog-card-link {
    font-family: 'Oswald', sans-serif;
    color: hsl(134, 38%, 40%);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }

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

  .blog-card-link::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

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

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

  .btn-view-all {
    font-family: 'Oswald', sans-serif;
    background: hsl(134, 38%, 40%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid hsl(134, 38%, 40%);
    box-shadow: 0 4px 15px rgba(74, 135, 89, 0.25);
  }

  .btn-view-all:hover {
    background: hsl(134, 38%, 25%);
    border-color: hsl(134, 38%, 25%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 135, 89, 0.35);
    color: #ffffff;
  }

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

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

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

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

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

    .blog-preview-section .section-description {
      font-size: 1rem;
    }

    .blog-card {
      margin-bottom: 30px;
    }

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

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

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

.disclaimer-section .section-icon {
  font-size: 3rem;
  color: hsl(134, 38%, 40%);
  margin-bottom: 1.5rem;
  display: inline-block;
}

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

.disclaimer-section .disclaimer-content {
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid hsl(134, 38%, 40%);
}

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

.disclaimer-section .disclaimer-text strong {
  color: #222;
  font-weight: 600;
}

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

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

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

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

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

@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(134, 38%, 40%);
    --secondary-color: hsl(134, 38%, 25%);
    --accent-color: hsl(134, 38%, 65%);
  }
  
  .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;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
  }
  
  .policy-content h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .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;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .effective-date {
    background-color: hsl(134, 38%, 95%);
    padding: 1rem 1.5rem;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
  }
  
  .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 15px rgba(0,0,0,0.1);
  }
  
  .contact-box h3 {
    color: white;
    margin-bottom: 1.5rem;
  }
  
  .contact-box p {
    margin-bottom: 0.5rem;
    text-align: left;
  }
  
  .contact-box a {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }
  
  .contact-box a:hover {
    color: white;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 3rem 0;
  }

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

  .policy-content {
    font-family: 'Lora', serif;
    color: #2c3e50;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Oswald', sans-serif;
    color: hsl(134, 38%, 25%);
    font-weight: 600;
  }

  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid hsl(134, 38%, 40%);
    color: hsl(134, 38%, 40%);
  }

  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-left: 1rem;
    border-left: 5px solid hsl(134, 38%, 65%);
  }

  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: hsl(134, 38%, 30%);
  }

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

  .policy-content a {
    color: hsl(134, 38%, 40%);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .policy-content a:hover {
    color: hsl(134, 38%, 25%);
    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: hsl(134, 38%, 25%);
    font-weight: 600;
  }

  .effective-date {
    background-color: hsl(134, 38%, 95%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid hsl(134, 38%, 40%);
  }

  .contact-box {
    background-color: hsl(134, 38%, 97%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    border: 2px solid hsl(134, 38%, 65%);
  }

  .contact-box h3 {
    margin-top: 0;
    color: hsl(134, 38%, 40%);
  }

  .highlight-box {
    background-color: hsl(134, 38%, 98%);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid hsl(134, 38%, 40%);
  }

  @media (max-width: 768px) {
    .policy-content h1 {
      font-size: 2rem;
    }

    .policy-content h2 {
      font-size: 1.5rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lora:wght@400;500;600&display=swap');
  
  :root {
    --primary: hsl(134, 38%, 40%);
    --secondary: hsl(134, 38%, 25%);
    --accent: hsl(134, 38%, 65%);
  }
  
  .thank-you-section {
    font-family: 'Lora', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(134, 38%, 40%, 0.05) 0%, rgba(134, 38%, 65%, 0.1) 100%);
    padding: 2rem 1rem;
  }
  
  .thank-you-container {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    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;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmark 0.8s ease-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }
  
  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes checkmark {
    to {
      stroke-dashoffset: 0;
    }
  }
  
  .thank-you-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
  }
  
  .thank-you-subheading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
  }
  
  .thank-you-message {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
  }
  
  .thank-you-message p {
    margin-bottom: 1rem;
  }
  
  .thank-you-message strong {
    color: var(--secondary);
    font-weight: 600;
  }
  
  .home-button {
    font-family: 'Oswald', sans-serif;
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    animation: fadeInUp 0.6s ease-out 0.7s backwards;
  }
  
  .home-button:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  .info-box {
    background: rgba(134, 38%, 65%, 0.1);
    border-left: 4px solid var(--accent);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.65s backwards;
  }
  
  .info-box p {
    margin: 0;
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.6;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {
    .thank-you-container {
      padding: 2.5rem 1.5rem;
    }
    
    .thank-you-heading {
      font-size: 2rem;
    }
    
    .thank-you-subheading {
      font-size: 1.125rem;
    }
    
    .thank-you-message {
      font-size: 1rem;
    }
    
    .success-icon {
      width: 80px;
      height: 80px;
    }
    
    .success-icon svg {
      width: 50px;
      height: 50px;
    }
  }
  
  @media (max-width: 480px) {
    .thank-you-section {
      padding: 1rem;
    }
    
    .thank-you-container {
      padding: 2rem 1.25rem;
    }
    
    .thank-you-heading {
      font-size: 1.75rem;
    }
    
    .home-button {
      padding: 0.75rem 2rem;
      font-size: 1rem;
    }
  }