:root {
            --primary-color: hsl(170, 67%, 42%);
            --secondary-color: hsl(170, 67%, 27%);
            --accent-color: hsl(170, 67%, 67%);
        }
        
        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.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--primary-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(42, 157, 143, 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(42, 157, 143, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h1, .about-section h2, .about-section h3 {
  font-family: 'Oswald', sans-serif;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: hsl(170, 67%, 27%);
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: hsl(170, 67%, 27%);
}

.about-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: hsl(170, 67%, 42%);
}

.about-intro {
  background: #ffffff;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 60px;
}

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

.about-content {
  margin-bottom: 50px;
}

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

.about-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

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

.value-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 8px;
  border-left: 4px solid hsl(170, 67%, 42%);
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: hsl(170, 67%, 27%);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.value-card p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.experience-box {
  background: hsl(170, 67%, 42%);
  color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  margin-top: 50px;
  text-align: center;
}

.experience-box h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

.experience-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

.mission-vision-row {
  margin-top: 50px;
}

.mission-box, .vision-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.mission-box h3, .vision-box h3 {
  color: hsl(170, 67%, 42%);
  margin-bottom: 20px;
}

.mission-box p, .vision-box p {
  color: #444;
  line-height: 1.8;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .about-section h1 {
    font-size: 2.2rem;
  }
  
  .about-intro {
    padding: 30px 20px;
  }
  
  .about-image-wrapper img {
    height: 300px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.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: #222;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    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: 3rem;
  }

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

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(170, 67%, 42%);
    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: 2rem;
  }

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

  .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px 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;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

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

  .portfolio-content {
    padding: 25px;
  }

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

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

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

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

  .view-details-btn:hover {
    background: hsl(170, 67%, 27%);
    color: #fff;
    transform: translateX(5px);
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(170, 67%, 42%) 0%, hsl(170, 67%, 27%) 100%);
    color: #fff;
    border-bottom: none;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 30px;
  }

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

  .modal-category {
    font-family: 'Oswald', sans-serif;
    display: inline-block;
    padding: 5px 15px;
    background: hsl(170, 67%, 67%);
    color: #222;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
  }

  .modal-detail-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #222;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .modal-detail-text {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .project-specs {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 1.5rem;
  }

  .spec-item {
    font-family: 'Lora', serif;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 0.95rem;
  }

  .spec-item:last-child {
    border-bottom: none;
  }

  .spec-label {
    font-weight: 600;
    color: #222;
  }

  .spec-value {
    color: #555;
  }

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

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

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

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

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

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

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

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

  .advantages-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: 600;
    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: 12px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: hsl(170, 67%, 42%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: hsl(170, 67%, 67%);
  }

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

  .advantage-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(170, 67%, 42%), hsl(170, 67%, 67%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
  }

  .advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(170, 67%, 27%), hsl(170, 67%, 42%));
  }

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

  .advantage-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 18px;
    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 {
      margin-bottom: 40px;
    }

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

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

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

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

.statistics-section {
  background: linear-gradient(135deg, hsl(170, 67%, 42%) 0%, hsl(170, 67%, 27%) 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.1)"/></svg>');
  opacity: 0.3;
}

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

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

.statistics-section .section-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: hsl(170, 67%, 67%);
  background: #ffffff;
}

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

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, hsl(170, 67%, 27%), hsl(170, 67%, 42%));
}

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

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

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

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

@media (max-width: 991px) {
  .statistics-section {
    padding: 60px 0;
  }
  
  .statistics-section .section-title {
    font-size: 2rem;
  }
  
  .stat-card {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .statistics-section {
    padding: 50px 0;
  }
  
  .statistics-section .section-title {
    font-size: 1.75rem;
  }
  
  .stat-number {
    font-size: 2.3rem;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
  }
  
  .stat-icon i {
    font-size: 28px;
  }
}

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

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

footer p, footer ul li, footer a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

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

footer a:hover {
  color: hsl(170, 67%, 67%);
  padding-left: 5px;
}

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

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

.footer-description {
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

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

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

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 4px solid hsl(170, 67%, 42%);
  font-family: 'Lora', serif;
}

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

#cookieNotice p {
  color: #555;
  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 #e9ecef;
  color: #333;
  font-size: 0.9rem;
}

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

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

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

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

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

.btn-accept-all {
  background: hsl(170, 67%, 42%);
  color: #ffffff;
}

