:root {
            --primary-color: hsl(96, 37%, 42%);
            --secondary-color: hsl(96, 37%, 27%);
            --accent-color: hsl(96, 37%, 67%);
        }
        
        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.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--secondary-color);
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--primary-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851, 51, 51, 0.75%29' 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 #e9ecef;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

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

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

  #about .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(96, 37%, 27%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

  #about .content-block {
    margin-bottom: 4rem;
  }

  #about .content-block h2 {
    font-size: 1.8rem;
    color: hsl(96, 37%, 27%);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }

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

  #about .about-image {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }

  #about .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
  }

  #about .value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #about .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  #about .value-card h3 {
    font-size: 1.4rem;
    color: hsl(96, 37%, 42%);
    margin-bottom: 1rem;
    font-weight: 600;
  }

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

  #about .stats-row {
    background: hsl(96, 37%, 27%);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
  }

  #about .stat-item {
    text-align: center;
    color: #ffffff;
  }

  #about .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(96, 37%, 67%);
    display: block;
    margin-bottom: 0.5rem;
  }

  #about .stat-label {
    font-size: 1rem;
    color: #f8f9fa;
  }

  #about .mission-box {
    background: linear-gradient(135deg, hsl(96, 37%, 42%) 0%, hsl(96, 37%, 27%) 100%);
    padding: 3rem;
    border-radius: 12px;
    color: #ffffff;
    margin: 3rem 0;
  }

  #about .mission-box h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
  }

  #about .mission-box p {
    color: #f8f9fa;
    font-size: 1.1rem;
    line-height: 1.8;
  }

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

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

    #about .content-block h2 {
      font-size: 1.5rem;
    }

    #about .values-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    #about .stats-row {
      padding: 2rem 1rem;
    }

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

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

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

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

  #portfolio .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(96, 37%, 42%);
  }

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

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

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

  .portfolio-filters .filter-btn:hover,
  .portfolio-filters .filter-btn.active {
    background: hsl(96, 37%, 42%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 125, 77, 0.3);
  }

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

  .portfolio-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
  }

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

  .portfolio-item-image {
    position: relative;
    overflow: hidden;
    height: 240px;
  }

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

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

  .portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }

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

  .portfolio-item-overlay .category-badge {
    background: hsl(96, 37%, 42%);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
  }

  .portfolio-item-content {
    padding: 25px;
  }

  .portfolio-item-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
  }

  .portfolio-item-content .category {
    display: inline-block;
    background: hsl(96, 37%, 67%);
    color: hsl(96, 37%, 27%);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .portfolio-item-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .portfolio-item-content .view-details {
    color: hsl(96, 37%, 42%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }

  .portfolio-item-content .view-details:hover {
    gap: 12px;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(96, 37%, 42%) 0%, hsl(96, 37%, 27%) 100%);
    color: #ffffff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 30px;
  }

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

  .modal-body .project-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
  }

  .modal-body .project-meta-item {
    display: flex;
    flex-direction: column;
  }

  .modal-body .project-meta-item strong {
    font-family: 'Inter', sans-serif;
    color: hsl(96, 37%, 27%);
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  .modal-body .project-meta-item span {
    color: #555;
    font-size: 0.95rem;
  }

  .modal-body h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #222;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .modal-body p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .modal-body ul {
    list-style: none;
    padding: 0;
  }

  .modal-body ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #666;
  }

  .modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(96, 37%, 42%);
    font-weight: bold;
  }

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

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

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

    .portfolio-filters {
      gap: 10px;
    }

    .portfolio-filters .filter-btn {
      padding: 8px 20px;
      font-size: 0.9rem;
    }

    .modal-body {
      padding: 20px;
    }

    .modal-body .project-meta {
      gap: 20px;
    }
  }

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

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

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

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

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

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

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

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

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

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

  .advantage-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
  }

  .advantage-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

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

    #advantages h2 {
      font-size: 2rem;
    }

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

  @media (max-width: 576px) {
    #advantages h2 {
      font-size: 1.75rem;
    }

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

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

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

