:root {
            --primary-color: hsl(140, 51%, 32%);
            --secondary-color: hsl(140, 51%, 17%);
            --accent-color: hsl(140, 51%, 57%);
        }
        
        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;
            color: #222;
        }
        
        .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: 15px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--accent-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-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 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='rgba(46, 125, 50, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Oswald', sans-serif;
  color: hsl(140, 51%, 17%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  margin-top: 40px;
  font-weight: 600;
}

.about-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: hsl(140, 51%, 32%);
  font-weight: 600;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.about-intro {
  background: linear-gradient(135deg, hsl(140, 51%, 32%) 0%, hsl(140, 51%, 17%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  position: relative;
}

.about-intro h1 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 0;
}

.about-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.about-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

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

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

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

.value-card {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid hsl(140, 51%, 32%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 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;
}

.mission-vision-box {
  background-color: hsl(140, 51%, 57%, 0.1);
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
  border: 2px solid hsl(140, 51%, 57%);
}

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

.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 50px 0;
  padding: 40px 0;
  background-color: #f5f5f5;
  border-radius: 8px;
}

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

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

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

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

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

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

  .about-intro {
    padding: 40px 0;
    margin-bottom: 40px;
  }

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

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

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

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

  .portfolio-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(140, 51%, 17%);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .portfolio-intro {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
  }

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

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

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(140, 51%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(47, 116, 73, 0.3);
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 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: #ffffff;
    cursor: pointer;
  }

  .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 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;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(24, 65, 40, 0.95) 0%, rgba(24, 65, 40, 0.7) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
  }

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

  .portfolio-content {
    color: #ffffff;
    width: 100%;
  }

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

  .portfolio-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .portfolio-excerpt {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .view-details {
    font-family: 'Oswald', sans-serif;
    color: hsl(140, 51%, 57%);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }

  .view-details:hover {
    gap: 12px;
    color: hsl(140, 51%, 67%);
  }

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

  .modal-header {
    background: hsl(140, 51%, 32%);
    color: #ffffff;
    border: none;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 35px;
    background: #ffffff;
  }

  .modal-body img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .project-category-badge {
    display: inline-block;
    background: hsl(140, 51%, 57%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }

  .project-details {
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.9;
    font-size: 1.05rem;
  }

  .project-details h5 {
    font-family: 'Oswald', sans-serif;
    color: hsl(140, 51%, 17%);
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    text-transform: uppercase;
  }

  .project-details ul {
    padding-left: 20px;
    margin: 15px 0;
  }

  .project-details li {
    margin-bottom: 10px;
    color: #444;
  }

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

    .portfolio-section h2 {
      font-size: 2.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: 240px;
    }

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

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

    .portfolio-intro {
      font-size: 1rem;
    }

    .portfolio-title {
      font-size: 1.3rem;
    }

    .modal-title {
      font-size: 1.5rem;
    }
  }

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

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(140, 51%, 32%), hsl(140, 51%, 57%));
}

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

.advantages-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: hsl(140, 51%, 17%);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.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 #e9ecef;
  position: relative;
  overflow: hidden;
}

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

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: hsl(140, 51%, 57%);
}

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

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

.advantage-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid hsl(140, 51%, 57%);
  transform: scale(1.2);
  opacity: 0;
  transition: all 0.4s ease;
}

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

.advantage-card:hover .advantage-icon::after {
  transform: scale(1.3);
  opacity: 1;
}

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

.advantage-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: hsl(140, 51%, 17%);
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.advantage-card p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

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

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

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

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

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

  .advantage-icon i {
    font-size: 28px;
  }

  .advantage-card h3 {
    font-size: 1.25rem;
  }
}

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

  .advantage-card {
    padding: 25px 18px;
  }
}

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

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

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

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

