:root {
            --primary-color: hsl(57, 61%, 37%);
            --secondary-color: hsl(57, 61%, 22%);
            --accent-color: hsl(57, 61%, 62%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Raleway', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(142, 145, 54, 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(70, 72, 27, 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 {
                background-color: #ffffff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

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

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Inter', sans-serif;
  color: #222;
}

.about-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(57, 61%, 22%);
}

.about-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: hsl(57, 61%, 37%);
}

.about-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(57, 61%, 22%);
}

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

.about-intro {
  background: linear-gradient(135deg, hsl(57, 61%, 37%) 0%, hsl(57, 61%, 22%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  color: #fff;
}

.about-intro h1 {
  color: #fff;
  text-align: center;
}

.about-intro .lead {
  font-size: 1.3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #f8f9fa;
}

.story-block {
  margin-bottom: 50px;
}

.story-image {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.value-card {
  background: #f8f9fa;
  padding: 35px 25px;
  border-radius: 10px;
  border-left: 5px solid hsl(57, 61%, 37%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h3 {
  color: hsl(57, 61%, 22%);
  margin-bottom: 15px;
}

.value-card p {
  font-size: 1rem;
  margin-bottom: 0;
  color: #444;
}

.mission-vision-box {
  background: linear-gradient(to right, hsl(57, 61%, 62%) 0%, hsl(57, 61%, 52%) 100%);
  padding: 45px;
  border-radius: 12px;
  margin: 50px 0;
  color: #222;
}

.mission-vision-box h3 {
  color: hsl(57, 61%, 22%);
  margin-bottom: 20px;
}

.mission-vision-box p {
  color: #333;
  font-size: 1.05rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.expertise-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}

.expertise-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(57, 61%, 37%);
  font-weight: bold;
  font-size: 1.3rem;
}

.stats-row {
  margin: 60px 0;
  padding: 50px 0;
  background: #f5f5f5;
  border-radius: 12px;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(57, 61%, 37%);
  font-family: 'Inter', sans-serif;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-section h1 {
    font-size: 2.2rem;
  }
  
  .about-section h2 {
    font-size: 1.8rem;
  }
  
  .about-intro {
    padding: 40px 0;
  }
  
  .mission-vision-box {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

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

  #portfolio .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

  .filter-btn {
    padding: 10px 28px;
    border: 2px solid hsl(57, 61%, 37%);
    background: transparent;
    color: hsl(57, 61%, 22%);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

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

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

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

  .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 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.08);
  }

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
  }

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

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

  .portfolio-category {
    display: inline-block;
    padding: 5px 15px;
    background: hsl(57, 61%, 62%);
    color: hsl(57, 61%, 22%);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .portfolio-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .portfolio-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .view-details {
    display: inline-flex;
    align-items: center;
    color: hsl(57, 61%, 37%);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .view-details:hover {
    color: hsl(57, 61%, 22%);
    gap: 8px;
  }

  .view-details::after {
    content: "→";
    margin-left: 5px;
    transition: margin-left 0.3s ease;
  }

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

  .modal-header {
    background: hsl(57, 61%, 37%);
    color: #fff;
    border: none;
    padding: 20px 30px;
  }

  .modal-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
  }

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

  .modal-body {
    padding: 30px;
  }

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

  .project-info {
    margin-bottom: 25px;
  }

  .info-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .info-label {
    font-weight: 700;
    color: #333;
    min-width: 140px;
    font-family: 'Inter', sans-serif;
  }

  .info-value {
    color: #555;
    flex: 1;
  }

  .project-details-text {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
  }

  .project-details-text p {
    margin-bottom: 15px;
  }

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

    #portfolio .section-title {
      font-size: 2rem;
    }

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

    .filter-buttons {
      gap: 10px;
    }

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

    .portfolio-image {
      height: 220px;
    }

    .modal-body {
      padding: 20px;
    }

    .info-row {
      flex-direction: column;
      gap: 5px;
    }

    .info-label {
      min-width: auto;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

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

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

  #advantages .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #advantages .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(57, 61%, 37%);
    border-radius: 2px;
  }

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

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

  #advantages .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsl(57, 61%, 37%) 0%, hsl(57, 61%, 22%) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
  }

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: hsl(57, 61%, 37%);
  }

  #advantages .advantage-card:hover::before {
    opacity: 0.03;
  }

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

  #advantages .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(57, 61%, 37%) 0%, hsl(57, 61%, 22%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  }

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

  #advantages .advantage-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
  }

  #advantages .advantage-card:hover .advantage-title {
    color: hsl(57, 61%, 22%);
  }

  #advantages .advantage-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&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(57, 61%, 37%) 0%, hsl(57, 61%, 62%) 100%);
  }

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

  .statistics-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .statistics-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(57, 61%, 37%);
  }

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

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

  .stat-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
  }

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

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: hsl(57, 61%, 62%);
  }

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

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

  .stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(57, 61%, 52%) 0%, hsl(57, 61%, 62%) 100%);
  }

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

  .stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(57, 61%, 37%);
    margin-bottom: 12px;
    display: block;
    line-height: 1.2;
  }

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

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

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

  .stat-card {
    animation: countUp 0.6s ease forwards;
    opacity: 0;
  }

  .stat-card:nth-child(1) { animation-delay: 0.1s; }
  .stat-card:nth-child(2) { animation-delay: 0.15s; }
  .stat-card:nth-child(3) { animation-delay: 0.2s; }
  .stat-card:nth-child(4) { animation-delay: 0.25s; }
  .stat-card:nth-child(5) { animation-delay: 0.3s; }
  .stat-card:nth-child(6) { animation-delay: 0.35s; }
  .stat-card:nth-child(7) { animation-delay: 0.4s; }
  .stat-card:nth-child(8) { animation-delay: 0.45s; }
  .stat-card:nth-child(9) { animation-delay: 0.5s; }
  .stat-card:nth-child(10) { animation-delay: 0.55s; }
  .stat-card:nth-child(11) { animation-delay: 0.6s; }
  .stat-card:nth-child(12) { animation-delay: 0.65s; }
  .stat-card:nth-child(13) { animation-delay: 0.7s; }
  .stat-card:nth-child(14) { animation-delay: 0.75s; }
  .stat-card:nth-child(15) { animation-delay: 0.8s; }
  .stat-card:nth-child(16) { animation-delay: 0.85s; }

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

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

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

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

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

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(57, 61%, 22%) 0%, hsl(57, 61%, 37%) 100%);
  color: #ffffff;
  padding: 60px 0 0;
  font-family: 'Raleway', sans-serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: hsl(57, 61%, 62%);
}

