:root {
            --primary-color: hsl(86, 39%, 49%);
            --secondary-color: hsl(86, 39%, 34%);
            --accent-color: hsl(86, 39%, 74%);
        }
        
        body {
            font-family: 'Lora', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Lora', serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(122, 158, 89, 0.25);
        }

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

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

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

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

  #about .section-header .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(86, 39%, 49%), hsl(86, 39%, 74%));
    margin: 0 auto 25px;
  }

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

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

  #about .about-text {
    padding: 20px 0;
  }

  #about .about-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: hsl(86, 39%, 34%);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
  }

  #about .about-text h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: hsl(86, 39%, 49%);
  }

  #about .about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
  }

  #about .about-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
  }

  #about .about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }

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

  #about .values-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    margin-top: 60px;
    border-radius: 10px;
  }

  #about .values-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 45px;
    text-transform: uppercase;
  }

  #about .value-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid hsl(86, 39%, 49%);
  }

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

  #about .value-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(86, 39%, 34%);
    margin-bottom: 12px;
  }

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

  #about .stats-section {
    background: linear-gradient(135deg, hsl(86, 39%, 34%), hsl(86, 39%, 49%));
    padding: 50px 30px;
    border-radius: 10px;
    margin-top: 50px;
    text-align: center;
  }

  #about .stat-item {
    margin-bottom: 20px;
  }

  #about .stat-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
  }

  #about .stat-item p {
    font-size: 1.1rem;
    color: hsl(86, 39%, 95%);
    margin-bottom: 0;
  }

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

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

    #about .about-text h3 {
      font-size: 1.6rem;
    }

    #about .values-section h3 {
      font-size: 1.8rem;
    }

    #about .stat-item h4 {
      font-size: 2.4rem;
    }

    #about .about-text {
      margin-top: 30px;
    }
  }

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

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

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

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

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

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

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

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(86, 39%, 49%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 156, 89, 0.3);
  }

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

  .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: #fff;
    cursor: pointer;
  }

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

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

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, 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-item:hover .portfolio-overlay {
    opacity: 1;
  }

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

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

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

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

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

  .view-details:hover {
    color: hsl(86, 39%, 49%);
    gap: 12px;
  }

  .view-details::after {
    content: '→';
    font-size: 1.2rem;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(86, 39%, 49%), hsl(86, 39%, 34%));
    color: #fff;
    border: none;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 35px;
  }

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

  .modal-category {
    font-family: 'Oswald', sans-serif;
    color: hsl(86, 39%, 49%);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
  }

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

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

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

  .project-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .project-details li {
    font-family: 'Lora', serif;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
  }

  .project-details li:last-child {
    border-bottom: none;
  }

  .project-details strong {
    color: #222;
    font-weight: 600;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

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

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

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

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

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

    .portfolio-image {
      height: 220px;
    }
  }

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

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

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

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

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

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    border-color: hsl(86, 39%, 49%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

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

  #advantages .advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(86, 39%, 34%) 0%, hsl(86, 39%, 49%) 100%);
  }

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

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

  #advantages .advantage-description {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
  }

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

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

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

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

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

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

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

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(86, 39%, 49%) 0%, hsl(86, 39%, 34%) 100%);
  }

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

  .statistics-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    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;
  }

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

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: hsl(86, 39%, 49%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

footer h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: hsl(86, 39%, 74%);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

footer .company-description {
  max-width: 350px;
  margin-bottom: 25px;
}

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

footer a:hover {
  color: hsl(86, 39%, 74%);
  transform: translateX(5px);
}

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

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

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

footer .contact-item i {
  color: hsl(86, 39%, 74%);
  margin-right: 12px;
  margin-top: 4px;
  font-size: 1.1rem;
}

footer .footer-bottom {
  background: hsl(86, 39%, 24%);
  padding: 25px 0;
  margin-top: 50px;
  border-top: 2px solid hsl(86, 39%, 49%);
}

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

footer .policy-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

footer .policy-links a {
  font-size: 0.9rem;
  color: #d0d0d0;
}

footer .policy-links a:hover {
  color: hsl(86, 39%, 74%);
  transform: translateX(0);
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 4px solid hsl(86, 39%, 49%);
  animation: slideUp 0.5s ease-out;
}

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

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

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

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

#cookieNotice .cookie-category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}

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

#cookieNotice .cookie-category-icon {
  width: 40px;
  height: 40px;
  background: hsl(86, 39%, 49%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

#cookieNotice .cookie-category.optional .cookie-category-icon {
  background: #6c757d;
}

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

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

#cookieNotice .cookie-category-badge {
  display: inline-block;
  background: hsl(86, 39%, 49%);
  color: #fff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 8px;
  text-transform: uppercase;
}

#cookieNotice .cookie-category.optional .cookie-category-badge {
  background: #6c757d;
}

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

#cookieNotice .btn-accept-all {
  background: hsl(86, 39%, 49%);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

