:root {
            --primary-color: hsl(322, 58%, 32%);
            --secondary-color: hsl(322, 58%, 17%);
            --accent-color: hsl(322, 58%, 57%);
        }
        
        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;
            color: #222;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .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(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(162, 38, 93, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(162, 38, 93, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h1, .about-section h2, .about-section h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(322, 58%, 32%);
}

.about-hero {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/about.jpg') center/cover;
  padding: 120px 0;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 1.3rem;
  color: #f8f9fa;
  max-width: 700px;
  margin: 0 auto;
}

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

.content-block h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.content-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: hsl(322, 58%, 57%);
  border-radius: 2px;
}

.content-block h3 {
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 20px;
  color: hsl(322, 58%, 32%);
}

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

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  margin: 40px 0;
}

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

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

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

.value-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 5px solid hsl(322, 58%, 57%);
}

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

.value-card h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  color: hsl(322, 58%, 32%);
  margin-bottom: 15px;
}

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

.stats-row {
  background: hsl(322, 58%, 32%);
  color: #ffffff;
  padding: 50px 0;
  margin: 60px 0;
  border-radius: 20px;
}

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

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

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

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline-item {
  margin-bottom: 40px;
  padding-left: 50px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: hsl(322, 58%, 57%);
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 3px hsl(322, 58%, 32%);
}

.timeline-item h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  color: hsl(322, 58%, 32%);
  margin-bottom: 10px;
}

.timeline-item p {
  color: #555;
  margin-bottom: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0;
  }
  
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .about-hero p {
    font-size: 1.1rem;
  }
  
  .content-block h2 {
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

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

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

  #portfolio::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(322, 58%, 57%, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }

  #portfolio::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(322, 58%, 32%, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .portfolio-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(322, 58%, 32%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .portfolio-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(322, 58%, 57%);
    border-radius: 2px;
  }

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

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

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

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(322, 58%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(145, 47, 90, 0.3);
  }

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

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

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

  .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;
    width: 100%;
    height: 280px;
    background: linear-gradient(to bottom, transparent 0%, rgba(145, 47, 90, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
  }

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

  .portfolio-overlay-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
  }

  .portfolio-overlay-content .category {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.9;
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(322, 58%, 32%);
    margin-bottom: 12px;
  }

  .portfolio-category {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(322, 58%, 57%);
    background: hsla(322, 58%, 57%, 0.12);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  .portfolio-btn {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: hsl(322, 58%, 32%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .portfolio-btn:hover {
    color: hsl(322, 58%, 57%);
    gap: 12px;
  }

  .portfolio-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
  }

  .portfolio-btn:hover svg {
    transform: translateX(4px);
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(322, 58%, 32%) 0%, hsl(322, 58%, 17%) 100%);
    border: none;
    padding: 25px 30px;
  }

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

  .modal-header .btn-close {
    filter: invert(1);
    opacity: 0.9;
  }

  .modal-body {
    padding: 35px;
  }

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

  .modal-body h5 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(322, 58%, 32%);
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .modal-body p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .modal-body .category-badge {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(322, 58%, 57%);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
  }

  .modal-body ul {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.98rem;
    color: #555;
    line-height: 1.9;
    padding-left: 25px;
    margin-bottom: 20px;
  }

  .modal-body ul li {
    margin-bottom: 10px;
  }

  .modal-body ul li::marker {
    color: hsl(322, 58%, 57%);
  }

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

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

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

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

    .portfolio-content h3 {
      font-size: 1.3rem;
    }

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

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

  #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-size: 2.5rem;
    font-weight: 700;
    color: hsl(322, 58%, 32%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

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

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

  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(322, 58%, 57%);
  }

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

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

  #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-size: 1.4rem;
    font-weight: 600;
    color: hsl(322, 58%, 32%);
    margin-bottom: 15px;
    text-align: center;
  }

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

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

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

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

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

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

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

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

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