footer p, footer ul li, footer a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #f8f9fa;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

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

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

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

.footer-contact-info p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

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

.footer-bottom {
  background-color: hsl(57, 61%, 22%);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #e0e0e0;
}

#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(57, 61%, 37%);
  animation: slideUp 0.5s ease-out;
}

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

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

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

.cookie-categories {
  margin: 20px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid hsl(57, 61%, 37%);
}

.cookie-category {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}

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

.cookie-category strong {
  color: #222;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
}

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

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

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

.cookie-buttons .btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.95rem;
}

.cookie-buttons .btn-accept {
  background-color: hsl(57, 61%, 37%);
  color: #ffffff;
  flex: 1;
  min-width: 150px;
}

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

.cookie-buttons .btn-reject {
  background-color: #6c757d;
  color: #ffffff;
  flex: 1;
  min-width: 150px;
}

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

.cookie-buttons .btn-settings {
  background-color: transparent;
  color: hsl(57, 61%, 37%);
  border: 2px solid hsl(57, 61%, 37%);
  flex: 1;
  min-width: 150px;
}

.cookie-buttons .btn-settings:hover {
  background-color: hsl(57, 61%, 37%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 0;
    margin-top: 60px;
  }

  footer h5 {
    font-size: 1.1rem;
    margin-top: 25px;
  }

  #cookieNotice {
    padding: 20px 0;
  }

  #cookieNotice h4 {
    font-size: 1.25rem;
  }

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

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