.btn-accept-all:hover {
  background: hsl(170, 67%, 35%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

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

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

.btn-manage {
  background: transparent;
  color: hsl(170, 67%, 42%);
  border: 2px solid hsl(170, 67%, 42%);
}

.btn-manage:hover {
  background: hsl(170, 67%, 42%);
  color: #ffffff;
}

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

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

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

.contact-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(170, 67%, 27%);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.contact-form-wrapper h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: hsl(170, 67%, 27%);
  margin-bottom: 25px;
  text-transform: uppercase;
}

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

.contact-section .form-control,
.contact-section .form-control:focus {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  color: #333;
  background: #fafafa;
  transition: all 0.3s ease;
}

.contact-section .form-control:focus {
  border-color: hsl(170, 67%, 42%);
  background: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(42, 178, 145, 0.15);
  outline: none;
}

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

.contact-section .btn-submit {
  background: hsl(170, 67%, 42%);
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-family: 'Oswald', sans-serif;
  width: 100%;
  margin-top: 10px;
}

.contact-section .btn-submit:hover {
  background: hsl(170, 67%, 27%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 178, 145, 0.3);
}

.contact-info-wrapper {
  background: hsl(170, 67%, 27%);
  border-radius: 12px;
  padding: 40px;
  color: #ffffff;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

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

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

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

.contact-icon {
  width: 45px;
  height: 45px;
  background: hsl(170, 67%, 42%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  flex-shrink: 0;
  font-size: 1.2rem;
}

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

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

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

.contact-info-content a:hover {
  color: hsl(170, 67%, 67%);
}

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

.hours-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.hours-list strong {
  color: hsl(170, 67%, 67%);
  min-width: 120px;
  display: inline-block;
}

@media (max-width: 991px) {
  .contact-info-wrapper {
    margin-top: 30px;
  }
  
  .contact-section h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 30px 20px;
  }
  
  .contact-section h2 {
    font-size: 1.9rem;
  }
  
  .contact-form-wrapper h3,
  .contact-info-wrapper h3 {
    font-size: 1.5rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lora:wght@400;500;600&display=swap');
  
  :root {
    --primary-color: hsl(170, 67%, 42%);
    --secondary-color: hsl(170, 67%, 27%);
    --accent-color: hsl(170, 67%, 67%);
  }
  
  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: 1.5rem;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
  }
  
  h2 {
    font-size: 1.85rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 1.75rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .policy-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .policy-intro p {
    margin-bottom: 0;
    font-size: 1.1rem;
  }
  
  .policy-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
  }
  
  .contact-box {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-box h2 {
    color: white;
    border-left-color: var(--accent-color);
  }
  
  .contact-box a {
    color: var(--accent-color);
  }
  
  .contact-box a:hover {
    color: white;
  }
  
  ul, ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  li {
    margin-bottom: 0.75rem;
  }
  
  strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .last-updated {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  
  .cookie-type-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: 'Oswald', sans-serif;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }

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

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

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

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

.accordion-item {
  border: none;
  margin-bottom: 1.2rem;
  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);
  transform: translateY(-2px);
}

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

.accordion-button:not(.collapsed) {
  background-color: hsl(170, 67%, 42%);
  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='%23222'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.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: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  border-top: 2px solid hsl(170, 67%, 67%);
}

.accordion-body p {
  margin-bottom: 1rem;
}

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

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

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

.faq-highlight {
  color: hsl(170, 67%, 27%);
  font-weight: 600;
}

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

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

  .faq-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

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

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

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

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

  .accordion-body {
    font-size: 0.95rem;
  }
}

.newsletter-section {
  background: linear-gradient(135deg, hsl(170, 67%, 27%) 0%, hsl(170, 67%, 42%) 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%;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

.newsletter-submit:hover {
  background: hsl(170, 67%, 67%);
  border-color: hsl(170, 67%, 67%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

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

@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: 12px;
  }

  .newsletter-submit {
    width: 100%;
  }

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

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

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

  .newsletter-submit {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
}

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

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: hsl(170, 67%, 42%);
    opacity: 0.05;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
  }

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

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
  }

  .hero-text-block {
    padding-right: 40px;
  }

  .hero-label {
    display: inline-block;
    background: hsl(170, 67%, 67%);
    color: hsl(170, 67%, 27%);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
  }

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

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

  .hero-description {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
  }

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

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

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

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

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

  .hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-20px);
  }

  .hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: hsl(170, 67%, 67%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
  }

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

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

  .hero-stats-badge {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 4;
  }

  .stats-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(170, 67%, 42%);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
  }

  .stats-label {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: #666;
  }

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

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

  .hero-btn-primary:hover {
    background: hsl(170, 67%, 27%);
    border-color: hsl(170, 67%, 27%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(42, 157, 143, 0.3);
  }

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

  .hero-btn-secondary:hover {
    background: hsl(170, 67%, 42%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(42, 157, 143, 0.2);
  }

  .btn-icon {
    font-size: 1.2rem;
  }

  @media (max-width: 992px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 50px;
    }

    .hero-text-block {
      padding-right: 0;
    }

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

    .hero-image-wrapper {
      transform: translateY(0);
    }

    .hero-stats-badge {
      left: 20px;
      bottom: 20px;
    }
  }

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

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

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

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

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

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

    .hero-stats-badge {
      position: relative;
      left: 0;
      bottom: 0;
      margin-top: 20px;
    }
  }

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

    .hero-advantages li {
      font-size: 0.95rem;
      padding-left: 35px;
    }

    .hero-advantages li::before {
      width: 20px;
      height: 20px;
    }

    .hero-advantages li::after {
      left: 6px;
      font-size: 0.8rem;
    }
  }

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

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

.credential-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 20px;
}

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

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

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

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

@media (max-width: 576px) {
  .credentials-section .section-title {
    font-size: 1.75rem;
  }
}