@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, hsl(322, 58%, 32%) 0%, hsl(322, 58%, 17%) 100%);
    position: relative;
    overflow: hidden;
  }

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.3;
  }

  .statistics-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }

  .statistics-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

  .stats-grid {
    position: relative;
    z-index: 1;
  }

  .stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    background: hsl(322, 58%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
  }

  .stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: hsl(322, 58%, 67%);
  }

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

  .stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1;
  }

  .stat-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #f8f9fa;
    margin-top: 10px;
    line-height: 1.5;
  }

  .stat-context {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-style: italic;
  }

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

  .stat-item.animate {
    animation: countUp 0.8s ease-out forwards;
  }

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

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

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

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

    .stat-label {
      font-size: 0.9rem;
    }

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

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

  @media (max-width: 576px) {
    .stat-item {
      padding: 30px 20px;
    }

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

footer {
  background: linear-gradient(135deg, hsl(322, 58%, 17%) 0%, hsl(322, 58%, 32%) 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: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.footer-description {
  max-width: 350px;
  margin-bottom: 25px;
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.footer-contact-item i {
  color: hsl(322, 58%, 57%);
  margin-right: 12px;
  margin-top: 3px;
  font-size: 1.1rem;
}

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

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

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

.footer-links a::before {
  content: '→';
  margin-right: 8px;
  color: hsl(322, 58%, 57%);
  transition: margin-right 0.3s ease;
}

.footer-links a:hover::before {
  margin-right: 12px;
}

.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.85rem;
  color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-policies a:hover {
  color: hsl(322, 58%, 57%);
}

#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(322, 58%, 32%);
}

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

.cookie-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(322, 58%, 32%);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

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

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

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

.cookie-category-icon {
  color: hsl(322, 58%, 32%);
  margin-right: 12px;
  font-size: 1.2rem;
  margin-top: 2px;
}

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

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

.cookie-badge {
  display: inline-block;
  background: hsl(322, 58%, 32%);
  color: #fff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  margin-left: 8px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}

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

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

.cookie-btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn-accept {
  background: #28a745;
  color: #fff;
}

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

.cookie-btn-reject {
  background: #6c757d;
  color: #fff;
}

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

.cookie-btn-settings {
  background: transparent;
  color: hsl(322, 58%, 32%);
  border: 2px solid hsl(322, 58%, 32%);
}

.cookie-btn-settings:hover {
  background: hsl(322, 58%, 32%);
  color: #fff;
  transform: translateY(-2px);
}

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

  .footer-description {
    max-width: 100%;
  }

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

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  #cookieNotice {
    padding: 20px 0;
  }

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

.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(322, 58%, 32%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Quicksand, sans-serif; color: hsl(322, 58%, 17%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(322, 58%, 32%); }
.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(322, 58%, 17%); font-family: Quicksand, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(322, 58%, 17%); font-family: Quicksand, sans-serif; }
.blog-article a { color: hsl(322, 58%, 32%); }
.blog-article a:hover { color: hsl(322, 58%, 57%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(322, 58%, 32%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(322, 58%, 57%, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(322, 58%, 32%, 0.05);
  border-radius: 50%;
  z-index: 0;
}

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

.contact-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(322, 58%, 32%);
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

.contact-form-container h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(322, 58%, 32%);
  margin-bottom: 1.5rem;
}

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

.contact-form .form-control,
.contact-form .form-control:focus {
  font-family: 'Libre Baskerville', serif;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.contact-form .form-control:focus {
  border-color: hsl(322, 58%, 57%);
  box-shadow: 0 0 0 0.2rem rgba(179, 47, 101, 0.15);
  background: #ffffff;
  outline: none;
}

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

.contact-form .btn-submit {
  font-family: 'Quicksand', sans-serif;
  background: hsl(322, 58%, 32%);
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
  cursor: pointer;
}

.contact-form .btn-submit:hover {
  background: hsl(322, 58%, 17%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 47, 101, 0.3);
}

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

.contact-info-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid hsl(322, 58%, 57%);
  transition: all 0.3s ease;
}

.contact-info-box:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-box h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(322, 58%, 32%);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info-box h4::before {
  content: '';
  width: 8px;
  height: 8px;
  background: hsl(322, 58%, 57%);
  border-radius: 50%;
  display: inline-block;
}

.contact-info-item {
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

.contact-info-item strong {
  font-family: 'Quicksand', sans-serif;
  color: #333;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.contact-info-item a {
  color: hsl(322, 58%, 32%);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  color: hsl(322, 58%, 57%);
  text-decoration: underline;
}

.contact-info-item p {
  color: #555;
  margin: 0;
  font-size: 0.95rem;
}

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

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

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

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

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

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

  .contact-form-container {
    padding: 35px;
  }
}

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

  .contact-section h2 {
    font-size: 1.9rem;
  }

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

  .contact-form-container {
    padding: 25px;
  }

  .contact-info-box {
    padding: 25px;
  }

  .contact-form .btn-submit {
    padding: 12px 30px;
  }
}

@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(322, 58%, 32%);
    --secondary-color: hsl(322, 58%, 17%);
    --accent-color: hsl(322, 58%, 57%);
  }

  .policy-content {
    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: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

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

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

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

  .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: 1rem 0;
    padding-left: 2rem;
  }

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

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

  .info-box {
    background: linear-gradient(135deg, rgba(179, 35, 103, 0.05) 0%, rgba(179, 35, 103, 0.1) 100%);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

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

  .contact-section h2 {
    color: white;
    margin-top: 0;
  }

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

  .contact-section a:hover {
    color: white;
  }

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

  .cookie-type-card {
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(179, 35, 103, 0.2);
  }

  .cookie-type-card h3 {
    margin-top: 0;
  }

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

.faq-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(322, 58%, 32%);
    margin-bottom: 1rem;
    text-align: center;
}

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

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

.faq-accordion .accordion-item {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-accordion .accordion-item:hover {
    border-color: hsl(322, 58%, 57%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(322, 58%, 32%);
    color: #ffffff;
    box-shadow: none;
}

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

.faq-accordion .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
}

.faq-accordion .accordion-body {
    padding: 1.75rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    background-color: #fafafa;
}

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

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

.faq-accordion .accordion-body strong {
    color: hsl(322, 58%, 32%);
    font-weight: 600;
}

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

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

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

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

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

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

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

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

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

    .faq-accordion .accordion-body {
        padding: 1rem;
    }
}

.newsletter-section {
  background: linear-gradient(135deg, hsl(322, 58%, 32%) 0%, hsl(322, 58%, 17%) 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-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  backdrop-filter: blur(10px);
}

.newsletter-icon svg {
  width: 35px;
  height: 35px;
  fill: #ffffff;
}

.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: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.newsletter-input-wrapper {
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 18px 25px;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #333333;
  background: #ffffff;
  border: 3px solid transparent;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-input:focus {
  outline: none;
  border-color: hsl(322, 58%, 57%);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

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

.newsletter-submit {
  padding: 18px 45px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: hsl(322, 58%, 57%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-submit:hover {
  background: hsl(322, 58%, 47%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

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

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

.newsletter-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
}

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

.newsletter-benefit-icon svg {
  width: 12px;
  height: 12px;
  fill: #ffffff;
}

@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
    gap: 12px;
  }
  
  .newsletter-input-wrapper {
    flex: 1;
  }
  
  .newsletter-submit {
    flex-shrink: 0;
    padding: 18px 40px;
  }
}

@media (max-width: 767px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-heading {
    font-size: 2rem;
  }
  
  .newsletter-description {
    font-size: 1rem;
  }
  
  .newsletter-benefits {
    gap: 20px;
  }
  
  .newsletter-benefit-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .newsletter-heading {
    font-size: 1.75rem;
  }
  
  .newsletter-icon {
    width: 60px;
    height: 60px;
  }
  
  .newsletter-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .newsletter-benefits {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@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;
    overflow: hidden;
  }

  .hero-section h1 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(322, 58%, 32%);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    color: hsl(322, 58%, 17%);
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .hero-section p {
    font-family: 'Libre Baskerville', serif;
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }

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

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

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

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

  .hero-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-top: 30px;
  }

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

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

  .btn-hero-primary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background: hsl(322, 58%, 32%);
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid hsl(322, 58%, 32%);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
  }

  .btn-hero-primary:hover {
    background: hsl(322, 58%, 17%);
    border-color: hsl(322, 58%, 17%);
    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;
    background: transparent;
    color: hsl(322, 58%, 32%);
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid hsl(322, 58%, 32%);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
  }

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

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

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

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

    .hero-image-wrapper {
      margin-top: 40px;
    }
  }

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

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

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

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

    .hero-advantages li {
      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');

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

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

.services-section .section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(322, 58%, 32%);
  margin-bottom: 20px;
}

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

.service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: hsl(322, 58%, 57%);
  box-shadow: 0 15px 40px rgba(159, 43, 104, 0.2);
}

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

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

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

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

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

.service-price {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(322, 58%, 32%);
  margin-bottom: 8px;
}

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

.service-btn {
  background: hsl(322, 58%, 32%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.service-btn:hover {
  background: hsl(322, 58%, 57%);
  color: #ffffff;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-section .section-title {
    font-size: 2.2rem;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
}

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

  .blog-preview-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(322, 58%, 32%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

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

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

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

  .blog-meta-item i {
    color: hsl(322, 58%, 57%);
    font-size: 0.9rem;
  }

  .blog-card-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: hsl(322, 58%, 17%);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

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

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

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

  .blog-read-more {
    color: hsl(322, 58%, 32%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
  }

  .blog-read-more:hover {
    color: hsl(322, 58%, 57%);
    gap: 0.8rem;
  }

  .blog-read-more i {
    transition: transform 0.3s ease;
  }

  .blog-read-more:hover i {
    transform: translateX(4px);
  }

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

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

  .blog-btn-wrapper {
    text-align: center;
  }

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

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

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

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

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

    .view-all-btn {
      padding: 12px 32px;
      font-size: 1rem;
    }
  }

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

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(322, 58%, 57%);
  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-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

.deadline-box {
  background: linear-gradient(135deg, hsl(322, 58%, 57%) 0%, hsl(322, 58%, 32%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

.deadline-date {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  font-family: 'Libre Baskerville', serif;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

.benefit-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, hsl(322, 58%, 57%) 0%, hsl(322, 58%, 32%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.discount-highlight {
  background: hsl(322, 58%, 57%);
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
}

.discount-percentage {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.discount-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.offer-cta-btn {
  display: inline-block;
  background: hsl(322, 58%, 32%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  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-cta-btn:hover {
  background: hsl(322, 58%, 17%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #fff;
}

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

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

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

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

  .deadline-date {
    font-size: 1.8rem;
    flex-direction: column;
  }

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

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

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

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

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

  #testimonials .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(322, 58%, 32%);
    margin-bottom: 15px;
  }

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

  .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(322, 58%, 57%);
  }

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

  .testimonial-card.style-2 {
    border-left: none;
    border-top: 4px solid hsl(322, 58%, 32%);
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
  }

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

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

  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(322, 58%, 57%) 0%, hsl(322, 58%, 32%) 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: 1;
  }

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

  .testimonial-location {
    font-size: 0.9rem;
    color: #777;
  }

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

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

  .testimonial-rating .star.empty {
    color: #ddd;
  }

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

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

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

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

  .testimonial-badge {
    display: inline-block;
    background: hsl(322, 58%, 57%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    margin-top: 10px;
  }

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

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

    .testimonial-card {
      padding: 25px;
    }

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

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

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

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

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

  #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-weight: 600;
    font-size: 1rem;
    color: #333;
    margin: 0;
  }

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

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

    #credentials .trust-card {
      padding: 20px 10px;
    }

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

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

.disclaimer-section .section-icon {
  font-size: 3.5rem;
  color: hsl(322, 58%, 57%);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.disclaimer-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(322, 58%, 32%);
  margin-bottom: 2rem;
  text-align: center;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(322, 58%, 57%);
}

.disclaimer-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 1.2rem;
  text-align: justify;
}

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

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

  .disclaimer-section .section-icon {
    font-size: 2.8rem;
  }
}

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

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

@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(322, 58%, 32%);
    --secondary-color: hsl(322, 58%, 17%);
    --accent-color: hsl(322, 58%, 57%);
  }

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

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

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

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

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

  .contact-box h3 {
    color: white !important;
    margin-bottom: 1rem;
  }

  .contact-box p {
    margin-bottom: 0.5rem;
    text-align: left;
  }

  .highlight-box {
    background-color: rgba(322, 58%, 57%, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }

  .update-date {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

@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(322, 58%, 32%);
    --secondary-color: hsl(322, 58%, 17%);
    --accent-color: hsl(322, 58%, 57%);
  }

  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: #2c3e50;
    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);
  }

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    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(--accent-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;
  }

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

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

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

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

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

  .highlight-box {
    background-color: rgba(322, 58%, 57%, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }

  .effective-date {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }