:root {
            --primary-color: hsl(108, 31%, 37%);
            --secondary-color: hsl(108, 31%, 22%);
            --accent-color: hsl(108, 31%, 62%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lora', serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--secondary-color);
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-family: 'Lora', serif;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(108, 131, 87, 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%2851, 67, 41, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h2 {
  font-family: 'Oswald', sans-serif;
  color: hsl(108, 31%, 22%);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section h3 {
  font-family: 'Oswald', sans-serif;
  color: hsl(108, 31%, 37%);
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

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

.about-intro {
  background: linear-gradient(135deg, hsl(108, 31%, 37%) 0%, hsl(108, 31%, 22%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
}

.about-intro h2 {
  color: #ffffff;
  text-align: center;
  font-size: 3rem;
  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 4px 15px rgba(0,0,0,0.1);
  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(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

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

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.value-card h4 {
  font-family: 'Oswald', sans-serif;
  color: hsl(108, 31%, 22%);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.stats-row {
  background: hsl(108, 31%, 62%);
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: hsl(108, 31%, 22%);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-intro {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  
  .about-intro h2 {
    font-size: 2rem;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
  
  .about-section h3 {
    font-size: 1.5rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

.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;
    color: hsl(108, 31%, 22%);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .portfolio-intro {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #555;
    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: 12px 28px;
    border: 2px solid hsl(108, 31%, 37%);
    background: transparent;
    color: hsl(108, 31%, 37%);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(108, 31%, 37%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

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

  .portfolio-item {
    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 30px rgba(0,0,0,0.2);
  }

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

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

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

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

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

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

  .portfolio-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: hsl(108, 31%, 22%);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .portfolio-description {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .view-details-btn {
    font-family: 'Oswald', sans-serif;
    display: inline-block;
    padding: 10px 24px;
    background: hsl(108, 31%, 37%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
  }

  .view-details-btn:hover {
    background: hsl(108, 31%, 22%);
    color: #fff;
    transform: translateX(5px);
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(108, 31%, 37%) 0%, hsl(108, 31%, 22%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
    border: none;
  }

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

  .modal-body {
    padding: 35px;
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.8;
  }

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

  .modal-category {
    font-family: 'Oswald', sans-serif;
    color: hsl(108, 31%, 37%);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .modal-description {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 20px;
  }

  .modal-details-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
  }

  .modal-details-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #555;
  }

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

  .modal-details-list strong {
    color: hsl(108, 31%, 22%);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-right: 10px;
  }

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

  @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: 10px 20px;
      font-size: 0.9rem;
    }

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

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

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

    .filter-btn {
      padding: 8px 16px;
      font-size: 0.85rem;
    }
  }

@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.0/font/bootstrap-icons.css');

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

#advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(108, 31%, 62%, 0.1);
    border-radius: 50%;
    z-index: 0;
}

#advantages::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(108, 31%, 37%, 0.08);
    border-radius: 50%;
    z-index: 0;
}

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

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

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

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

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

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: hsl(108, 31%, 62%);
}

.advantage-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(108, 31%, 37%), hsl(108, 31%, 62%));
    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%;
    background: hsl(108, 31%, 37%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

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

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

.advantage-icon i {
    font-size: 2rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

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

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

.advantages-row {
    margin-top: 40px;
}

@media (max-width: 991px) {
    .advantages-header h2 {
        font-size: 2.3rem;
    }
    
    #advantages {
        padding: 60px 0;
    }
    
    .advantage-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .advantages-header h2 {
        font-size: 2rem;
    }
    
    .advantages-header p {
        font-size: 1rem;
    }
    
    #advantages {
        padding: 50px 0;
    }
    
    .advantage-icon {
        width: 65px;
        height: 65px;
    }
    
    .advantage-icon i {
        font-size: 1.7rem;
    }
    
    .advantage-card h3 {
        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, hsl(108, 31%, 97%) 0%, hsl(108, 31%, 92%) 100%);
    position: relative;
    overflow: hidden;
  }

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(108, 31%, 37%) 0%, hsl(108, 31%, 62%) 50%, hsl(108, 31%, 37%) 100%);
  }

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

  #statistics .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(108, 31%, 22%);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

  #statistics .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

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

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(108, 31%, 37%), hsl(108, 31%, 62%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: hsl(108, 31%, 62%);
  }

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

  #statistics .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(108, 31%, 37%), hsl(108, 31%, 62%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
  }

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

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

  #statistics .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(108, 31%, 37%);
    margin-bottom: 12px;
    line-height: 1;
  }

  #statistics .stat-label {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    line-height: 1.5;
  }

  #statistics .stat-context {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
  }

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

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

    #statistics .stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    #statistics .stat-card {
      padding: 30px 20px;
    }

    #statistics .stat-number {
      font-size: 2.3rem;
    }

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

    #statistics .stat-icon i {
      font-size: 28px;
    }
  }

  @media (max-width: 576px) {
    #statistics .stats-grid {
      grid-template-columns: 1fr;
    }

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

footer {
  background: hsl(108, 31%, 22%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Lora', serif;
}

footer h5 {
  font-family: 'Oswald', sans-serif;
  color: hsl(108, 31%, 62%);
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

footer a:hover {
  color: hsl(108, 31%, 62%);
}

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

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

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

.footer-contact-info i {
  color: hsl(108, 31%, 62%);
  margin-right: 8px;
  width: 20px;
}

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

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: hsl(108, 31%, 62%);
  font-weight: 700;
  margin-bottom: 15px;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 3px solid hsl(108, 31%, 37%);
}

#cookieNotice h4 {
  font-family: 'Oswald', sans-serif;
  color: hsl(108, 31%, 22%);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

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

.cookie-categories li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
}

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

.cookie-categories strong {
  color: hsl(108, 31%, 22%);
  font-weight: 600;
}

.cookie-categories .badge {
  font-size: 0.7rem;
  padding: 4px 8px;
  margin-left: 8px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cookie-buttons .btn {
  font-family: 'Oswald', sans-serif;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
}

.cookie-buttons .btn-accept {
  background: hsl(108, 31%, 37%);
  color: #ffffff;
}

.cookie-buttons .btn-accept:hover {
  background: hsl(108, 31%, 32%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-buttons .btn-reject {
  background: #6c757d;
  color: #ffffff;
}

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

.cookie-buttons .btn-manage {
  background: transparent;
  color: hsl(108, 31%, 37%);
  border: 2px solid hsl(108, 31%, 37%);
}

.cookie-buttons .btn-manage:hover {
  background: hsl(108, 31%, 37%);
  color: #ffffff;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-top: 25px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
}

.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(108, 31%, 37%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Oswald, sans-serif; color: hsl(108, 31%, 22%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(108, 31%, 37%); }
.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(108, 31%, 22%); font-family: Oswald, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(108, 31%, 22%); font-family: Oswald, sans-serif; }
.blog-article a { color: hsl(108, 31%, 37%); }
.blog-article a:hover { color: hsl(108, 31%, 62%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(108, 31%, 37%); 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 {
  font-family: 'Lora', serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

#contact .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(108, 31%, 22%);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

#contact .contact-wrapper {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

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

#contact .contact-form-container h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(108, 31%, 22%);
  margin-bottom: 25px;
  text-transform: uppercase;
}

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

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

#contact .form-control:focus,
#contact .form-select:focus {
  border-color: hsl(108, 31%, 37%);
  box-shadow: 0 0 0 0.2rem rgba(90, 118, 78, 0.15);
  background: #ffffff;
  outline: none;
}

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

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

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

#contact .contact-info-container {
  flex: 0 0 380px;
  background: hsl(108, 31%, 22%);
  padding: 45px 35px;
  border-radius: 12px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

#contact .contact-info-container h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ffffff;
}

#contact .contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

#contact .contact-icon {
  width: 50px;
  height: 50px;
  background: hsl(108, 31%, 37%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: #ffffff;
}

#contact .contact-info-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: hsl(108, 31%, 62%);
}

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

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

#contact .contact-info-content a:hover {
  color: hsl(108, 31%, 62%);
}

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

#contact .hours-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

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

#contact .hours-day {
  font-weight: 500;
  color: hsl(108, 31%, 62%);
}

#contact .hours-time {
  color: #e8e8e8;
}

@media (max-width: 991px) {
  #contact .contact-wrapper {
    flex-direction: column;
  }
  
  #contact .contact-info-container {
    flex: 1;
  }
  
  #contact .section-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 767px) {
  #contact {
    padding: 60px 0;
  }
  
  #contact .section-title {
    font-size: 2rem;
  }
  
  #contact .contact-form-container,
  #contact .contact-info-container {
    padding: 30px 25px;
  }
  
  #contact .btn-submit {
    padding: 14px 40px;
  }
}

