:root {
            --primary-color: hsl(170, 41%, 47%);
            --secondary-color: hsl(170, 41%, 32%);
            --accent-color: hsl(170, 41%, 72%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        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: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(76, 153, 136, 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(76, 153, 136, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                margin-top: 1rem;
                padding-top: 1rem;
                border-top: 1px solid #eee;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
            }
        }

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

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

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

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

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

.about-intro {
  background: linear-gradient(135deg, hsl(170, 41%, 72%) 0%, hsl(170, 41%, 47%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
}

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

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

.about-image {
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

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

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

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

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

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

.stats-row {
  background-color: hsl(170, 41%, 32%);
  padding: 50px 0;
  margin-top: 60px;
  border-radius: 8px;
}

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

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  color: hsl(170, 41%, 72%);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

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

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

  .filter-btn {
    font-family: 'Oswald', sans-serif;
    padding: 12px 28px;
    border: 2px solid hsl(170, 41%, 47%);
    background: transparent;
    color: hsl(170, 41%, 32%);
    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, 41%, 47%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 149, 136, 0.3);
  }

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

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

  .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(72, 149, 136, 0.25);
  }

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

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(34, 34, 34, 0.95) 0%, rgba(34, 34, 34, 0.3) 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(170, 41%, 47%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
  }

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

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

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

  .view-details:hover {
    color: hsl(170, 41%, 32%);
    gap: 12px;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(170, 41%, 47%) 0%, hsl(170, 41%, 32%) 100%);
    color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 25px 30px;
    border: none;
  }

  .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);
    opacity: 0.8;
  }

  .btn-close:hover {
    opacity: 1;
  }

  .modal-body {
    padding: 35px;
  }

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

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

  .modal-description {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 25px;
  }

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

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

  .detail-item {
    font-family: 'Lora', serif;
    display: flex;
    margin-bottom: 12px;
    font-size: 0.95rem;
  }

  .detail-label {
    font-weight: 700;
    color: hsl(170, 41%, 32%);
    min-width: 140px;
  }

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

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

    .detail-item {
      flex-direction: column;
    }

    .detail-label {
      margin-bottom: 5px;
    }
  }

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

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

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

#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(170, 41%, 72%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
  }

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

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

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

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

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

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

  #advantages .advantage-card:hover {
    transform: translateY(-12px);
    border-color: hsl(170, 41%, 72%);
    box-shadow: 0 12px 40px rgba(72, 149, 139, 0.2);
  }

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

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

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(72, 149, 139, 0.3);
  }

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

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

  #advantages .advantage-description {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    text-align: center;
  }

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

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

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

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

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

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

    #advantages .advantage-card {
      padding: 35px 25px;
    }

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

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

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

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(170, 41%, 47%), hsl(170, 41%, 72%));
  }

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

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

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

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

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

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: hsl(170, 41%, 47%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: hsl(170, 41%, 72%);
  }

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

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(170, 41%, 47%), hsl(170, 41%, 32%));
    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, 41%, 32%), hsl(170, 41%, 47%));
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 a, footer li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

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

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

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

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

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

.footer-description {
  margin-bottom: 25px;
  line-height: 1.8;
}

#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: 25px 0;
  border-top: 3px solid hsl(170, 41%, 47%);
  font-family: 'Lora', serif;
}

#cookieNotice h5 {
  font-family: 'Oswald', sans-serif;
  color: #222;
  font-size: 1.4rem;
  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: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.cookie-category {
  margin-bottom: 12px;
  padding: 10px;
  background: #ffffff;
  border-left: 3px solid hsl(170, 41%, 47%);
  border-radius: 4px;
}

.cookie-category strong {
  color: #222;
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
}

.cookie-category span {
  color: #666;
  font-size: 0.88rem;
}

.cookie-category.required {
  border-left-color: hsl(170, 41%, 32%);
}

.cookie-category.optional {
  border-left-color: hsl(170, 41%, 72%);
}

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

