:root {
            --primary-color: hsl(329, 40%, 36%);
            --secondary-color: hsl(329, 40%, 21%);
            --accent-color: hsl(329, 40%, 61%);
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
        }
        
        .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: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            color: #333;
            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 hsla(329, 40%, 36%, 0.25);
        }

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

  #about {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    font-family: 'Libre Baskerville', serif;
    color: #2c2c2c;
  }

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

  #about .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(329, 40%, 36%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

  #about .content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
  }

  #about .text-content {
    flex: 1;
  }

  #about .text-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: hsl(329, 40%, 21%);
    margin-bottom: 25px;
  }

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

  #about .image-wrapper {
    flex: 1;
    position: relative;
  }

  #about .image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
  }

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

  #about .values-section {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 50px;
  }

  #about .values-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(329, 40%, 36%);
    text-align: center;
    margin-bottom: 40px;
  }

  #about .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
  }

  #about .value-item {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  #about .value-item:hover {
    border-color: hsl(329, 40%, 61%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  #about .value-icon {
    font-size: 2.5rem;
    color: hsl(329, 40%, 61%);
    margin-bottom: 15px;
  }

  #about .value-item h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(329, 40%, 21%);
    margin-bottom: 12px;
  }

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

  @media (max-width: 992px) {
    #about .content-wrapper {
      flex-direction: column;
      gap: 40px;
    }

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

    #about .values-section {
      padding: 35px 25px;
    }
  }

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

  #portfolio .section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: hsl(329, 40%, 21%);
    text-align: center;
    margin-bottom: 1rem;
  }

  #portfolio .section-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

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

  #portfolio .filter-btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    padding: 10px 28px;
    border: 2px solid hsl(329, 40%, 36%);
    background: #ffffff;
    color: hsl(329, 40%, 36%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(329, 40%, 36%);
    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(320px, 1fr));
    gap: 30px;
    margin-top: 2rem;
  }

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

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

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

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

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

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

  #portfolio .portfolio-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(329, 40%, 21%);
    margin-bottom: 12px;
  }

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

  #portfolio .view-details {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: hsl(329, 40%, 36%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  #portfolio .view-details:hover {
    color: hsl(329, 40%, 21%);
    gap: 12px;
  }

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

  #portfolio .modal-header {
    background: linear-gradient(135deg, hsl(329, 40%, 36%) 0%, hsl(329, 40%, 21%) 100%);
    color: #ffffff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
  }

  #portfolio .modal-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
  }

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

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

  #portfolio .modal-category {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    color: hsl(329, 40%, 61%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  #portfolio .modal-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
  }

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

  #portfolio .modal-details h5 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(329, 40%, 21%);
    margin-bottom: 15px;
  }

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

  #portfolio .modal-details li {
    font-family: 'Libre Baskerville', serif;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
  }

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

  #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: 8px 20px;
      font-size: 0.9rem;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;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: 'Libre Baskerville', serif;
}

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

#advantages .section-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: hsl(329, 40%, 36%);
  margin-bottom: 15px;
}

#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: 15px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

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

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

#advantages .advantage-card:hover {
  transform: translateY(-10px);
  border-color: hsl(329, 40%, 61%);
  box-shadow: 0 15px 40px rgba(165, 55, 95, 0.2);
}

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

#advantages .advantage-card:hover .icon-wrapper {
  transform: rotate(360deg) scale(1.1);
}

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

#advantages .advantage-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: hsl(329, 40%, 21%);
  margin-bottom: 15px;
  text-align: center;
}