@media (max-width: 575px) {
  #contact .section-title {
    font-size: 1.75rem;
  }
  
  #contact .contact-form-container h3,
  #contact .contact-info-container h3 {
    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(108, 31%, 37%);
    --secondary-color: hsl(108, 31%, 22%);
    --accent-color: hsl(108, 31%, 62%);
  }
  
  .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);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .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: 2px solid var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.25rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
  }
  
  .policy-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .policy-intro p {
    margin-bottom: 0;
    font-size: 1.1rem;
  }
  
  .cookie-type-card {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cookie-type-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .contact-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-box h2 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box h2::before {
    background-color: var(--accent-color);
  }
  
  .contact-box a {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }
  
  .contact-box a:hover {
    color: white;
  }
  
  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-top: 1rem;
  }
  
  .highlight-box {
    background-color: #fff9e6;
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
  }
  
  .highlight-box strong {
    color: var(--primary-color);
  }

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

.faq-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: hsl(108, 31%, 22%);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

.accordion-button {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: hsl(108, 31%, 22%);
    background-color: #ffffff;
    padding: 1.5rem 1.8rem;
    border: none;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.accordion-button:not(.collapsed) {
    background-color: hsl(108, 31%, 37%);
    color: #ffffff;
    box-shadow: none;
}

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

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%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;
}

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