.cookie-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-btn-accept {
  background: hsl(170, 41%, 47%);
  color: #ffffff;
  font-weight: 600;
}

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

.cookie-btn-reject {
  background: #6c757d;
  color: #ffffff;
  font-weight: 600;
}

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

.cookie-btn-settings {
  background: transparent;
  color: hsl(170, 41%, 32%);
  border: 2px solid hsl(170, 41%, 47%);
  font-weight: 600;
}

.cookie-btn-settings:hover {
  background: hsl(170, 41%, 72%);
  color: #222;
  border-color: hsl(170, 41%, 72%);
}

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

  footer h5 {
    margin-top: 30px;
  }

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

  .cookie-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(170, 41%, 47%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Oswald, sans-serif; color: hsl(170, 41%, 32%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(170, 41%, 47%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(170, 41%, 32%); font-family: Oswald, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(170, 41%, 32%); font-family: Oswald, sans-serif; }
.blog-article a { color: hsl(170, 41%, 47%); }
.blog-article a:hover { color: hsl(170, 41%, 72%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(170, 41%, 47%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

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

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

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

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

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

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

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: hsl(170, 41%, 47%);
    box-shadow: 0 0 0 0.2rem hsla(170, 41%, 47%, 0.15);
    outline: none;
}

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

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

.contact-form .btn-submit:hover {
    background: hsl(170, 41%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-info-wrapper {
    background: hsl(170, 41%, 47%);
    padding: 40px;
    border-radius: 12px;
    color: #fff;
    height: 100%;
}

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

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

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

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

.contact-info-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.contact-info-item a:hover {
    color: hsl(170, 41%, 72%);
}

.contact-map {
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.required-field {
    color: hsl(170, 41%, 47%);
    margin-left: 3px;
}

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

@media (max-width: 576px) {
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }
    
    .contact-info-item {
        padding-left: 40px;
    }
    
    .contact-info-item i {
        font-size: 1.5rem;
    }
}

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

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

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

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

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

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

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

  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }

  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-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;
  }

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

  .contact-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 2px solid var(--accent-color);
  }

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

  .cookie-table {
    margin: 1.5rem 0;
  }

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

  .cookie-table td {
    vertical-align: middle;
  }

  .section-divider {
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 3rem 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');

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

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

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

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

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

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

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

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

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

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

  .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    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: 25px;
    background-color: #ffffff;
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    border-top: 2px solid hsl(170, 41%, 72%);
  }

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

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

  .accordion-body strong {
    color: hsl(170, 41%, 32%);
    font-weight: 600;
  }

  .faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, hsl(170, 41%, 47%) 0%, hsl(170, 41%, 32%) 100%);
    border-radius: 12px;
    color: #ffffff;
  }

  .faq-cta h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .faq-cta p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.95;
  }

  .faq-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #ffffff;
    color: hsl(170, 41%, 32%);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .faq-cta-btn:hover {
    background-color: hsl(170, 41%, 72%);
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

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

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

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

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

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

    .faq-cta h3 {
      font-size: 1.5rem;
    }

    .faq-cta p {
      font-size: 1rem;
    }
  }

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

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

    .faq-cta {
      padding: 30px 15px;
    }

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

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

  #newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(170, 41%, 47%) 0%, hsl(170, 41%, 32%) 100%);
    position: relative;
    overflow: hidden;
  }

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

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

  .newsletter-container {
    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-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .newsletter-description {
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    color: #f8f9fa;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }

  .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: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
  }

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

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

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

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

  .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: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

:root {
  --primary: hsl(170, 41%, 47%);
  --secondary: hsl(170, 41%, 32%);
  --accent: hsl(170, 41%, 72%);
}

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

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

.hero-image-wrapper {
  flex: 0 0 40%;
  position: relative;
}

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

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

.hero-text-wrapper {
  flex: 0 0 60%;
  padding-left: 20px;
}

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

.hero-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 25px;
}

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

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

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