.contact-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info-card {
    background: linear-gradient(135deg, hsl(57, 61%, 37%) 0%, hsl(57, 61%, 22%) 100%);
    border-radius: 12px;
    padding: 40px;
    color: #ffffff;
    height: 100%;
}

.contact-form-card h3,
.contact-info-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.contact-form-card h3 {
    color: #222;
}

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

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

.contact-form-card .form-control:focus {
    border-color: hsl(57, 61%, 37%);
    box-shadow: 0 0 0 0.2rem rgba(156, 149, 60, 0.15);
    outline: 0;
}

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

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

.btn-submit-contact {
    background: hsl(57, 61%, 37%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit-contact:hover {
    background: hsl(57, 61%, 22%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: #ffffff;
}

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.contact-info-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-info-content p,
.contact-info-content a {
    color: rgba(255,255,255,0.95);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

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

.contact-info-content a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.required-mark {
    color: hsl(57, 61%, 37%);
    margin-left: 3px;
}

.form-text-small {
    font-size: 0.875rem;
    color: #666;
    margin-top: 1.5rem;
}

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

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .btn-submit-contact {
        padding: 12px 30px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');
  
  :root {
    --primary-color: hsl(57, 61%, 37%);
    --secondary-color: hsl(57, 61%, 22%);
    --accent-color: hsl(57, 61%, 62%);
  }
  
  .policy-content {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    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;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    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;
  }
  
  .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;
    font-size: 1.05rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(57, 61%, 70%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .info-box p {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
  }
  
  .cookie-type-card {
    background: #f8f9fa;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .cookie-type-card h3 {
    margin-top: 0;
    color: var(--primary-color);
  }
  
  .last-updated {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 500;
  }

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

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

  #faq .faq-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
  }

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

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

  #faq .accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s ease;
  }

  #faq .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

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

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

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

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

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

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

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

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

  #faq .accordion-body strong {
    color: hsl(57, 61%, 22%);
    font-weight: 600;
  }

  #faq .faq-contact {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: hsl(57, 61%, 62%);
    border-radius: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  #faq .faq-contact h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  #faq .faq-contact p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  #faq .faq-contact a {
    color: hsl(57, 61%, 22%);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #faq .faq-contact a:hover {
    color: #222;
  }

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

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

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

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

    #faq .faq-contact {
      margin-top: 40px;
      padding: 25px 20px;
    }
  }

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

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L35 20L60 30L35 40L30 60L25 40L0 30L25 20Z" fill="rgba(255,255,255,0.03)"/></svg>');
  opacity: 0.5;
}

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

.newsletter-heading {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
}