.accordion-body {
    padding: 1.8rem;
    background-color: #ffffff;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
}

.accordion-body strong {
    color: hsl(108, 31%, 37%);
    font-weight: 600;
}

.accordion-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
}

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

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

    .accordion-button {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
    }

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(108, 31%, 37%) 0%, hsl(108, 31%, 22%) 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.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-description {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 700px;
  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;
  font-family: 'Lora', serif;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
}

.newsletter-email-input:focus {
  outline: none;
  border-color: hsl(108, 31%, 62%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

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

.newsletter-submit-btn {
  padding: 16px 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: hsl(108, 31%, 62%);
  color: #222;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: hsl(108, 31%, 67%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.newsletter-benefit-icon {
  width: 24px;
  height: 24px;
  background: hsl(108, 31%, 62%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-benefit-icon::before {
  content: '✓';
  color: #222;
  font-weight: bold;
  font-size: 14px;
}

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

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

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

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

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

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

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

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

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

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

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

.hero-section .container {
  max-width: 1200px;
}

.hero-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-content {
  padding: 40px 0 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-section h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: hsl(108, 31%, 22%);
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.hero-advantages li {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: #222222;
  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(108, 31%, 37%);
  font-size: 1.3rem;
  font-weight: bold;
}

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

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

.hero-btn-primary:hover {
  background-color: hsl(108, 31%, 22%);
  border-color: hsl(108, 31%, 22%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.hero-btn-secondary:hover {
  background-color: hsl(108, 31%, 37%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .hero-content {
    padding: 40px 20px;
  }

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

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

  .hero-image-wrapper {
    min-height: 400px;
    margin-bottom: 30px;
  }
}

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

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

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

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

  .hero-advantages li {
    font-size: 1rem;
  }

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

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

  .hero-image-wrapper {
    min-height: 300px;
  }
}

.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: hsl(108, 31%, 22%);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(108, 81, 60, 0.15);
    border-color: hsl(108, 31%, 62%);
  }

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

  .service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(108, 31%, 62%) 0%, hsl(108, 31%, 37%) 100%);
    transform: rotate(360deg);
  }

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

  .service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: hsl(108, 31%, 22%);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .service-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 1.2rem;
    margin-top: auto;
  }

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

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

  .service-badge {
    display: inline-block;
    background: hsl(108, 31%, 62%);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

    .service-card {
      padding: 1.5rem;
    }

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

    .service-icon i {
      font-size: 1.7rem;
    }
  }

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

  .blog-preview-section h2 {
    font-family: 'Oswald', sans-serif;
    color: hsl(108, 31%, 22%);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px 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.4s ease;
  }

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

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

  .blog-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #777;
  }

  .blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .blog-meta i {
    color: hsl(108, 31%, 37%);
  }

  .blog-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: hsl(108, 31%, 22%);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 500;
  }

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

  .blog-card h3 a:hover {
    color: hsl(108, 31%, 37%);
  }

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

  .blog-read-more {
    color: hsl(108, 31%, 37%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
  }

  .blog-read-more:hover {
    gap: 0.8rem;
    color: hsl(108, 31%, 22%);
  }

  .view-all-btn {
    background: hsl(108, 31%, 37%);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 3rem;
    border: 2px solid hsl(108, 31%, 37%);
  }

  .view-all-btn:hover {
    background: hsl(108, 31%, 22%);
    border-color: hsl(108, 31%, 22%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

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

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

    .blog-card-content {
      padding: 1.5rem;
    }

    .blog-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }

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

  #credentials {
    padding: 50px 0;
    background-color: #ffffff;
  }

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

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

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

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

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

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

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

    #credentials .credential-card {
      margin-bottom: 15px;
    }
  }

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

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

  #testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: hsl(108, 31%, 62%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

  #testimonials::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: hsl(108, 31%, 37%, 0.05);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .testimonials-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(108, 31%, 22%);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

  .testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid hsl(108, 31%, 62%);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

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

  .testimonial-card.featured {
    background: linear-gradient(135deg, hsl(108, 31%, 37%) 0%, hsl(108, 31%, 22%) 100%);
    border-left: 4px solid hsl(108, 31%, 62%);
    color: #ffffff;
  }

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

  .testimonial-card.featured .testimonial-author {
    color: #ffffff;
  }

  .testimonial-card.featured .testimonial-location {
    color: hsl(108, 31%, 62%);
  }

  .testimonial-card.compact {
    padding: 25px;
    border-left: 4px solid hsl(108, 31%, 37%);
  }

  .testimonial-card.detailed {
    padding: 40px;
    border: 2px solid hsl(108, 31%, 62%);
    border-left: 6px solid hsl(108, 31%, 37%);
  }

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

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

  .star.empty {
    color: #ddd;
  }

  .testimonial-card.featured .star.empty {
    color: rgba(255, 255, 255, 0.3);
  }

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

  .testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
  }

  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: hsl(108, 31%, 62%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    flex-shrink: 0;
  }

  .testimonial-card.featured .testimonial-avatar {
    background: #ffffff;
    color: hsl(108, 31%, 37%);
  }

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

  .testimonial-author {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(108, 31%, 22%);
    margin-bottom: 3px;
  }

  .testimonial-location {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #666;
  }

  .testimonial-pet {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: hsl(108, 31%, 37%);
    margin-top: 3px;
  }

  .testimonial-card.featured .testimonial-pet {
    color: hsl(108, 31%, 62%);
  }

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

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

    .testimonial-card {
      padding: 25px;
    }

    .testimonial-card.detailed {
      padding: 30px;
    }

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

    .testimonial-avatar {
      width: 50px;
      height: 50px;
      font-size: 1.3rem;
    }
  }