.hero-advantages li::before {
  content: "\F26B";
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: bold;
}

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

.hero-btn-primary {
  font-family: 'Oswald', sans-serif;
  background: var(--primary);
  color: #ffffff;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.hero-btn-secondary {
  font-family: 'Oswald', sans-serif;
  background: transparent;
  color: var(--secondary);
  padding: 16px 40px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: var(--accent);
  color: var(--secondary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-image-wrapper,
  .hero-text-wrapper {
    flex: 0 0 100%;
    padding-left: 0;
  }
  
  .hero-section h1 {
    font-size: 2.8rem;
  }
  
  .hero-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.service-terms {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

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

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

  #offer {
    background: linear-gradient(135deg, hsl(170, 41%, 47%) 0%, hsl(170, 41%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

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

  #offer::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, 41%, 72%);
    color: hsl(170, 41%, 32%);
    padding: 8px 24px;
    border-radius: 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    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;
    line-height: 1.2;
  }

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

  .deadline-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .deadline-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .calendar-icon {
    width: 50px;
    height: 50px;
    background: hsl(170, 41%, 47%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
  }

  .date-text {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: hsl(170, 41%, 32%);
    line-height: 1;
  }

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

  .benefit-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

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

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

  .benefit-content p {
    font-family: 'Lora', serif;
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
  }

  .offer-cta-wrapper {
    text-align: center;
  }

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

  .offer-cta-btn:hover {
    background: hsl(170, 41%, 72%);
    color: hsl(170, 41%, 32%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  }

  .discount-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #ffffff;
    color: hsl(170, 41%, 32%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Oswald', sans-serif;
  }

  .discount-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
  }

  .discount-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }

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

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

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

    .deadline-box {
      padding: 30px 20px;
    }

    .date-text {
      font-size: 32px;
    }

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

    .discount-badge {
      width: 80px;
      height: 80px;
      top: 20px;
      right: 20px;
    }

    .discount-number {
      font-size: 28px;
    }

    .discount-text {
      font-size: 12px;
    }
  }

@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: #f8f9fa;
  }

  #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: #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;
  }

  #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: 15px;
  }

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

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

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

    #credentials .credential-card {
      padding: 20px 15px;
    }

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

@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: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(170, 41%, 47%) 0%, hsl(170, 41%, 72%) 100%);
  }

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

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

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

  .testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid hsl(170, 41%, 47%);
    height: 100%;
  }

  .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, 41%, 47%) 0%, hsl(170, 41%, 32%) 100%);
    border-left: none;
    color: #ffffff;
  }

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

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

  .testimonial-card.featured .customer-location {
    color: hsl(170, 41%, 92%);
  }

  .testimonial-card.featured .star {
    color: #ffd700;
  }

  .testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

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

  .customer-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(170, 41%, 72%) 0%, hsl(170, 41%, 47%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    flex-shrink: 0;
  }

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

  .customer-details h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 3px 0;
  }

  .customer-location {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
  }

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

  .star {
    color: #ffd700;
    font-size: 1.1rem;
  }

  .star.empty {
    color: #ddd;
  }

  .testimonial-text {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
  }

  .testimonial-text.short {
    font-size: 1.1rem;
    font-weight: 500;
  }

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

  .testimonial-date {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
    font-style: italic;
  }

  .testimonial-card.featured .testimonial-date {
    color: hsl(170, 41%, 85%);
  }

  .testimonial-badge {
    display: inline-block;
    background: hsl(170, 41%, 47%);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
  }

  .testimonial-card.featured .testimonial-badge {
    background: #ffffff;
    color: hsl(170, 41%, 32%);
  }

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

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

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

    .testimonial-card {
      padding: 25px;
    }

    .customer-avatar {
      width: 50px;
      height: 50px;
      font-size: 1.1rem;
    }

    .testimonial-header {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

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

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

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

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

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

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

  .blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
  }

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

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

  .blog-meta {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 15px;
    z-index: 2;
  }

  .blog-meta-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .blog-meta-item i {
    color: hsl(170, 41%, 47%);
    font-size: 0.9rem;
  }

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

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

  .blog-card:hover .blog-title {
    color: hsl(170, 41%, 47%);
  }

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

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

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

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

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

  .blog-cta {
    text-align: center;
    margin-top: 60px;
  }

  .btn-view-all {
    display: inline-block;
    padding: 16px 45px;
    background: hsl(170, 41%, 47%);
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(72, 156, 141, 0.3);
  }

  .btn-view-all:hover {
    background: hsl(170, 41%, 32%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(72, 156, 141, 0.4);
    color: #ffffff;
  }

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

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

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

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

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

    .blog-content {
      padding: 25px;
    }

    .blog-cta {
      margin-top: 40px;
    }
  }

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

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

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