#advantages .advantage-description {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  text-align: center;
}

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

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

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

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(329, 40%, 36%), hsl(329, 40%, 61%));
  }

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

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

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

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

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

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

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(329, 40%, 36%), hsl(329, 40%, 61%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  }

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

  .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(329, 40%, 36%), hsl(329, 40%, 61%));
    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: 2.2rem;
    color: #ffffff;
  }

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

  .stat-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .stat-context {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
  }

  @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: 2rem;
    }

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

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

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

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

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(329, 40%, 21%) 0%, hsl(329, 40%, 36%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Libre Baskerville', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

footer p, footer a, footer li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

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

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

.footer-contact-item i {
  margin-right: 12px;
  color: hsl(329, 40%, 61%);
  margin-top: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-policies {
  margin-top: 15px;
}

.footer-policies a {
  margin: 0 15px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-policies a:hover {
  color: hsl(329, 40%, 61%);
  padding-left: 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: 3px solid hsl(329, 40%, 36%);
}

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

.cookie-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(329, 40%, 21%);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.cookie-text {
  font-family: 'Libre Baskerville', serif;
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

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

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

.cookie-category-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(329, 40%, 21%);
  font-size: 1rem;
  margin-bottom: 5px;
}

.cookie-category-desc {
  font-family: 'Libre Baskerville', serif;
  color: #555555;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-required {
  display: inline-block;
  background: hsl(329, 40%, 36%);
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-left: 10px;
  font-family: 'Quicksand', sans-serif;
}

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

.btn-accept-all {
  background: #28a745;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept-all:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

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

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

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

.btn-manage:hover {
  background: hsl(329, 40%, 36%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(162, 57, 107, 0.3);
}

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

  footer h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .footer-bottom {
    margin-top: 30px;
  }

  .footer-policies a {
    display: block;
    margin: 10px 0;
  }

  #cookieNotice {
    padding: 20px 0;
  }

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

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

  .btn-accept-all,
  .btn-reject-optional,
  .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: Libre Baskerville, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(329, 40%, 36%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Quicksand, sans-serif; color: hsl(329, 40%, 21%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(329, 40%, 36%); }
.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(329, 40%, 21%); font-family: Quicksand, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(329, 40%, 21%); font-family: Quicksand, sans-serif; }
.blog-article a { color: hsl(329, 40%, 36%); }
.blog-article a:hover { color: hsl(329, 40%, 61%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(329, 40%, 36%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

#contact {
  font-family: 'Libre Baskerville', serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: hsl(329, 40%, 61%, 0.08);
  border-radius: 50%;
  z-index: 0;
}

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

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

#contact .section-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(329, 40%, 21%);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

#contact .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: hsl(329, 40%, 36%);
  border-radius: 2px;
}

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

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

#contact .contact-form-container {
  background: #ffffff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

#contact .contact-form-container h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(329, 40%, 21%);
  margin-bottom: 25px;
}

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

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

#contact .form-label .required {
  color: hsl(329, 40%, 36%);
  margin-left: 3px;
}

#contact .form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.3s ease;
  background: #fafafa;
}

#contact .form-control:focus {
  outline: none;
  border-color: hsl(329, 40%, 36%);
  background: #ffffff;
  box-shadow: 0 0 0 4px hsla(329, 40%, 36%, 0.1);
}

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

#contact .btn-submit {
  width: 100%;
  padding: 16px 30px;
  background: hsl(329, 40%, 36%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

#contact .btn-submit:hover {
  background: hsl(329, 40%, 21%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

#contact .info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  border-left: 5px solid hsl(329, 40%, 36%);
  transition: all 0.3s ease;
}

#contact .info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

#contact .info-card h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(329, 40%, 21%);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#contact .info-card h4 i {
  color: hsl(329, 40%, 36%);
  font-size: 1.4rem;
}

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

#contact .info-card a {
  color: hsl(329, 40%, 36%);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}

#contact .info-card a:hover {
  color: hsl(329, 40%, 21%);
  text-decoration: underline;
}

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

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

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

#contact .hours-list li strong {
  color: #333;
  font-weight: 600;
}

#contact .map-container {
  margin-top: 30px;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

#contact .map-container h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(329, 40%, 21%);
  margin-bottom: 15px;
}

#contact .map-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  border: 2px dashed #d0d0d0;
}

@media (max-width: 992px) {
  #contact .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  #contact .section-header h2 {
    font-size: 2.3rem;
  }
  
  #contact .contact-form-container {
    padding: 35px;
  }
}