#cookieNotice .btn-accept-all:hover {
  background: hsl(86, 39%, 44%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

#cookieNotice .btn-manage {
  background: transparent;
  color: #333;
  border: 2px solid #dee2e6;
  padding: 10px 28px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

#cookieNotice .btn-manage:hover {
  background: #f8f9fa;
  border-color: hsl(86, 39%, 49%);
  color: hsl(86, 39%, 49%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 0;
  }
  
  footer h5 {
    font-size: 1.2rem;
    margin-top: 30px;
  }
  
  footer .company-description {
    max-width: 100%;
  }
  
  footer .footer-bottom {
    text-align: center;
  }
  
  footer .policy-links {
    justify-content: center;
    margin-top: 15px;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  #cookieNotice h4 {
    font-size: 1.3rem;
  }
  
  #cookieNotice .cookie-buttons {
    flex-direction: column;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    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: Lora, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(86, 39%, 49%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Oswald, sans-serif; color: hsl(86, 39%, 34%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(86, 39%, 49%); }
.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(86, 39%, 34%); font-family: Oswald, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(86, 39%, 34%); font-family: Oswald, sans-serif; }
.blog-article a { color: hsl(86, 39%, 49%); }
.blog-article a:hover { color: hsl(86, 39%, 74%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(86, 39%, 49%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

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

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

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

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

  #contact .contact-form-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 45px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-top: 4px solid hsl(86, 39%, 49%);
  }

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

  #contact .form-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  #contact .form-control:focus {
    border-color: hsl(86, 39%, 49%);
    background: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(123, 157, 89, 0.15);
    outline: none;
  }

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

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

  #contact .btn-submit:hover {
    background: hsl(86, 39%, 34%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 157, 89, 0.3);
  }

  #contact .contact-info-wrapper {
    background: hsl(86, 39%, 34%);
    border-radius: 12px;
    padding: 45px;
    color: #ffffff;
    height: 100%;
  }

  #contact .contact-info-wrapper h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 600;
  }

  #contact .contact-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

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

  #contact .contact-item-icon {
    width: 50px;
    height: 50px;
    background: hsl(86, 39%, 49%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
  }

  #contact .contact-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: hsl(86, 39%, 74%);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

  #contact .contact-item a:hover {
    color: hsl(86, 39%, 74%);
  }

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

  #contact .working-hours-list li {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
  }

  #contact .working-hours-list li span:first-child {
    color: hsl(86, 39%, 74%);
    font-weight: 500;
  }

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

    #contact .section-header h2 {
      font-size: 2.2rem;
    }

    #contact .contact-form-wrapper,
    #contact .contact-info-wrapper {
      padding: 35px;
      margin-bottom: 30px;
    }

    #contact .contact-info-wrapper {
      margin-bottom: 0;
    }
  }

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

    #contact .section-header h2 {
      font-size: 1.8rem;
    }

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

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

    #contact .btn-submit {
      padding: 12px 35px;
      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(86, 39%, 49%);
    --secondary-color: hsl(86, 39%, 34%);
    --accent-color: hsl(86, 39%, 74%);
  }

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

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

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

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

  .policy-content h3 {
    font-size: 1.5rem;
    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;
  }

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

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

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

  .last-updated {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
  }

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

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

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

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

.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: #222;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

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

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

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

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

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

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

.accordion-body {
  padding: 25px;
  background-color: #ffffff;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  border-top: 2px solid hsl(86, 39%, 74%);
}

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

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

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

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

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

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

  .faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

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

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

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

  .accordion-item {
    margin-bottom: 15px;
  }
}

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

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

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

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(86, 39%, 49%) 0%, hsl(86, 39%, 34%) 100%);
    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: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.newsletter-input-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .newsletter-description {
        font-size: 0.95rem;
    }

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

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

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

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

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

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

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

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

  .hero-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: hsl(86, 39%, 34%);
    margin-bottom: 25px;
    line-height: 1.3;
  }

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

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

  .hero-advantages li {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #333;
    padding: 12px 0 12px 45px;
    position: relative;
    line-height: 1.6;
    border-left: 3px solid hsl(86, 39%, 74%);
    margin-bottom: 15px;
    background: #fff;
    padding-left: 20px;
    padding-right: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .hero-advantages li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: hsl(86, 39%, 49%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-advantages li i {
    position: absolute;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px;
    z-index: 1;
  }

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

  .hero-image-wrapper {
    position: relative;
    transform: translateX(30px) translateY(-20px);
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 8px solid #fff;
  }

  .hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: hsl(86, 39%, 49%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.2;
  }

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

  .hero-btn-primary {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 40px;
    background: hsl(86, 39%, 49%);
    color: #fff;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

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

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

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

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

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

    .hero-image-accent {
      display: none;
    }

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

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

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

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

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

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

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

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

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

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

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

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

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

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

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

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(86, 39%, 34%) 0%, hsl(86, 39%, 49%) 100%);
  }

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

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

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

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

  .service-terms {
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
  }

  .service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: hsl(86, 39%, 49%);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

    .service-card {
      margin-bottom: 1.5rem;
    }
  }

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

    .service-price {
      font-size: 1.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;
  font-size: 2.8rem;
  color: #222;
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.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(86, 39%, 49%), hsl(86, 39%, 74%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: #222;
  margin: 0 0 5px 0;
}

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

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

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

.star.empty {
  color: #ddd;
}

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

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(86, 39%, 49%) 0%, hsl(86, 39%, 34%) 100%);
  border-left: none;
  color: #ffffff;
}

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

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