.promo-offer-section {
  background: linear-gradient(135deg, hsl(170, 67%, 42%) 0%, hsl(170, 67%, 27%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

.deadline-label {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  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;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

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

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

.benefits-title {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: hsl(170, 67%, 27%);
  margin-bottom: 35px;
  text-transform: uppercase;
  text-align: center;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: hsl(170, 67%, 95%);
  transform: translateX(10px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: hsl(170, 67%, 42%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
}

.benefit-text {
  flex: 1;
}

.benefit-text h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

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

.offer-cta-button {
  display: inline-block;
  background: #ffffff;
  color: hsl(170, 67%, 27%);
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

.offer-cta-button:hover {
  background: hsl(170, 67%, 67%);
  color: hsl(170, 67%, 27%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.discount-badge {
  display: inline-block;
  background: #ff6b6b;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

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

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

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

  .deadline-date {
    font-size: 40px;
    flex-direction: column;
    gap: 15px;
  }

  .offer-benefits {
    padding: 35px 25px;
  }

  .benefits-title {
    font-size: 26px;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-item:hover {
    transform: translateX(0);
  }

  .offer-cta-button {
    font-size: 18px;
    padding: 15px 40px;
  }
}

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

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

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

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(42, 157, 143, 0.2);
  border-color: hsl(170, 67%, 42%);
}

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

.service-card:hover .service-icon {
  transform: rotate(360deg);
  background: linear-gradient(135deg, hsl(170, 67%, 27%) 0%, hsl(170, 67%, 42%) 100%);
}

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

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

.service-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.service-term {
  color: #777;
  font-size: 0.9rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-section h2 {
    font-size: 2.2rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

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

.blog-meta-item i {
  color: hsl(170, 67%, 42%);
  font-size: 0.95rem;
}

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

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

.blog-card h3 a:hover {
  color: hsl(170, 67%, 42%);
}

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

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(170, 67%, 42%);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  color: hsl(170, 67%, 27%);
  gap: 12px;
}

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

.btn-view-all {
  display: inline-block;
  padding: 15px 40px;
  background: hsl(170, 67%, 42%);
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-view-all:hover {
  background: hsl(170, 67%, 27%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

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

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

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

  .blog-meta {
    flex-direction: column;
    gap: 8px;
  }
}

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

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

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

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

.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(170, 67%, 42%) 0%, hsl(170, 67%, 27%) 100%);
  color: #ffffff;
  border: none;
}

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

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

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

.testimonial-card.simple {
  background: #f8f9fa;
  border-left: 4px solid hsl(170, 67%, 42%);
}

.testimonial-card.minimal {
  background: #ffffff;
  border: 2px solid hsl(170, 67%, 67%);
  padding: 25px;
}

.rating-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.rating-stars .star {
  color: #ffc107;
}

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

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

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

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(170, 67%, 67%) 0%, hsl(170, 67%, 42%) 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;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(170, 67%, 42%);
}

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

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

.customer-location {
  color: #666;
  font-size: 0.9rem;
}

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

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

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

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

@media (max-width: 576px) {
  .testimonials-section h2 {
    font-size: 1.75rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  .customer-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

.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(170, 67%, 42%);
}

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 2px solid #e9ecef;
}

.disclaimer-icon {
  font-size: 48px;
  color: hsl(170, 67%, 42%);
  flex-shrink: 0;
}

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

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

.disclaimer-content p {
  margin-bottom: 0;
}

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

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

  .disclaimer-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .disclaimer-title {
    font-size: 32px;
  }

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

  .disclaimer-content {
    font-size: 16px;
    text-align: left;
  }
}

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

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

  .disclaimer-content {
    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');

  :root {
    --primary-color: hsl(170, 67%, 42%);
    --secondary-color: hsl(170, 67%, 27%);
    --accent-color: hsl(170, 67%, 67%);
  }

  .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;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

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

  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

@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(170, 67%, 42%);
    --secondary-color: hsl(170, 67%, 27%);
    --accent-color: hsl(170, 67%, 67%);
  }

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

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

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

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

  h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
  }

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

  .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(--secondary-color);
    text-decoration: underline;
  }

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

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

  .highlight-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(170, 67%, 85%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
  }

  .contact-box {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
  }

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

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

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

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

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

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

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(170, 67%, 97%) 0%, hsl(170, 67%, 90%) 100%);
    padding: 2rem 1rem;
  }

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

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: hsl(170, 67%, 42%);
    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;
  }

  .checkmark {
    animation: drawCheck 0.5s ease-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }

  @keyframes scaleIn {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

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

  .thank-you-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(170, 67%, 27%);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
  }

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

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

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

  .info-box {
    background: hsl(170, 67%, 95%);
    border-left: 4px solid hsl(170, 67%, 42%);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: left;
  }

  .info-box-icon {
    font-size: 1.5rem;
    color: hsl(170, 67%, 42%);
    margin-bottom: 0.5rem;
  }

  .info-box-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(170, 67%, 27%);
    margin-bottom: 0.25rem;
  }

  .info-box-text {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: #555;
    margin: 0;
  }

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

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

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

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

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

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

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

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