@media (max-width: 576px) {
  #contact {
    padding: 60px 0;
  }
  
  #contact .section-header h2 {
    font-size: 2rem;
  }
  
  #contact .section-header p {
    font-size: 1rem;
  }
  
  #contact .contact-form-container {
    padding: 25px;
  }
  
  #contact .info-card {
    padding: 25px;
  }
  
  #contact .map-placeholder {
    height: 220px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  :root {
    --primary-color: hsl(329, 40%, 36%);
    --secondary-color: hsl(329, 40%, 21%);
    --accent-color: hsl(329, 40%, 61%);
  }

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

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

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

  .policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
  }

  .policy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    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: color 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }

  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.8rem;
  }

  .policy-intro {
    background: linear-gradient(135deg, rgba(169, 56, 102, 0.05) 0%, rgba(169, 56, 102, 0.1) 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    margin-bottom: 2rem;
  }

  .policy-section {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
  }

  .policy-section:hover {
    box-shadow: 0 4px 16px rgba(169, 56, 102, 0.15);
  }

  .contact-box {
    background: var(--secondary-color);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

  .contact-box h3 {
    color: #fff;
    margin-bottom: 1.5rem;
  }

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

  .contact-box a:hover {
    color: #fff;
  }

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

  .cookie-type-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--accent-color);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Quicksand', sans-serif;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }

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

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

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

.faq-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: hsl(329, 40%, 21%);
  margin-bottom: 20px;
}

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

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

.accordion-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.accordion-button {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: hsl(329, 40%, 21%);
  background: #ffffff;
  padding: 20px 25px;
  border: none;
  transition: all 0.3s ease;
}

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

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

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23823456'%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: #ffffff;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  border-top: 1px solid #f0f0f0;
}

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

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

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

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

.faq-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background: linear-gradient(135deg, hsl(329, 40%, 36%) 0%, hsl(329, 40%, 21%) 100%);
  border-radius: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.faq-cta p {
  color: #f8f9fa;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.faq-cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #ffffff;
  color: hsl(329, 40%, 36%);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.faq-cta-btn:hover {
  background: hsl(329, 40%, 61%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

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

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

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

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

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

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

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

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

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

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-heading {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

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

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

.newsletter-input {
  font-family: 'Libre Baskerville', serif;
  padding: 16px 24px;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
  outline: none;
}

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

.newsletter-input:focus {
  border-color: hsl(329, 40%, 61%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.newsletter-submit {
  font-family: 'Quicksand', sans-serif;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: hsl(329, 40%, 61%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-submit:hover {
  background: hsl(329, 40%, 51%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

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

  .newsletter-form {
    gap: 12px;
  }

  .newsletter-input,
  .newsletter-submit {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

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

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

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

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

  .newsletter-input,
  .newsletter-submit {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

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

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsla(329, 40%, 61%, 0.08);
    border-radius: 50%;
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-section h1 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: hsl(329, 40%, 21%);
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: hsl(329, 40%, 36%);
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .hero-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: left;
  }

  .hero-description p {
    margin-bottom: 1.2rem;
  }

  .advantages-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
    text-align: left;
  }

  .advantages-list li {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: #333;
    padding: 0.9rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

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

  .advantages-list li::after {
    content: '✓';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
  }

  .hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0 3rem;
  }

  .btn-hero-primary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 38px;
    background: hsl(329, 40%, 36%);
    color: #fff;
    border: 2px solid hsl(329, 40%, 36%);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-hero-primary:hover {
    background: hsl(329, 40%, 21%);
    border-color: hsl(329, 40%, 21%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .btn-hero-secondary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 38px;
    background: transparent;
    color: hsl(329, 40%, 36%);
    border: 2px solid hsl(329, 40%, 36%);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-hero-secondary:hover {
    background: hsl(329, 40%, 36%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .hero-image-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  }

  .hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }

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

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

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

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

    .advantages-list li {
      font-size: 1rem;
      padding-left: 2.2rem;
    }

    .hero-buttons {
      flex-direction: column;
      align-items: stretch;
    }

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

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

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

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

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

  #blog .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(329, 40%, 21%);
    text-align: center;
    margin-bottom: 1rem;
  }

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

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

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

  #blog .blog-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 3px solid hsl(329, 40%, 61%);
  }

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

  #blog .blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #777;
    flex-wrap: wrap;
  }

  #blog .blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  #blog .blog-meta i {
    color: hsl(329, 40%, 61%);
  }

  #blog .blog-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(329, 40%, 21%);
    margin-bottom: 15px;
    line-height: 1.4;
  }

  #blog .blog-title a {
    color: hsl(329, 40%, 21%);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #blog .blog-title a:hover {
    color: hsl(329, 40%, 36%);
  }

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

  #blog .read-more {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: hsl(329, 40%, 36%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
    font-size: 0.95rem;
  }

  #blog .read-more:hover {
    color: hsl(329, 40%, 21%);
    gap: 12px;
  }

  #blog .read-more i {
    font-size: 0.9rem;
  }

  #blog .view-all-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 14px 40px;
    background: hsl(329, 40%, 36%);
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
  }

  #blog .view-all-btn:hover {
    background: hsl(329, 40%, 21%);
    transform: translateY(-2px);
    color: #ffffff;
  }

  #blog .text-center {
    text-align: center;
  }

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

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

    #blog .section-subtitle {
      font-size: 1rem;
      margin-bottom: 40px;
    }

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

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

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

    #blog .blog-excerpt {
      font-size: 0.9rem;
    }
  }

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