.offer-section {
  background: linear-gradient(135deg, hsl(108, 31%, 37%) 0%, hsl(108, 31%, 22%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.offer-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

.deadline-wrapper {
  background: linear-gradient(135deg, hsl(108, 31%, 62%) 0%, hsl(108, 31%, 37%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

.deadline-date {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.deadline-icon {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 10px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.benefits-list li {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: #333333;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
}

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

.benefits-list li i {
  color: hsl(108, 31%, 37%);
  font-size: 24px;
  margin-right: 15px;
  min-width: 30px;
}

.discount-badge {
  background: hsl(108, 31%, 37%);
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 72px;
  font-weight: 700;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.discount-badge::after {
  content: 'OFF';
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  bottom: 35px;
}

.offer-cta-btn {
  background: hsl(108, 31%, 37%);
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.offer-cta-btn:hover {
  background: hsl(108, 31%, 22%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

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

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

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

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

  .deadline-date {
    font-size: 40px;
  }

  .discount-badge {
    width: 130px;
    height: 130px;
    font-size: 56px;
  }

  .discount-badge::after {
    font-size: 16px;
    bottom: 28px;
  }

  .benefits-list li {
    font-size: 15px;
  }
}

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

.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(108, 31%, 37%);
}

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

.disclaimer-icon {
  font-size: 48px;
  color: hsl(108, 31%, 37%);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.disclaimer-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: hsl(108, 31%, 22%);
  text-align: center;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.disclaimer-text strong {
  color: hsl(108, 31%, 22%);
  font-weight: 600;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-container {
    padding: 40px 25px;
    margin: 0 15px;
  }
  
  .disclaimer-title {
    font-size: 2rem;
  }
  
  .disclaimer-icon {
    font-size: 40px;
  }
  
  .disclaimer-text {
    font-size: 0.95rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .disclaimer-section {
    padding: 50px 0;
  }
  
  .disclaimer-container {
    padding: 30px 20px;
  }
  
  .disclaimer-title {
    font-size: 1.75rem;
  }
  
  .disclaimer-icon {
    font-size: 36px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lora:wght@400;500;600&display=swap');
  
  :root {
    --primary-color: hsl(108, 31%, 37%);
    --secondary-color: hsl(108, 31%, 22%);
    --accent-color: hsl(108, 31%, 62%);
  }
  
  .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;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .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: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .effective-date {
    background-color: hsl(108, 31%, 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: 10px;
    margin-top: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: white;
    border-bottom-color: var(--accent-color);
    font-weight: 500;
  }
  
  .contact-box a:hover {
    color: var(--accent-color);
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 2.5rem 0;
    border: none;
  }

@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(108, 31%, 37%);
    --secondary-color: hsl(108, 31%, 22%);
    --accent-color: hsl(108, 31%, 62%);
  }
  
  .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;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }
  
  .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(108, 31%, 95%);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--secondary-color);
  }
  
  .contact-box {
    background-color: hsl(108, 31%, 97%);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--primary-color);
  }
  
  .section-highlight {
    background-color: hsl(108, 31%, 98%);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    border-left: 3px solid var(--accent-color);
  }

:root {
    --primary: hsl(108, 31%, 37%);
    --secondary: hsl(108, 31%, 22%);
    --accent: hsl(108, 31%, 62%);
  }

  .thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, hsl(108, 31%, 97%) 0%, hsl(108, 31%, 92%) 100%);
  }

  .thank-you-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    max-width: 600px;
    text-align: center;
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    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: white;
    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;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes checkmark {
    to {
      stroke-dashoffset: 0;
    }
  }

  .thank-you-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .thank-you-message {
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    color: hsl(108, 10%, 40%);
    line-height: 1.8;
    margin-bottom: 35px;
  }

  .thank-you-message strong {
    color: var(--primary);
    font-weight: 600;
  }

  .home-btn {
    font-family: 'Oswald', sans-serif;
    background-color: var(--primary);
    color: white;
    padding: 14px 40px;
    font-size: 1.125rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

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

  .info-box {
    background: hsl(108, 31%, 95%);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
  }

  .info-box p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .thank-you-card {
      padding: 40px 25px;
    }

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

    .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-heading {
      font-size: 1.875rem;
    }

    .home-btn {
      padding: 12px 30px;
      font-size: 1rem;
    }
  }