.newsletter-description {
  font-family: 'Raleway', sans-serif;
  font-size: 1.125rem;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.newsletter-input-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-email-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  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: hsl(57, 61%, 62%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

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

.newsletter-submit-btn {
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  background: hsl(57, 61%, 62%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .newsletter-benefits {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

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

  .newsletter-email-input,
  .newsletter-submit-btn {
    padding: 0.875rem 1.25rem;
  }
}

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

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

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

  .hero-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: hsl(57, 61%, 37%);
    margin-bottom: 1.75rem;
  }

  .hero-section .description {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

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

  .hero-advantages li {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: hsl(57, 61%, 37%);
    font-size: 1.2rem;
  }

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

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

  .hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .btn-hero-primary {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    background-color: hsl(57, 61%, 37%);
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .btn-hero-primary:hover {
    background-color: hsl(57, 61%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
  }

  .btn-hero-secondary {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    background-color: transparent;
    color: hsl(57, 61%, 37%);
    padding: 14px 32px;
    border: 2px solid hsl(57, 61%, 37%);
    border-radius: 6px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .btn-hero-secondary:hover {
    background-color: hsl(57, 61%, 37%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

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

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

    .hero-image-wrapper {
      min-height: 350px;
      margin-top: 2rem;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsla(57, 61%, 62%, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(57, 61%, 22%);
  margin-bottom: 1rem;
  text-align: center;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  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;
  border-left: 4px solid hsl(57, 61%, 62%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.testimonial-card.featured {
  border-left: 4px solid hsl(57, 61%, 37%);
  background: linear-gradient(135deg, #ffffff 0%, #fefef8 100%);
}

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

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(57, 61%, 37%) 0%, hsl(57, 61%, 62%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.testimonial-location {
  font-size: 0.9rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-location::before {
  content: '📍';
  font-size: 0.85rem;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}

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

.star.empty {
  color: #e0e0e0;
}

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

.testimonial-text.short {
  font-size: 1.05rem;
  font-weight: 500;
  color: #333;
}

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

.testimonial-date {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
  margin-top: auto;
}

.testimonial-highlight {
  background: hsla(57, 61%, 62%, 0.15);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #555;
  border-left: 3px solid hsl(57, 61%, 37%);
}

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

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

  .testimonial-card {
    padding: 25px;
  }

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

  .testimonial-info h4 {
    font-size: 1.1rem;
  }
}

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

.blog-preview-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.blog-preview-section .section-subtitle {
  color: #555;
  font-size: 1.1rem;
  text-align: center;
  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;
  border: 1px solid #e9ecef;
}

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

.blog-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 3px solid hsl(57, 61%, 37%);
}

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

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

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

.blog-meta-icon {
  color: hsl(57, 61%, 37%);
  font-size: 1rem;
}

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

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

.blog-card-title a:hover {
  color: hsl(57, 61%, 37%);
}

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

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

.blog-read-more:hover {
  gap: 12px;
  color: hsl(57, 61%, 22%);
}

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

.blog-view-all-btn {
  display: inline-block;
  padding: 15px 40px;
  background: hsl(57, 61%, 37%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid hsl(57, 61%, 37%);
}

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

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

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

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

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

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

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

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

  .services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(57, 61%, 62%, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .services-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #222;
    text-align: center;
    margin-bottom: 1rem;
  }

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

  .nav-tabs {
    border-bottom: 2px solid hsl(57, 61%, 62%);
    justify-content: center;
    margin-bottom: 3rem;
  }

  .nav-tabs .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #555;
    border: none;
    padding: 1rem 2rem;
    margin: 0 0.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-tabs .nav-link:hover {
    color: hsl(57, 61%, 37%);
    background: transparent;
  }

  .nav-tabs .nav-link.active {
    color: hsl(57, 61%, 37%);
    background: transparent;
    border-bottom: 3px solid hsl(57, 61%, 37%);
  }

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

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

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

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

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

  .service-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 1rem;
  }

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

  .service-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(57, 61%, 37%);
    margin-bottom: 1rem;
  }

  .service-terms {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
  }

  .service-cta {
    background: hsl(57, 61%, 37%);
    color: #ffffff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
  }

  .service-cta:hover {
    background: hsl(57, 61%, 22%);
    color: #ffffff;
    transform: scale(1.05);
  }

  .tab-content {
    position: relative;
  }

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

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

    .nav-tabs .nav-link {
      padding: 0.8rem 1.2rem;
      margin: 0 0.2rem;
      font-size: 0.9rem;
    }

    .service-card {
      padding: 1.5rem;
    }

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

    .service-price {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 576px) {
    .nav-tabs {
      flex-wrap: wrap;
    }

    .nav-tabs .nav-link {
      margin-bottom: 0.5rem;
    }
  }

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

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

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

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

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

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

.promo-offer .offer-description {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  color: #f8f9fa;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
}

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

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

.deadline-date {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: hsl(57, 61%, 62%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

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

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

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

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: hsl(57, 61%, 62%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: hsl(57, 61%, 22%);
}

.benefit-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.benefit-card p {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: #f8f9fa;
  line-height: 1.6;
  margin: 0;
}

.offer-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-offer {
  display: inline-block;
  background: hsl(57, 61%, 62%);
  color: hsl(57, 61%, 22%);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 3px solid hsl(57, 61%, 62%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-offer:hover {
  background: transparent;
  color: hsl(57, 61%, 62%);
  transform: scale(1.05);
}

.discount-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: hsl(57, 61%, 62%);
  color: hsl(57, 61%, 22%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.discount-badge .percent {
  font-size: 36px;
  line-height: 1;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

  .promo-offer h2 {
    font-size: 36px;
  }

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

  .calendar-icon {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

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

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

  .discount-badge .percent {
    font-size: 28px;
  }

  .discount-badge .text {
    font-size: 11px;
  }

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

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  font-family: 'Raleway', sans-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(57, 61%, 37%);
}

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

.disclaimer-icon {
  font-size: 48px;
  color: hsl(57, 61%, 37%);
  display: inline-block;
}

.disclaimer-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

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

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

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

@media (max-width: 480px) {
  .disclaimer-container {
    padding: 30px 20px;
  }
  
  .disclaimer-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
  }
}

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

  :root {
    --primary-color: hsl(57, 61%, 37%);
    --secondary-color: hsl(57, 61%, 22%);
    --accent-color: hsl(57, 61%, 62%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }

  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }

  .policy-content p {
    margin-bottom: 1.25rem;
    font-weight: 400;
  }

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

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

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

  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }

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

  .info-highlight {
    background-color: rgba(57, 61%, 37%, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid var(--accent-color);
  }

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

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: hsl(57, 61%, 22%);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid hsl(57, 61%, 37%);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    color: hsl(57, 61%, 22%);
  }

  .policy-content h2 {
    font-size: 1.75rem;
    color: hsl(57, 61%, 37%);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid hsl(57, 61%, 62%);
  }

  .policy-content h3 {
    font-size: 1.35rem;
    color: hsl(57, 61%, 30%);
  }

  .policy-content p {
    margin-bottom: 1.2rem;
    font-weight: 400;
    font-size: 1.05rem;
  }

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

  .policy-content a:hover {
    color: hsl(57, 61%, 22%);
    text-decoration: underline;
  }

  .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: hsl(57, 61%, 22%);
    font-weight: 600;
  }

  .intro-box {
    background: linear-gradient(135deg, hsl(57, 61%, 95%) 0%, hsl(57, 61%, 90%) 100%);
    border-left: 5px solid hsl(57, 61%, 37%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
  }

  .contact-info-box {
    background-color: hsl(57, 61%, 22%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

  .contact-info-box h3 {
    color: hsl(57, 61%, 62%);
    margin-top: 0;
  }

  .contact-info-box a {
    color: hsl(57, 61%, 62%);
  }

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

  .section-divider {
    height: 2px;
    background: linear-gradient(to right, hsl(57, 61%, 37%), hsl(57, 61%, 62%), hsl(57, 61%, 37%));
    margin: 3rem 0;
    border: none;
  }

  .last-updated {
    background-color: hsl(57, 61%, 95%);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-style: italic;
    color: hsl(57, 61%, 22%);
    margin-bottom: 2rem;
    display: inline-block;
  }

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

  .thank-you-section {
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(57, 61%, 95%) 0%, hsl(57, 61%, 85%) 100%);
    padding: 2rem 1rem;
  }

  .thank-you-container {
    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(57, 61%, 37%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
  }

  .success-icon svg {
    width: 60px;
    height: 60px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmark 0.8s ease-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }

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

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

  .thank-you-heading {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(57, 61%, 22%);
    margin-bottom: 1rem;
  }

  .thank-you-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(57, 61%, 37%);
    margin-bottom: 1.5rem;
  }

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

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

  .info-card {
    background: hsl(57, 61%, 97%);
    border-left: 4px solid hsl(57, 61%, 37%);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    text-align: left;
  }

  .info-card-icon {
    color: hsl(57, 61%, 37%);
    font-size: 1.5rem;
    margin-right: 0.75rem;
  }

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

  .btn-home {
    background-color: hsl(57, 61%, 37%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .btn-home:hover {
    background-color: hsl(57, 61%, 22%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: white;
  }

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

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

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

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

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

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