.statistics-subheading {
  font-family: 'Lora', serif;
  color: hsl(140, 51%, 87%);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: hsl(140, 51%, 57%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

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

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

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

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

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

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

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

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

  .statistics-subheading {
    font-size: 1rem;
    margin-bottom: 40px;
  }

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

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

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

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

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

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

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

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

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

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

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

footer a:hover {
  color: hsl(140, 51%, 57%);
  padding-left: 5px;
}

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(140, 51%, 57%);
  margin-right: 10px;
  margin-top: 3px;
  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: #adb5bd;
  font-size: 0.9rem;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: hsl(140, 51%, 57%);
  font-weight: 700;
  margin-bottom: 1rem;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 2rem 0;
  border-top: 3px solid hsl(140, 51%, 32%);
  animation: slideUp 0.5s ease-out;
}

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

#cookieNotice h4 {
  font-family: 'Oswald', sans-serif;
  color: hsl(140, 51%, 17%);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.cookie-categories {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid #e9ecef;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f1f3f5;
}

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

.cookie-category-title {
  font-family: 'Oswald', sans-serif;
  color: #222;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

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

.cookie-category-status {
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.status-required {
  background: #e9ecef;
  color: #495057;
}

.status-optional {
  background: #fff3cd;
  color: #856404;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn-cookie-accept {
  background: hsl(140, 51%, 32%);
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cookie-accept:hover {
  background: hsl(140, 51%, 27%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.btn-cookie-settings {
  background: transparent;
  color: hsl(140, 51%, 32%);
  border: 2px solid hsl(140, 51%, 32%);
  padding: 0.8rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
}

.btn-cookie-settings:hover {
  background: hsl(140, 51%, 32%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  #cookieNotice {
    padding: 1.5rem 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .btn-cookie-accept,
  .btn-cookie-reject,
  .btn-cookie-settings {
    width: 100%;
    text-align: center;
  }
  
  footer {
    padding: 3rem 0 1rem;
  }
  
  footer h5 {
    margin-top: 2rem;
  }
}

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

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

.contact-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: hsl(140, 51%, 17%);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.contact-form-wrapper h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: hsl(140, 51%, 17%);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Lora', serif;
    color: #333;
    background: #ffffff;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: hsl(140, 51%, 32%);
    box-shadow: 0 0 0 0.2rem rgba(56, 142, 60, 0.15);
    outline: none;
}

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

.contact-form .btn-submit {
    background: hsl(140, 51%, 32%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 1rem;
}

.contact-form .btn-submit:hover {
    background: hsl(140, 51%, 17%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 142, 60, 0.3);
}

.contact-info-wrapper {
    background: hsl(140, 51%, 17%);
    padding: 40px;
    border-radius: 12px;
    color: #ffffff;
    height: 100%;
}

.contact-info-wrapper h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-left: 50px;
    position: relative;
}

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

.contact-info-item i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.8rem;
    color: hsl(140, 51%, 57%);
}

.contact-info-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: hsl(140, 51%, 57%);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item p {
    margin: 0;
    line-height: 1.8;
    color: #f8f9fa;
    font-size: 1rem;
}

.contact-info-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-info-item a:hover {
    color: hsl(140, 51%, 57%);
}

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

.working-hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    color: #f8f9fa;
}

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

.working-hours-list .day {
    font-weight: 600;
}

.working-hours-list .time {
    color: hsl(140, 51%, 57%);
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2.2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }
    
    .contact-info-item {
        padding-left: 40px;
    }
    
    .contact-info-item i {
        font-size: 1.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(140, 51%, 32%);
    --secondary-color: hsl(140, 51%, 17%);
    --accent-color: hsl(140, 51%, 57%);
  }

  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;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

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

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

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

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

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

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

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

  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    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: #f0f0f0;
  }

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

  li {
    margin-bottom: 0.5rem;
  }

  .effective-date {
    background: var(--accent-color);
    color: white;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  table {
    margin: 1.5rem 0;
  }

  .table-hover tbody tr:hover {
    background-color: rgba(140, 51, 32, 0.05);
  }

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

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

.faq-section h2 {
  font-family: 'Oswald', sans-serif;
  color: hsl(140, 51%, 17%);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.faq-accordion .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-accordion .accordion-button {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: hsl(140, 51%, 17%);
  background: #f8f9fa;
  padding: 20px 25px;
  font-weight: 500;
  border: none;
  text-align: left;
  transition: all 0.3s ease;
}

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

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

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23166534'%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 .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  padding: 25px;
  background: #ffffff;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  border-top: 1px solid #e0e0e0;
}

.faq-accordion .accordion-body p {
  margin-bottom: 15px;
}

.faq-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: hsl(140, 51%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.newsletter-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-input-wrapper {
    flex: 1;
    min-width: 250px;
}

.newsletter-input {
    width: 100%;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    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-input:focus {
    outline: none;
    border-color: hsl(140, 51%, 57%);
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.newsletter-button {
    padding: 16px 40px;
    background: hsl(140, 51%, 57%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: hsl(140, 51%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.newsletter-privacy {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-privacy a {
    color: hsl(140, 51%, 57%);
    text-decoration: none;
    border-bottom: 1px solid hsl(140, 51%, 57%);
    transition: all 0.3s ease;
}

.newsletter-privacy a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

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

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

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

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

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

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

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

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

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

.hero-section {
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  padding-right: 20px;
}

.hero-text h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(140, 51%, 17%);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.hero-description {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

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

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

.hero-advantages li::before {
  content: "\f26b";
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: hsl(140, 51%, 32%);
  font-size: 1.2rem;
  font-weight: bold;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  font-family: 'Oswald', sans-serif;
  background-color: hsl(140, 51%, 32%);
  color: #ffffff;
  padding: 14px 35px;
  font-size: 1.1rem;
  border: 2px solid hsl(140, 51%, 32%);
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-hero-primary:hover {
  background-color: hsl(140, 51%, 17%);
  border-color: hsl(140, 51%, 17%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-hero-secondary {
  font-family: 'Oswald', sans-serif;
  background-color: transparent;
  color: hsl(140, 51%, 32%);
  padding: 14px 35px;
  font-size: 1.1rem;
  border: 2px solid hsl(140, 51%, 32%);
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-hero-secondary:hover {
  background-color: hsl(140, 51%, 32%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: block;
}

@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-text {
    padding-right: 0;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text h2 {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }
  
  .hero-advantages li {
    font-size: 0.95rem;
  }
}

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

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

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

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    margin-bottom: 30px;
    border: 2px solid #e9ecef;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(57, 122, 77, 0.15);
    border-color: hsl(140, 51%, 32%);
}

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

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

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

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

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

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

.service-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: hsl(140, 51%, 32%);
    font-weight: 600;
}

.service-price-label {
    font-size: 0.85rem;
    color: #777;
    display: block;
    margin-top: 3px;
}

.service-btn {
    background: hsl(140, 51%, 32%);
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.service-btn:hover {
    background: hsl(140, 51%, 57%);
    color: #ffffff;
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-section .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

.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: hsl(140, 51%, 17%);
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-section .lead-text {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 50px;
  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, 51%, 57%);
}

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

.testimonial-card.style-2 {
  border-left: none;
  border-top: 4px solid hsl(140, 51%, 32%);
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.testimonial-card.style-3 {
  border-left: none;
  border-radius: 20px;
  background: hsl(140, 51%, 17%);
  color: #ffffff;
}

.testimonial-card.style-3 .testimonial-text {
  color: #f8f9fa;
}

.testimonial-card.style-3 .customer-name {
  color: hsl(140, 51%, 57%);
}

.testimonial-card.style-3 .customer-location {
  color: #cccccc;
}

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

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

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

.customer-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: hsl(140, 51%, 17%);
  margin-bottom: 3px;
  font-weight: 600;
}

.customer-location {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
}

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

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

.rating-stars .star.empty {
  color: #e0e0e0;
}

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

.testimonial-text.short {
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
}

.testimonial-text.long {
  font-size: 1rem;
}

.testimonial-date {
  font-size: 0.85rem;
  color: #999;
  text-align: right;
  margin-top: auto;
}

.testimonial-card.style-3 .testimonial-date {
  color: #aaa;
}

.service-tag {
  display: inline-block;
  background: hsl(140, 51%, 57%);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 10px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-card.style-3 .service-tag {
  background: hsl(140, 51%, 57%);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2.2rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .customer-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .customer-name {
    font-size: 1.1rem;
  }
}

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

.credentials-section .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: hsl(140, 51%, 17%);
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 600;
}

.credential-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  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;
}

.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: 0.75rem;
}

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

@media (max-width: 767px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-section .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .credential-card {
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .credential-card {
    margin-bottom: 1.5rem;
  }
}

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

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

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

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

.promo-offer-badge {
    display: inline-block;
    background: hsl(140, 51%, 57%);
    color: #fff;
    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;
}

.promo-offer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

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

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

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

.promo-deadline-date {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: hsl(140, 51%, 57%);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.promo-calendar-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: hsl(140, 51%, 32%);
}

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

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

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

.promo-benefit-icon {
    width: 50px;
    height: 50px;
    background: hsl(140, 51%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff;
}

.promo-benefit-text {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: #f8f9fa;
    line-height: 1.6;
    margin: 0;
}

.promo-discount-highlight {
    background: linear-gradient(135deg, hsl(140, 51%, 57%) 0%, hsl(140, 51%, 42%) 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.promo-discount-text {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.promo-discount-subtext {
    font-family: 'Lora', serif;
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
}

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

.promo-cta-button:hover {
    background: hsl(140, 51%, 57%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .promo-offer-title {
        font-size: 36px;
    }
    
    .promo-offer-description {
        font-size: 16px;
    }
    
    .promo-deadline-date {
        font-size: 40px;
        flex-direction: column;
    }
    
    .promo-discount-text {
        font-size: 48px;
    }
    
    .promo-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-deadline-box {
        padding: 25px;
    }
}

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

.blog-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(140, 51%, 32%) 0%, hsl(140, 51%, 57%) 100%);
}

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

.blog-preview .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: hsl(140, 51%, 17%);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-preview .section-subtitle {
  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: 12px;
  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;
}

.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: 280px;
}

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

.blog-card-meta {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.blog-date, .blog-reading-time {
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(5px);
}

.blog-date i, .blog-reading-time i {
  color: hsl(140, 51%, 32%);
  font-size: 0.9rem;
}

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

.blog-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(140, 51%, 17%);
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: hsl(140, 51%, 32%);
}

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

.blog-read-more {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(140, 51%, 32%);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: hsl(140, 51%, 17%);
  gap: 12px;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

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

.btn-view-all {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  background: hsl(140, 51%, 32%);
  padding: 15px 45px;
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-view-all:hover {
  background: hsl(140, 51%, 17%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(46, 125, 50, 0.4);
  color: #ffffff;
}

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

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

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

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

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

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

  .blog-card-excerpt {
    font-size: 0.95rem;
  }

  .blog-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .btn-view-all {
    padding: 12px 35px;
    font-size: 1rem;
  }
}

.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;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid hsl(140, 51%, 32%);
}

.disclaimer-icon {
  text-align: center;
  margin-bottom: 30px;
}

.disclaimer-icon i {
  font-size: 3.5rem;
  color: hsl(140, 51%, 32%);
  opacity: 0.9;
}

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

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

.disclaimer-content p {
  margin-bottom: 20px;
}

.disclaimer-highlight {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-top: 25px;
  border: 1px solid #dee2e6;
}

.disclaimer-note {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}

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

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

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

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

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

@media (max-width: 480px) {
  .disclaimer-container {
    padding: 30px 20px;
  }

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

  .disclaimer-icon i {
    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(140, 51%, 32%);
    --secondary-color: hsl(140, 51%, 17%);
    --accent-color: hsl(140, 51%, 57%);
  }

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

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

  h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

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

  .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(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }

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

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

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

  .contact-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
  }

  .contact-section h2 {
    color: white;
    border-left-color: var(--accent-color);
  }

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

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

  .effective-date {
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }

  .section-card {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  }

  strong {
    color: var(--primary-color);
    font-weight: 600;
  }

@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, 51%, 32%);
    --secondary-color: hsl(140, 51%, 17%);
    --accent-color: hsl(140, 51%, 57%);
  }

  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;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

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

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

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

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

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

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

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

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

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

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

  .contact-section h2 {
    color: white;
    border-left-color: var(--accent-color);
  }

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

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

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

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

  strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(140, 51%, 97%) 0%, hsl(140, 51%, 92%) 100%);
    padding: 2rem 1rem;
    font-family: 'Lora', serif;
  }

  .thank-you-container {
    max-width: 650px;
    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: hsl(140, 51%, 32%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
  }

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

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

  .thank-you-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(140, 51%, 17%);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

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

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

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

  .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
  }

  .info-card {
    background: hsl(140, 51%, 97%);
    border-left: 4px solid hsl(140, 51%, 32%);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
  }

  .info-card-icon {
    width: 40px;
    height: 40px;
    background: hsl(140, 51%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .info-card-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
  }

  .info-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(140, 51%, 17%);
    margin-bottom: 0.5rem;
  }

  .info-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
  }

  .btn-home {
    background: hsl(140, 51%, 32%);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
  }

  .btn-home:hover {
    background: hsl(140, 51%, 17%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: white;
  }

  @media (max-width: 768px) {
    .thank-you-heading {
      font-size: 2.25rem;
    }

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

    .thank-you-container {
      padding: 2rem 1.5rem;
    }

    .info-cards {
      grid-template-columns: 1fr;
    }

    .btn-home {
      padding: 0.875rem 2.5rem;
      font-size: 1rem;
    }
  }