.testimonials-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(329, 40%, 36%);
  margin-bottom: 1rem;
  text-align: center;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px 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(329, 40%, 61%);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px 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(329, 40%, 61%) 0%, hsl(329, 40%, 36%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-info {
  flex-grow: 1;
}

.testimonial-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: hsl(329, 40%, 21%);
  margin-bottom: 5px;
}

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

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

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

.star.empty {
  color: #ddd;
}

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

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(329, 40%, 36%) 0%, hsl(329, 40%, 21%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(329, 40%, 61%);
}

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

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

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

.testimonial-card.compact {
  padding: 20px;
  background: #f8f9fa;
  border-left: 3px solid hsl(329, 40%, 61%);
}

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

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

.testimonial-card.detailed {
  padding: 35px;
  background: #ffffff;
  border: 2px solid hsl(329, 40%, 61%);
  border-radius: 20px;
}

.testimonial-highlight {
  background: hsl(329, 40%, 95%);
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  font-size: 0.95rem;
  color: hsl(329, 40%, 21%);
  border-left: 3px solid hsl(329, 40%, 36%);
}

.quote-icon {
  font-size: 2.5rem;
  color: hsl(329, 40%, 61%);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
}

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

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

  .services-section .section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: hsl(329, 40%, 21%);
    text-align: center;
    margin-bottom: 1rem;
  }

  .services-section .section-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border: 2px solid transparent;
    height: 100%;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(175, 71, 113, 0.2);
    border-color: hsl(329, 40%, 61%);
  }

  .service-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(329, 40%, 36%) 0%, hsl(329, 40%, 21%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, hsl(329, 40%, 61%) 0%, hsl(329, 40%, 36%) 100%);
    transform: rotate(360deg);
  }

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

  .service-content {
    flex: 1;
  }

  .service-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: hsl(329, 40%, 21%);
    margin-bottom: 12px;
  }

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

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

  .service-price {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: hsl(329, 40%, 36%);
  }

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

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

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

    .service-card {
      flex-direction: column;
      text-align: center;
      padding: 30px 20px;
    }

    .service-icon-wrapper {
      margin: 0 auto 20px;
    }

    .service-footer {
      flex-direction: column;
      text-align: center;
    }

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

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

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

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(329, 40%, 61%);
  opacity: 0.1;
  border-radius: 50%;
}

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