.testimonial-card.featured .testimonial-date {
  color: rgba(255,255,255,0.7);
}

.testimonial-card.featured .testimonial-avatar {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
}

.testimonial-card.compact {
  padding: 20px;
  border-radius: 8px;
}

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

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

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

.testimonials-stats {
  background: hsl(86, 39%, 34%);
  color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 50px;
}

.testimonials-stats h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

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

.stat-item {
  padding: 15px;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: hsl(86, 39%, 74%);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

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

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

  #credentials {
    padding: 50px 0;
    background-color: #ffffff;
  }

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

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

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

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

  #credentials .trust-text {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }

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

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

    #credentials .trust-card {
      padding: 20px 15px;
      margin-bottom: 15px;
    }

    #credentials .trust-icon {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    #credentials .trust-text {
      font-size: 0.9rem;
    }
  }

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

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

  .blog-preview-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(86, 39%, 74%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
  }

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

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

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

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

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

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

  .blog-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
  }

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

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

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

  .blog-meta-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
    backdrop-filter: blur(5px);
  }

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

  .blog-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  .blog-card-title a:hover {
    color: hsl(86, 39%, 49%);
  }

  .blog-card-excerpt {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

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

  .blog-date {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
  }

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

  .blog-read-more:hover {
    color: hsl(86, 39%, 34%);
    gap: 10px;
  }

  .blog-read-more::after {
    content: '→';
    font-size: 1.1rem;
  }

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

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

  .view-all-btn .btn:hover {
    background: hsl(86, 39%, 34%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  }

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

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

    .blog-preview-section .section-header {
      margin-bottom: 40px;
    }

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

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

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

    .view-all-btn {
      margin-top: 30px;
    }

    .view-all-btn .btn {
      padding: 14px 40px;
      font-size: 1rem;
    }
  }

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

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

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

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

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

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

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

  .promo-deadline-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }

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

  .promo-deadline-date {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: hsl(86, 39%, 34%);
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .promo-calendar-icon {
    width: 50px;
    height: 50px;
    background: hsl(86, 39%, 49%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
  }

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

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

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

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

  .promo-cta-button {
    display: inline-block;
    background: #fff;
    color: hsl(86, 39%, 34%);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .promo-cta-button:hover {
    background: hsl(86, 39%, 74%);
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }

  .promo-discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: hsl(86, 39%, 34%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 3;
  }

  .promo-discount-percent {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
  }

  .promo-discount-text {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

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

    .promo-deadline-date {
      font-size: 32px;
      flex-direction: column;
      text-align: center;
    }

    .promo-discount-badge {
      width: 100px;
      height: 100px;
      top: 10px;
      right: 10px;
    }

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

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

    .promo-deadline-box {
      padding: 24px;
    }

    .promo-cta-button {
      width: 100%;
      text-align: center;
    }
  }

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

.disclaimer-section .container {
  max-width: 900px;
}

.disclaimer-icon {
  font-size: 3.5rem;
  color: hsl(86, 39%, 49%);
  margin-bottom: 1.5rem;
  display: inline-block;
}

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

.disclaimer-content {
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid hsl(86, 39%, 49%);
}

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

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

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

  .disclaimer-content {
    padding: 2rem 1.5rem;
  }

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

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

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

  :root {
    --primary-color: hsl(86, 39%, 49%);
    --secondary-color: hsl(86, 39%, 34%);
    --accent-color: hsl(86, 39%, 74%);
  }

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

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

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

  .policy-content h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 3rem;
    position: relative;
    padding-left: 1.5rem;
  }

  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background-color: var(--primary-color);
    border-radius: 3px;
  }

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

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

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

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

  .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: rgba(86, 139, 49, 0.08);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

  .contact-info {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(86, 139, 49, 0.1) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .contact-info h3 {
    margin-top: 0;
    color: var(--secondary-color);
  }

  .last-updated {
    font-style: italic;
    color: #6c757d;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    text-align: center;
  }

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

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

  :root {
    --primary-color: hsl(86, 39%, 49%);
    --secondary-color: hsl(86, 39%, 34%);
    --accent-color: hsl(86, 39%, 74%);
  }

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

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

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

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

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

  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
    font-size: 1.05rem;
  }

  .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 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(--primary-color);
  }

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

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

  .contact-box p {
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
  }

  .highlight-box {
    background-color: rgba(86, 139, 49, 0.08);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }

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

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