@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(96, 37%, 42%) 0%, hsl(96, 37%, 67%) 100%);
  }

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

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

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

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

  #statistics .stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    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;
  }

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

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

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: hsl(96, 37%, 67%);
  }

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

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

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

  #statistics .stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(96, 37%, 42%);
    margin-bottom: 10px;
    line-height: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

footer h5 {
  font-family: 'Inter', sans-serif;
  color: hsl(96, 37%, 67%);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

footer a {
  color: #e9ecef;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: hsl(96, 37%, 67%);
  transform: translateX(5px);
}

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

footer ul li {
  margin-bottom: 12px;
  padding-left: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 10px;
}

.footer-contact-item i {
  color: hsl(96, 37%, 67%);
  margin-top: 4px;
  font-size: 1.1rem;
  min-width: 20px;
}

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

.footer-bottom a {
  color: hsl(96, 37%, 67%);
  margin: 0 8px;
}

.footer-bottom a:hover {
  color: #fff;
  transform: none;
}

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

.business-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  border-left: 3px solid hsl(96, 37%, 67%);
}

.business-hours p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.business-hours p:last-child {
  margin-bottom: 0;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 30px 0;
  z-index: 9999;
  border-top: 3px solid hsl(96, 37%, 42%);
  animation: slideUp 0.4s ease-out;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

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

.cookie-categories {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  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-icon {
  color: hsl(96, 37%, 42%);
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: 2px;
}

.cookie-category-content h6 {
  font-family: 'Inter', sans-serif;
  color: #222;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.cookie-category-content p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-category-required {
  display: inline-block;
  background: hsl(96, 37%, 42%);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 600;
}

.cookie-category-optional {
  display: inline-block;
  background: #6c757d;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-accept-all {
  background: hsl(96, 37%, 42%);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-accept-all:hover {
  background: hsl(96, 37%, 37%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-reject-optional {
  background: #6c757d;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

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

.btn-manage-settings {
  background: transparent;
  color: hsl(96, 37%, 42%);
  border: 2px solid hsl(96, 37%, 42%);
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-manage-settings:hover {
  background: hsl(96, 37%, 42%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

  footer h5 {
    margin-top: 30px;
    font-size: 1rem;
  }

  footer h5:first-child {
    margin-top: 0;
  }

  #cookieNotice {
    padding: 20px 0;
  }

  .cookie-title {
    font-size: 1.2rem;
  }

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

  .btn-accept-all,
  .btn-reject-optional,
  .btn-manage-settings {
    width: 100%;
    text-align: center;
  }
}

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

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(96, 37%, 67%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

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

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

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

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

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

.contact-form-wrapper h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: hsl(96, 37%, 42%);
  background: #ffffff;
  box-shadow: 0 0 0 4px hsla(96, 37%, 42%, 0.1);
}

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

.contact-form .required-mark {
  color: hsl(96, 37%, 42%);
  margin-left: 3px;
}

.contact-form .submit-btn {
  width: 100%;
  padding: 14px 30px;
  background: hsl(96, 37%, 42%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-form .submit-btn:hover {
  background: hsl(96, 37%, 27%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid hsl(96, 37%, 42%);
}

.contact-info-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-card .icon {
  width: 35px;
  height: 35px;
  background: hsl(96, 37%, 67%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(96, 37%, 27%);
  font-weight: 700;
  font-size: 1.2rem;
}

.contact-info-card p {
  color: #555;
  margin: 8px 0;
  line-height: 1.6;
  font-size: 1rem;
}

.contact-info-card a {
  color: hsl(96, 37%, 42%);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: hsl(96, 37%, 27%);
  text-decoration: underline;
}

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

.working-hours-list li {
  padding: 8px 0;
  color: #555;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

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

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

.working-hours-list .time {
  color: hsl(96, 37%, 42%);
  font-weight: 500;
}

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

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

  .contact-form-wrapper,
  .contact-info-card {
    padding: 25px;
  }
}

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

  .contact-header h2 {
    font-size: 1.75rem;
  }

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

  .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }

  .contact-form-wrapper,
  .contact-info-card {
    padding: 20px;
  }

  .working-hours-list li {
    flex-direction: column;
    gap: 4px;
  }
}

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

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

  .info-box {
    background-color: hsl(96, 37%, 95%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

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

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

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

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

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

  .cookie-type-card {
    background-color: #f8f9fa;
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
  }

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

  .cookie-type-card h4 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.2rem;
  }

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

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

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

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

  #faq .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #ffffff;
  }

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

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

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

  #faq .accordion-button::after {
    filter: brightness(0);
    transition: all 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
  }

  #faq .accordion-body {
    padding: 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    background: #ffffff;
  }

  #faq .accordion-body p {
    margin-bottom: 0.75rem;
  }

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

  #faq .accordion-body ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
  }

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

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

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

    #faq .section-subtitle {
      font-size: 1rem;
      margin-bottom: 2rem;
    }

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

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

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

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

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

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

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

.newsletter-description {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  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-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

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

.newsletter-input:focus {
  outline: none;
  border-color: hsl(96, 37%, 67%);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit:hover {
  background: hsl(96, 37%, 72%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

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

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

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

  .newsletter-submit {
    width: 100%;
  }

  .newsletter-benefits {
    gap: 20px;
  }

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

@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=Inter:wght@400;600;700;800&family=Raleway:wght@400;500;600&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css');

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: hsl(96, 37%, 67%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

  .hero-section h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 3.2rem;
    color: #222;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    position: relative;
  }

  .hero-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: hsl(96, 37%, 42%);
    margin-bottom: 1.8rem;
    line-height: 1.4;
  }

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

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

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

  .hero-advantages li {
    padding: 0.9rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.6;
    border-left: 3px solid hsl(96, 37%, 67%);
    margin-bottom: 1rem;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
  }

  .hero-advantages li:hover {
    border-left-color: hsl(96, 37%, 42%);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .hero-advantages li i {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(96, 37%, 42%);
    font-size: 1.2rem;
  }

  .hero-image-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
  }

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

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

  .hero-image-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: hsl(96, 37%, 42%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.15;
  }

  .cta-buttons {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }

  .btn-primary-hero {
    background: hsl(96, 37%, 42%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid hsl(96, 37%, 42%);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .btn-primary-hero:hover {
    background: hsl(96, 37%, 27%);
    border-color: hsl(96, 37%, 27%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  .btn-secondary-hero {
    background: transparent;
    color: hsl(96, 37%, 42%);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid hsl(96, 37%, 42%);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }

  .btn-secondary-hero:hover {
    background: hsl(96, 37%, 42%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .stats-badge {
    display: inline-block;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-top: 1.5rem;
    border-left: 4px solid hsl(96, 37%, 42%);
  }

  .stats-badge strong {
    color: hsl(96, 37%, 42%);
    font-size: 1.1rem;
    font-weight: 700;
  }

  .stats-badge span {
    color: #555;
    font-size: 0.95rem;
  }

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

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

    .hero-image-wrapper {
      margin-top: 3rem;
    }

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

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

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

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

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

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

    .btn-primary-hero,
    .btn-secondary-hero {
      padding: 0.9rem 1.8rem;
      font-size: 1rem;
    }
  }

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

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

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

  .services-section .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    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(96, 37%, 42%) 0%, hsl(96, 37%, 67%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: hsl(96, 37%, 42%);
  }

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

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

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

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

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

  .service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .service-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
  }

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

  .service-price span {
    font-size: 0.9rem;
    color: #777;
    font-weight: 400;
  }

  .service-terms {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
  }

  .service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: hsl(96, 37%, 42%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid hsl(96, 37%, 42%);
  }

  .service-btn:hover {
    background: hsl(96, 37%, 27%);
    border-color: hsl(96, 37%, 27%);
    color: #ffffff;
    transform: translateX(5px);
  }

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

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

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

.offer-section {
  background: linear-gradient(135deg, hsl(96, 37%, 42%) 0%, hsl(96, 37%, 27%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Raleway', sans-serif;
}

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(96, 37%, 67%);
  color: hsl(96, 37%, 27%);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.offer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.offer-description {
  font-size: 1.15rem;
  color: #f8f9fa;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.deadline-block {
  background: linear-gradient(135deg, hsl(96, 37%, 67%) 0%, hsl(96, 37%, 42%) 100%);
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 40px;
  text-align: center;
}

.deadline-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: hsl(96, 37%, 27%);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deadline-date {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(96, 37%, 42%);
  font-size: 1.8rem;
}

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

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}

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

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: hsl(96, 37%, 67%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(96, 37%, 27%);
  font-size: 1.2rem;
  margin-top: 2px;
}

.discount-highlight {
  background: hsl(96, 37%, 42%);
  color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 35px;
}

.discount-percentage {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

.discount-text {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-btn {
  display: inline-block;
  background: hsl(96, 37%, 42%);
  color: #ffffff;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.offer-cta-btn:hover {
  background: hsl(96, 37%, 27%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

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

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

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

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

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

  .discount-percentage {
    font-size: 3rem;
  }

  .offer-cta-btn {
    padding: 15px 35px;
    font-size: 1rem;
  }

  .benefits-list li {
    font-size: 0.95rem;
  }
}

.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-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

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

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

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

  .blog-card-meta i {
    color: hsl(96, 37%, 42%);
  }

  .blog-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
    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(96, 37%, 42%);
  }

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

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

  .blog-card-link:hover {
    gap: 0.8rem;
    color: hsl(96, 37%, 27%);
  }

  .blog-view-all {
    text-align: center;
    margin-top: 3rem;
  }

  .btn-view-all {
    display: inline-block;
    padding: 14px 40px;
    background: hsl(96, 37%, 42%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .btn-view-all:hover {
    background: hsl(96, 37%, 27%);
    color: #ffffff;
    transform: scale(1.05);
  }

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

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

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

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

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

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

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

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

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

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

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

.testimonial-card.style-3 {
  border-left: none;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.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(96, 37%, 42%) 0%, hsl(96, 37%, 67%) 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 {
  flex-grow: 1;
}

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

.testimonial-location {
  color: #666;
  font-size: 0.95rem;
}

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

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

.star.empty {
  color: #ddd;
}

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

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

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

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

.testimonial-highlight {
  background: hsl(96, 37%, 95%);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 0.95rem;
  color: hsl(96, 37%, 27%);
  font-weight: 500;
}

@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.3rem;
  }
}

#credentials {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Raleway', sans-serif;
  }

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

  #credentials .section-subtitle {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
  }

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

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

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

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

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

    #credentials .section-title {
      font-size: 1.75rem;
    }

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

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

    #credentials .section-title {
      font-size: 1.5rem;
    }

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

    #credentials .credential-title {
      font-size: 0.9rem;
    }
  }

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  font-family: 'Raleway', sans-serif;
}

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

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid hsl(96, 37%, 42%);
}

.disclaimer-icon {
  font-size: 2.5rem;
  color: hsl(96, 37%, 42%);
  flex-shrink: 0;
}

.disclaimer-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin: 0;
}

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

.disclaimer-content p {
  margin-bottom: 1.2rem;
}

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

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

  .disclaimer-container {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

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

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

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

@media (max-width: 480px) {
  .disclaimer-container {
    padding: 1.5rem 1rem;
  }

  .disclaimer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

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

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

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    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.25rem;
    color: var(--secondary-color);
  }

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

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 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-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

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

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

  .contact-box strong {
    color: var(--secondary-color);
  }

  .policy-section {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

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

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

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

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

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

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

  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--accent-color);
  }

  .policy-content ul,
  .policy-content ol {
    margin-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%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

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

  .info-box p {
    margin-bottom: 0.5rem;
  }

  .info-box a {
    color: white;
    border-bottom: 2px solid white;
  }

  .info-box a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
  }

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

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