:root {
            --primary-color: hsl(100, 34%, 34%);
            --secondary-color: hsl(100, 34%, 19%);
            --accent-color: hsl(100, 34%, 59%);
        }
        
        body {
            font-family: 'Lora', serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Lora', serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(100, 34%%, 34%%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

  .about-section h2 {
    font-family: 'Oswald', sans-serif;
    color: hsl(100, 34%, 19%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .about-section h3 {
    font-family: 'Oswald', sans-serif;
    color: hsl(100, 34%, 34%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

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

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

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

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

  .about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 30px;
  }

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

  .value-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-left: 5px solid hsl(100, 34%, 59%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .value-card h4 {
    font-family: 'Oswald', sans-serif;
    color: hsl(100, 34%, 19%);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
  }

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

  .stats-row {
    background: hsl(100, 34%, 59%);
    padding: 50px 0;
    margin: 60px 0;
    border-radius: 8px;
  }

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

  .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(100, 34%, 19%);
    display: block;
    margin-bottom: 10px;
  }

  .stat-label {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #222222;
    font-weight: 600;
  }

  .mission-vision-box {
    background: linear-gradient(to right, hsl(100, 34%, 34%), hsl(100, 34%, 19%));
    padding: 50px;
    border-radius: 8px;
    margin: 50px 0;
    color: #ffffff;
  }

  .mission-vision-box h3 {
    color: #ffffff;
    margin-top: 0;
  }

  .mission-vision-box p {
    color: #f8f9fa;
    font-size: 1.15rem;
  }

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

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

    .about-section h3 {
      font-size: 1.5rem;
    }

    .about-intro {
      padding: 40px 0;
      margin-bottom: 40px;
    }

    .about-intro .lead {
      font-size: 1.1rem;
    }

    .about-image {
      height: 300px;
    }

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

    .mission-vision-box {
      padding: 30px 20px;
    }

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

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

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

  #portfolio .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(100, 34%, 19%);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

  #portfolio .filter-btn {
    font-family: 'Oswald', sans-serif;
    padding: 12px 30px;
    border: 2px solid hsl(100, 34%, 34%);
    background: transparent;
    color: hsl(100, 34%, 34%);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(100, 34%, 34%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }

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

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

  #portfolio .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  }

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

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

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

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

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

  #portfolio .portfolio-category {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: hsl(100, 34%, 59%);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  #portfolio .portfolio-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(100, 34%, 19%);
    margin-bottom: 12px;
    line-height: 1.3;
  }

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

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

  #portfolio .portfolio-link:hover {
    color: hsl(100, 34%, 59%);
    gap: 12px;
  }

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

  #portfolio .modal-header {
    background: linear-gradient(135deg, hsl(100, 34%, 34%) 0%, hsl(100, 34%, 19%) 100%);
    color: #ffffff;
    border: none;
    padding: 25px 30px;
  }

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

  #portfolio .modal-body {
    padding: 35px;
  }

  #portfolio .modal-body img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  #portfolio .modal-category {
    font-family: 'Oswald', sans-serif;
    display: inline-block;
    background: hsl(100, 34%, 59%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }

  #portfolio .modal-description {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  #portfolio .modal-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
  }

  #portfolio .modal-details h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: hsl(100, 34%, 19%);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
  }

  #portfolio .modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #portfolio .modal-details li {
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
  }

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

  #portfolio .modal-details li strong {
    color: hsl(100, 34%, 34%);
    font-weight: 600;
    margin-right: 10px;
  }

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

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

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

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

    #portfolio .filter-buttons {
      gap: 10px;
    }

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

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

  @media (max-width: 576px) {
    #portfolio .section-title {
      font-size: 1.8rem;
    }

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

    #portfolio .modal-title {
      font-size: 1.5rem;
    }
  }

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

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

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

  .advantages-section .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(100, 34%, 19%);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

  .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: hsl(100, 34%, 59%);
    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(100, 34%, 59%);
  }

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

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

  .advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(100, 34%, 44%), hsl(100, 34%, 59%));
  }

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

  .advantage-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(100, 34%, 19%);
    margin-bottom: 18px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

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

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

  @media (max-width: 767px) {
    .advantages-section .section-title {
      font-size: 1.9rem;
    }

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lora: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(100, 34%, 34%), hsl(100, 34%, 59%), hsl(100, 34%, 34%));
  }

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

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

  .statistics-header p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    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;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

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

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: hsl(100, 34%, 59%);
  }

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

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

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

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

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

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

  .stat-context {
    font-family: 'Lora', 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.animate .stat-number {
    animation: countUp 0.8s ease-out;
  }

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

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

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

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

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

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

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

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

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

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

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

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

footer p, footer li, footer a {
  color: #e9ecef;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

footer a:hover {
  color: hsl(100, 34%, 59%);
}

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

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

footer ul li a {
  display: inline-block;
}

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

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

.contact-info-item i {
  color: hsl(100, 34%, 59%);
  margin-right: 10px;
  margin-top: 3px;
}

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

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

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

.cookie-title {
  font-family: 'Oswald', sans-serif;
  color: hsl(100, 34%, 19%);
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

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

.cookie-category {
  margin-bottom: 12px;
  color: #333;
  font-size: 0.9rem;
}

.cookie-category strong {
  color: hsl(100, 34%, 19%);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.cookie-category-required {
  color: hsl(100, 34%, 34%);
  font-weight: 600;
  font-size: 0.85rem;
}

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

.btn-accept-all {
  background: hsl(100, 34%, 34%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept-all:hover {
  background: hsl(100, 34%, 19%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-manage {
  background: transparent;
  color: hsl(100, 34%, 34%);
  border: 2px solid hsl(100, 34%, 34%);
  padding: 10px 28px;
  border-radius: 5px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-manage:hover {
  background: hsl(100, 34%, 34%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    font-size: 1.1rem;
    margin-top: 25px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .btn-accept-all, .btn-reject, .btn-manage {
    width: 100%;
    text-align: center;
  }
  
  .cookie-title {
    font-size: 1.3rem;
  }
}

.blog-page { padding: 4rem 0; }
.blog-page h1 { margin-bottom: 3rem; text-align: center; }
.blog-card { margin-bottom: 2rem; transition: transform 0.3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card .card-img-top { height: 200px; object-fit: cover; }
.blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Lora, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(100, 34%, 34%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Oswald, sans-serif; color: hsl(100, 34%, 19%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(100, 34%, 34%); }
.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(100, 34%, 19%); font-family: Oswald, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(100, 34%, 19%); font-family: Oswald, sans-serif; }
.blog-article a { color: hsl(100, 34%, 34%); }
.blog-article a:hover { color: hsl(100, 34%, 59%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(100, 34%, 34%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

.contact-section {
  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(100, 34%, 59%);
  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: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: hsl(100, 34%, 19%);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.contact-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

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

.contact-form-wrapper h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: hsl(100, 34%, 34%);
  margin-bottom: 30px;
  font-weight: 500;
}

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

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

.contact-form .required {
  color: hsl(100, 34%, 34%);
  margin-left: 3px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Lora', 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(100, 34%, 59%);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(130, 155, 105, 0.1);
}

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

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

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

.contact-info-wrapper {
  flex: 0 0 380px;
}

.contact-info-box {
  background: hsl(100, 34%, 34%);
  color: #ffffff;
  padding: 40px 35px;
  border-radius: 12px;
  margin-bottom: 25px;
}

.contact-info-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

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

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

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

.contact-info-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: hsl(100, 34%, 59%);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.contact-info-content p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
}

.contact-info-content a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact-info-content a:hover {
  color: hsl(100, 34%, 59%);
}

.deadline-alert {
  background: linear-gradient(135deg, hsl(100, 34%, 59%) 0%, hsl(100, 34%, 34%) 100%);
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.deadline-alert h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deadline-alert p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .contact-content {
    flex-direction: column;
  }
  
  .contact-info-wrapper {
    flex: 1;
    width: 100%;
  }
  
  .contact-form-wrapper {
    padding: 35px 25px;
  }
  
  .contact-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-header {
    margin-bottom: 40px;
  }
  
  .contact-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-header p {
    font-size: 1rem;
  }
  
  .contact-form-wrapper {
    padding: 25px 20px;
  }
  
  .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }
  
  .contact-info-box {
    padding: 30px 25px;
  }
  
  .contact-form .btn-submit {
    padding: 14px 40px;
    font-size: 1rem;
  }
}

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

  :root {
    --primary-color: hsl(100, 34%, 34%);
    --secondary-color: hsl(100, 34%, 19%);
    --accent-color: hsl(100, 34%, 59%);
  }

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

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

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

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

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

  .policy-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
  }

  .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(--accent-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.8rem;
  }

  .intro-box {
    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);
  }

  .intro-box p {
    margin-bottom: 0;
    color: white;
    text-align: left;
  }

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

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

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

  .cookie-table table {
    border: 2px solid var(--accent-color);
  }

  .cookie-table thead {
    background-color: var(--primary-color);
    color: white;
  }

  .cookie-table tbody tr:hover {
    background-color: rgba(100, 134, 59, 0.1);
  }

  .last-updated {
    font-style: italic;
    color: #666;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--accent-color);
  }

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

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

.faq-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(100, 34%, 19%);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

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

.accordion-button {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: hsl(100, 34%, 19%);
  background-color: #ffffff;
  padding: 25px 30px;
  border: none;
  transition: all 0.3s ease;
}

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

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

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

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

.accordion-body {
  padding: 30px;
  background-color: #ffffff;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
  border-top: 2px solid hsl(100, 34%, 59%);
}

.accordion-body strong {
  color: hsl(100, 34%, 34%);
  font-weight: 600;
}

.accordion-body ul {
  margin: 15px 0;
  padding-left: 25px;
}

.accordion-body li {
  margin-bottom: 10px;
  color: #444;
}

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

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

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

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

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

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

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(100, 34%, 59%);
  opacity: 0.08;
  border-radius: 50%;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(100, 34%, 59%);
  opacity: 0.06;
  border-radius: 50%;
}

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

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

.newsletter-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.newsletter-description {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: #f8f9fa;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

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

.newsletter-input:focus {
  outline: none;
  border-color: hsl(100, 34%, 59%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(139, 170, 108, 0.2);
}

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

.newsletter-submit {
  font-family: 'Oswald', sans-serif;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: hsl(100, 34%, 59%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-submit:hover {
  background: hsl(100, 34%, 54%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.newsletter-privacy {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: #e9ecef;
  margin-top: 20px;
  line-height: 1.5;
}

.newsletter-privacy a {
  color: hsl(100, 34%, 59%);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.newsletter-privacy a:hover {
  color: hsl(100, 34%, 69%);
}

@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
    align-items: stretch;
  }
  
  .newsletter-input {
    flex: 1;
  }
  
  .newsletter-submit {
    flex-shrink: 0;
    padding: 18px 35px;
  }
}

@media (max-width: 767px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-heading {
    font-size: 2rem;
  }
  
  .newsletter-description {
    font-size: 1rem;
  }
  
  .newsletter-submit {
    padding: 16px 30px;
  }
}

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

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

.hero-badge {
  display: inline-block;
  background-color: hsl(100, 34%, 34%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

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

.hero-section h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(100, 34%, 19%);
  line-height: 1.2;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: hsl(100, 34%, 34%);
  margin-bottom: 30px;
  font-weight: 500;
}

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

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

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

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

.hero-advantages li i {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.9rem;
}

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

.btn-hero-primary {
  font-family: 'Oswald', sans-serif;
  background-color: hsl(100, 34%, 34%);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-primary:hover {
  background-color: hsl(100, 34%, 19%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
  font-family: 'Oswald', sans-serif;
  background-color: transparent;
  color: hsl(100, 34%, 34%);
  padding: 16px 40px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid hsl(100, 34%, 34%);
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-secondary:hover {
  background-color: hsl(100, 34%, 34%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

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

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

.hero-overlay-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: hsl(100, 34%, 59%);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  z-index: 3;
}

.hero-overlay-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

.hero-overlay-box p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #fff;
  margin: 5px 0 0 0;
}

@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.5rem;
  }
  
  .hero-image-wrapper {
    margin-top: 50px;
  }
  
  .hero-overlay-box {
    position: static;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 50px 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

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

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

.services-section .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: hsl(100, 34%, 19%);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.services-section .deadline-badge {
  display: inline-block;
  background: hsl(100, 34%, 34%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  border-color: hsl(100, 34%, 59%);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(100, 34%, 34%), hsl(100, 34%, 59%));
  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: 2rem;
  color: #ffffff;
}

.service-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: hsl(100, 34%, 19%);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-description {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 20px;
  min-height: 100px;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.service-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: hsl(100, 34%, 34%);
  font-weight: 700;
}

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

.service-duration {
  background: hsl(100, 34%, 59%);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, hsl(100, 34%, 34%), hsl(100, 34%, 19%));
  border-radius: 15px;
  color: #fff;
}

.cta-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: #ffffff;
  color: hsl(100, 34%, 19%);
  padding: 15px 45px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  color: hsl(100, 34%, 34%);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .services-section .section-title {
    font-size: 2.2rem;
  }
  
  .service-description {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 50px 0;
  }
  
  .services-section .section-title {
    font-size: 1.8rem;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

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

  .credentials-section .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: hsl(100, 34%, 19%);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .credential-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    border-color: hsl(100, 34%, 59%);
  }

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

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

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

    .credentials-section .section-title {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .credential-card {
      padding: 20px 10px;
      margin-bottom: 15px;
    }

    .credential-icon {
      font-size: 2.5rem;
    }

    .credential-title {
      font-size: 1rem;
    }
  }

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

    .credential-icon {
      font-size: 2.2rem;
      margin-bottom: 10px;
    }
  }

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

.blog-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: hsl(100, 34%, 19%);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 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.15);
}

.blog-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 4px solid hsl(100, 34%, 34%);
}

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

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #777;
}

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

.blog-meta-item i {
  color: hsl(100, 34%, 34%);
  font-size: 1rem;
}

.blog-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: hsl(100, 34%, 19%);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card-title a {
  color: hsl(100, 34%, 19%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: hsl(100, 34%, 34%);
}

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

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

.blog-read-more:hover {
  gap: 1rem;
  color: hsl(100, 34%, 19%);
}

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

.btn-view-all {
  display: inline-block;
  padding: 1rem 3rem;
  background: hsl(100, 34%, 34%);
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

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

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

.testimonials-section h2 {
  font-family: 'Oswald', sans-serif;
  color: hsl(100, 34%, 19%);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials-section .subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.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%;
  border-left: 4px solid hsl(100, 34%, 59%);
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(100, 34%, 34%) 0%, hsl(100, 34%, 19%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(100, 34%, 59%);
}

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

.testimonial-card.featured .customer-name {
  color: hsl(100, 34%, 59%);
}

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

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

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

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

.customer-details h4 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  color: hsl(100, 34%, 19%);
  font-size: 1.2rem;
}

.customer-name {
  font-weight: 600;
}

.customer-location {
  color: #666;
  font-size: 0.9rem;
  margin-top: 2px;
}

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

.rating i {
  color: #ffc107;
  font-size: 1.1rem;
}

.rating i.empty {
  color: #ddd;
}

.testimonial-text {
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 15px;
}

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

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

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

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

.testimonial-highlight {
  background: hsl(100, 34%, 95%);
  border-left: 3px solid hsl(100, 34%, 34%);
  padding: 15px 20px;
  margin: 15px 0;
  font-style: italic;
  color: hsl(100, 34%, 19%);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .customer-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

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

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

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(100, 34%, 59%);
  opacity: 0.08;
  border-radius: 50%;
}

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

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

.offer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

.deadline-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

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

.deadline-date {
  display: flex;
  align-items: center;
  gap: 20px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, hsl(100, 34%, 34%), hsl(100, 34%, 59%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calendar-icon svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

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

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

.benefits-list li {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: #f8f9fa;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

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

.benefit-icon {
  width: 28px;
  height: 28px;
  background: hsl(100, 34%, 59%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-icon svg {
  width: 16px;
  height: 16px;
  fill: hsl(100, 34%, 19%);
}

.discount-badge {
  display: inline-block;
  background: hsl(100, 34%, 59%);
  color: hsl(100, 34%, 19%);
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.offer-cta-btn {
  display: inline-block;
  background: hsl(100, 34%, 59%);
  color: hsl(100, 34%, 19%);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 48px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.offer-cta-btn:hover {
  background: hsl(100, 34%, 65%);
  color: hsl(100, 34%, 19%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

  .offer-cta-btn {
    padding: 16px 36px;
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
}

.disclaimer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(100, 34%, 34%) 0%, hsl(100, 34%, 59%) 100%);
  }
  
  .disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
  }
  
  .disclaimer-icon-wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .disclaimer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(100, 34%, 59%) 0%, hsl(100, 34%, 44%) 100%);
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(95, 130, 66, 0.25);
  }
  
  .disclaimer-icon i {
    font-size: 42px;
    color: #ffffff;
  }
  
  .disclaimer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
  }
  
  .disclaimer-content {
    font-family: 'Lora', serif;
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    text-align: justify;
    padding: 0 20px;
  }
  
  .disclaimer-content p {
    margin-bottom: 0;
  }
  
  .disclaimer-highlight {
    background: #f8f9fa;
    border-left: 4px solid hsl(100, 34%, 34%);
    padding: 25px 30px;
    margin-top: 30px;
    border-radius: 8px;
  }
  
  .disclaimer-highlight p {
    font-size: 16px;
    color: #555;
    margin: 0;
    font-style: italic;
  }
  
  @media (max-width: 768px) {
    .disclaimer-section {
      padding: 60px 0;
    }
    
    .disclaimer-container {
      padding: 35px 25px;
      border-radius: 12px;
    }
    
    .disclaimer-icon-wrapper {
      margin-bottom: 25px;
    }
    
    .disclaimer-icon {
      width: 65px;
      height: 65px;
    }
    
    .disclaimer-icon i {
      font-size: 34px;
    }
    
    .disclaimer-title {
      font-size: 32px;
      margin-bottom: 25px;
    }
    
    .disclaimer-content {
      font-size: 16px;
      line-height: 1.8;
      padding: 0 10px;
      text-align: left;
    }
    
    .disclaimer-highlight {
      padding: 20px;
      margin-top: 25px;
    }
    
    .disclaimer-highlight p {
      font-size: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .disclaimer-container {
      padding: 30px 20px;
    }
    
    .disclaimer-title {
      font-size: 28px;
    }
    
    .disclaimer-content {
      font-size: 15px;
    }
  }

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

  :root {
    --primary-color: hsl(100, 34%, 34%);
    --secondary-color: hsl(100, 34%, 19%);
    --accent-color: hsl(100, 34%, 59%);
  }

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

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

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

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

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

  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }

  .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(--accent-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;
    line-height: 1.8;
  }

  .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: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }

  .contact-box strong {
    color: var(--secondary-color);
    font-family: 'Oswald', sans-serif;
  }

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

  .section-card {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-top: 3px solid var(--accent-color);
  }

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

  :root {
    --primary-color: hsl(100, 34%, 34%);
    --secondary-color: hsl(100, 34%, 19%);
    --accent-color: hsl(100, 34%, 59%);
  }

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

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

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

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

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

  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }

  .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(--accent-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;
    line-height: 1.8;
  }

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

  .highlight-box {
    background-color: hsl(100, 34%, 95%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

  .contact-info {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
  }

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

  .contact-info a {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }

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

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

  .section-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-right: 0.5rem;
  }