.disclaimer-icon i {
    font-size: 64px;
    color: hsl(170, 41%, 47%);
}

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

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

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

.disclaimer-highlight {
    background: hsl(170, 41%, 95%);
    padding: 25px;
    border-left: 4px solid hsl(170, 41%, 47%);
    border-radius: 6px;
    margin-top: 30px;
}

.disclaimer-highlight p {
    margin-bottom: 0;
    font-size: 15px;
    color: #333;
}

@media (max-width: 768px) {
    .disclaimer-section {
        padding: 60px 0;
    }
    
    .disclaimer-container {
        padding: 35px 25px;
    }
    
    .disclaimer-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .disclaimer-icon i {
        font-size: 48px;
    }
    
    .disclaimer-content {
        font-size: 15px;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .disclaimer-container {
        padding: 30px 20px;
    }
    
    .disclaimer-title {
        font-size: 28px;
    }
    
    .disclaimer-highlight {
        padding: 20px;
    }
}

@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, 41%, 47%);
    --secondary-color: hsl(170, 41%, 32%);
    --accent-color: hsl(170, 41%, 72%);
  }
  
  .policy-content {
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--primary-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 ul,
  .policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
  }
  
  .info-box {
    background-color: rgba(170, 41%, 72%, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .contact-card h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-card a {
    color: white;
    font-weight: 600;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 2.5rem 0;
    border: none;
  }
  
  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
  }

@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, 41%, 47%);
    --secondary-color: hsl(170, 41%, 32%);
    --accent-color: hsl(170, 41%, 72%);
  }
  
  .policy-content {
    font-family: 'Lora', serif;
    color: #2c3e50;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.4rem;
    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 ul,
  .policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.8rem;
  }
  
  .policy-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
  }
  
  .effective-date {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 2rem;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }
  
  .contact-box strong {
    color: var(--secondary-color);
  }
  
  .section-highlight {
    background-color: rgba(81, 168, 155, 0.08);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
  }
  
  .important-notice {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
  }
  
  .important-notice strong {
    color: #856404;
  }

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

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

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

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, hsl(170, 41%, 47%) 0%, hsl(170, 41%, 32%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
    position: relative;
  }

  .success-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid hsl(170, 41%, 72%);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
  }

  .checkmark {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: drawCheck 0.6s ease-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }

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

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

  @keyframes pulseRing {
    0% {
      transform: scale(0.8);
      opacity: 1;
    }
    100% {
      transform: scale(1.2);
      opacity: 0;
    }
  }

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

  .thank-you-subheading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: hsl(170, 41%, 47%);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
  }

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

  .thank-you-message strong {
    color: hsl(170, 41%, 32%);
    font-weight: 600;
  }

  .info-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }

  @media (min-width: 576px) {
    .info-boxes {
      grid-template-columns: 1fr 1fr;
    }
  }

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

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

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

  .info-box-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
  }

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

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

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

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

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

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

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

    .success-icon-wrapper::after {
      width: 100px;
      height: 100px;
    }

    .checkmark {
      width: 40px;
      height: 40px;
    }
  }