.offer-badge {
  display: inline-block;
  background: hsl(329, 40%, 61%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

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

.offer-deadline-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin: 50px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.deadline-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 15px;
  font-weight: 600;
}

.deadline-date {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(329, 40%, 36%);
  margin: 0;
  line-height: 1;
}

.deadline-icon {
  font-size: 3rem;
  color: hsl(329, 40%, 61%);
  margin-bottom: 20px;
}

.offer-benefits {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px 40px;
  margin: 50px 0;
  backdrop-filter: blur(10px);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  font-family: 'Libre Baskerville', serif;
  color: #fff;
  font-size: 1.05rem;
}

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

.benefit-icon {
  font-size: 1.5rem;
  color: hsl(329, 40%, 61%);
  margin-right: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.benefit-text {
  line-height: 1.7;
}

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

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

.offer-btn:hover {
  background: hsl(329, 40%, 61%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.discount-highlight {
  display: inline-block;
  background: hsl(329, 40%, 61%);
  color: #fff;
  padding: 10px 25px;
  border-radius: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 20px 0;
}

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

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

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

  .deadline-date {
    font-size: 2.5rem;
  }

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

  .offer-benefits {
    padding: 30px 20px;
  }

  .benefit-item {
    font-size: 0.95rem;
  }

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

  .discount-highlight {
    font-size: 1.5rem;
    padding: 8px 20px;
  }
}

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

  #credentials .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(329, 40%, 36%);
    text-align: center;
    margin-bottom: 40px;
  }

  #credentials .trust-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);
  }

  #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-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

  @media (max-width: 991px) {
    #credentials .section-title {
      font-size: 1.75rem;
      margin-bottom: 30px;
    }
    
    #credentials .trust-card {
      margin-bottom: 20px;
    }
  }

  @media (max-width: 575px) {
    #credentials {
      padding: 40px 0;
    }
    
    #credentials .section-title {
      font-size: 1.5rem;
      margin-bottom: 25px;
    }
    
    #credentials .trust-icon {
      font-size: 2rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

  #disclaimer .disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid hsl(329, 40%, 36%);
  }

  #disclaimer .disclaimer-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(329, 40%, 61%) 0%, hsl(329, 40%, 36%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 4px 15px rgba(165, 55, 99, 0.25);
  }

  #disclaimer .disclaimer-icon i {
    font-size: 36px;
    color: #ffffff;
  }

  #disclaimer h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(329, 40%, 21%);
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
  }

  #disclaimer .disclaimer-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #333333;
    text-align: justify;
    margin-bottom: 0;
  }

  #disclaimer .disclaimer-text strong {
    color: hsl(329, 40%, 36%);
    font-weight: 700;
  }

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

    #disclaimer .disclaimer-container {
      padding: 40px 25px;
      border-radius: 12px;
    }

    #disclaimer .disclaimer-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 25px;
    }

    #disclaimer .disclaimer-icon i {
      font-size: 30px;
    }

    #disclaimer h2 {
      font-size: 2rem;
      margin-bottom: 25px;
    }

    #disclaimer .disclaimer-text {
      font-size: 0.95rem;
      line-height: 1.8;
      text-align: left;
    }
  }

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

    #disclaimer .disclaimer-container {
      padding: 30px 20px;
    }

    #disclaimer h2 {
      font-size: 1.75rem;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  :root {
    --primary-color: hsl(329, 40%, 36%);
    --secondary-color: hsl(329, 40%, 21%);
    --accent-color: hsl(329, 40%, 61%);
  }

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

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

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

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

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

  .policy-content h3 {
    font-size: 1.4rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }

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

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

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

  .policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.75rem;
  }

  .effective-date {
    background-color: hsl(329, 40%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
  }

  .contact-box {
    background-color: hsl(329, 40%, 96%);
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 2.5rem;
  }

  .contact-box h3 {
    margin-top: 0;
    color: var(--primary-color);
  }

  .highlight-box {
    background-color: hsl(329, 40%, 98%);
    border-left: 5px solid var(--accent-color);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0.25rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');
  
  :root {
    --primary-color: hsl(329, 40%, 36%);
    --secondary-color: hsl(329, 40%, 21%);
    --accent-color: hsl(329, 40%, 61%);
  }
  
  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: var(--secondary-color);
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--accent-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(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .effective-date {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: 'Quicksand', sans-serif;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
  }
  
  .section-card {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }