:root {
            --primary-color: hsl(331, 62%, 38%);
            --secondary-color: hsl(331, 62%, 23%);
            --accent-color: hsl(331, 62%, 63%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .navbar {
            background-color: #fff;
            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: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.3rem;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-nav {
            gap: 0.5rem;
        }
        
        .nav-link {
            font-family: 'Nunito', sans-serif;
            font-weight: 500;
            color: #444;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(191, 37, 107, 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='%23bf256b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #fff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            }
            
            .nav-link::after {
                display: none;
            }
        }

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

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

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

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

.about-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(331, 62%, 23%);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

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

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

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

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

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

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

.about-text {
  flex: 1;
}

.about-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(331, 62%, 38%);
  margin-bottom: 25px;
}

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

.about-reverse {
  flex-direction: row-reverse;
}

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

.value-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-top: 4px solid hsl(331, 62%, 38%);
}

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

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, hsl(331, 62%, 38%), hsl(331, 62%, 63%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #ffffff;
}

.value-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: hsl(331, 62%, 23%);
  margin-bottom: 15px;
}

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

.stats-section {
  background: linear-gradient(135deg, hsl(331, 62%, 38%), hsl(331, 62%, 23%));
  padding: 50px;
  border-radius: 20px;
  margin-top: 70px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-reverse {
    flex-direction: column;
  }
  
  .about-header h2 {
    font-size: 2.2rem;
  }
  
  .about-text h3 {
    font-size: 1.7rem;
  }
  
  .stats-section {
    padding: 40px 30px;
  }
  
  .stat-item h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-header h2 {
    font-size: 1.8rem;
  }
  
  .about-header p {
    font-size: 1rem;
  }
  
  .about-text h3 {
    font-size: 1.5rem;
  }
  
  .about-text p {
    font-size: 0.95rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .value-card {
    padding: 30px 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

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

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

  #portfolio .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(331, 62%, 23%);
    margin-bottom: 1rem;
    text-align: center;
  }

  #portfolio .section-subtitle {
    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;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
  }

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

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(331, 62%, 38%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(179, 35, 102, 0.3);
  }

  #portfolio .portfolio-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
  }

  #portfolio .portfolio-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  #portfolio .portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(179, 35, 102, 0.2);
  }

  #portfolio .portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
  }

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

  #portfolio .portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
  }

  #portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(179, 35, 102, 0.9), rgba(97, 15, 55, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

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

  #portfolio .view-details-btn {
    padding: 12px 30px;
    background: #fff;
    color: hsl(331, 62%, 38%);
    border: none;
    border-radius: 25px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #portfolio .view-details-btn:hover {
    background: hsl(331, 62%, 63%);
    color: #fff;
    transform: scale(1.05);
  }

  #portfolio .portfolio-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  #portfolio .portfolio-category {
    display: inline-block;
    padding: 5px 15px;
    background: hsl(331, 62%, 95%);
    color: hsl(331, 62%, 38%);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
  }

  #portfolio .portfolio-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: hsl(331, 62%, 23%);
    margin-bottom: 12px;
  }

  #portfolio .portfolio-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
  }

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

  #portfolio .modal-header {
    background: linear-gradient(135deg, hsl(331, 62%, 38%), hsl(331, 62%, 23%));
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
  }

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

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

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

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

  #portfolio .modal-category {
    display: inline-block;
    padding: 8px 20px;
    background: hsl(331, 62%, 95%);
    color: hsl(331, 62%, 38%);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

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

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

  #portfolio .modal-details h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(331, 62%, 23%);
    margin-bottom: 15px;
    font-size: 1.1rem;
  }

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

  #portfolio .modal-details li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #e0e0e0;
  }

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

  #portfolio .modal-details li strong {
    color: hsl(331, 62%, 38%);
    font-weight: 600;
  }

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

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

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

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

    #portfolio .portfolio-img-wrapper {
      height: 220px;
    }
  }

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

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

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

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

  .advantages-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(331, 62%, 23%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

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

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

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(179, 36, 103, 0.15);
    border-color: hsl(331, 62%, 63%);
  }

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

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

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

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

  .advantage-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(331, 62%, 23%);
    margin-bottom: 18px;
    text-align: center;
    transition: color 0.3s ease;
  }

  .advantage-card:hover h3 {
    color: hsl(331, 62%, 38%);
  }

  .advantage-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

  .advantages-row {
    margin-top: 50px;
  }

  @media (max-width: 991px) {
    .advantages-header h2 {
      font-size: 2rem;
    }

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

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

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

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

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

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

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

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

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

#statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(331, 62%, 38%) 0%, hsl(331, 62%, 63%) 100%);
}

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

.statistics-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    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(331, 62%, 38%);
}

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

.stat-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border: 2px solid transparent;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(176, 36, 91, 0.15);
    border-color: hsl(331, 62%, 63%);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(331, 62%, 38%) 0%, hsl(331, 62%, 63%) 100%);
    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: 32px;
    color: #ffffff;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(331, 62%, 38%);
    margin-bottom: 10px;
    line-height: 1.2;
}

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

.stat-context {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

@media (max-width: 768px) {
    #statistics {
        padding: 60px 0;
    }
    
    .statistics-header h2 {
        font-size: 2rem;
    }
    
    .statistics-header p {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
}

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

footer {
  background: linear-gradient(135deg, hsl(331, 62%, 23%) 0%, hsl(331, 62%, 38%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  margin-top: 80px;
  font-family: 'Nunito', sans-serif;
}

footer h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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(331, 62%, 63%);
  padding-left: 5px;
}

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

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

footer .contact-info li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

footer .contact-info li i {
  margin-right: 10px;
  color: hsl(331, 62%, 63%);
  margin-top: 3px;
}

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

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

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

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

footer .policy-links {
  margin-top: 15px;
}

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

footer .policy-links a:hover {
  color: hsl(331, 62%, 63%);
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 4px solid hsl(331, 62%, 38%);
  font-family: 'Nunito', sans-serif;
}

#cookieNotice .cookie-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: hsl(331, 62%, 23%);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

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

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

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

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

#cookieNotice .category-name {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  margin-bottom: 5px;
}

#cookieNotice .category-required {
  color: #28a745;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 8px;
}

#cookieNotice .category-optional {
  color: #6c757d;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 8px;
}

#cookieNotice .category-description {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.5;
}

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

#cookieNotice .btn-accept-all {
  background: #28a745;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

#cookieNotice .btn-reject-optional {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

#cookieNotice .btn-manage {
  background: transparent;
  color: hsl(331, 62%, 38%);
  border: 2px solid hsl(331, 62%, 38%);
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

#cookieNotice .btn-manage:hover {
  background: hsl(331, 62%, 38%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(177, 35, 97, 0.3);
}

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

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

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

  #cookieNotice {
    padding: 20px 0;
  }

  #cookieNotice .cookie-title {
    font-size: 1.1rem;
  }

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

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

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

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

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

.contact-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: hsl(331, 62%, 38%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

.contact-form-wrapper h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(331, 62%, 23%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

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

.contact-form .form-control:focus {
    border-color: hsl(331, 62%, 63%);
    box-shadow: 0 0 0 0.2rem rgba(194, 73, 122, 0.15);
    outline: none;
}

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

.contact-form .required-mark {
    color: hsl(331, 62%, 38%);
    font-weight: 700;
}

.contact-form .btn-submit {
    background: hsl(331, 62%, 38%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
}

.contact-form .btn-submit:hover {
    background: hsl(331, 62%, 23%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 73, 122, 0.3);
}

.contact-info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(331, 62%, 23%);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

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

.contact-info-item .icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(331, 62%, 63%) 0%, hsl(331, 62%, 38%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-info-item .icon-wrapper i {
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-info-item h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #666;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-item a {
    color: hsl(331, 62%, 38%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: hsl(331, 62%, 23%);
    text-decoration: underline;
}

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

.working-hours-list li {
    color: #666;
    padding: 0.4rem 0;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
}

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

.deadline-alert {
    background: linear-gradient(135deg, hsl(331, 62%, 38%) 0%, hsl(331, 62%, 23%) 100%);
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(194, 73, 122, 0.3);
}

.deadline-alert h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.deadline-alert p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper h3,
    .contact-info-card h3 {
        font-size: 1.5rem;
    }
    
    .deadline-alert {
        padding: 15px 20px;
    }
    
    .deadline-alert h4 {
        font-size: 1.1rem;
    }
}

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

  :root {
    --primary-color: hsl(331, 62%, 38%);
    --secondary-color: hsl(331, 62%, 23%);
    --accent-color: hsl(331, 62%, 63%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-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(--primary-color);
    position: relative;
    padding-left: 20px;
  }

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

  .policy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }

  .policy-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
  }

  .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;
    font-size: 1.05rem;
  }

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

  .intro-box {
    background: linear-gradient(135deg, rgba(194, 34, 103, 0.05) 0%, rgba(194, 34, 103, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
  }

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

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

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

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

  .cookie-table {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

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

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

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

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

  .faq-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(331, 62%, 38%);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .faq-section .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

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

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

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

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

  .faq-section .accordion-button:not(.collapsed) {
    background-color: hsl(331, 62%, 38%);
    color: #ffffff;
    box-shadow: none;
  }

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

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

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

  .faq-section .accordion-body {
    padding: 30px;
    background-color: #ffffff;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .faq-section .accordion-body strong {
    color: hsl(331, 62%, 38%);
    font-weight: 600;
  }

  .faq-section .faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, hsl(331, 62%, 38%) 0%, hsl(331, 62%, 23%) 100%);
    border-radius: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .faq-section .faq-cta .btn-contact {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1.1rem;
    background-color: #ffffff;
    color: hsl(331, 62%, 38%);
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .faq-section .faq-cta .btn-contact:hover {
    background-color: hsl(331, 62%, 63%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

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

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

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

    .faq-section .accordion-button {
      font-size: 1rem;
      padding: 20px 20px;
    }

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(331, 62%, 38%) 0%, hsl(331, 62%, 23%) 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-container {
    position: relative;
    z-index: 1;
  }

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

  .newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
  }

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

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

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

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

  .newsletter-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }

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

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

  .newsletter-input:focus {
    outline: none;
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }

  .newsletter-submit {
    padding: 18px 45px;
    background: #ffffff;
    color: hsl(331, 62%, 38%);
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .newsletter-submit:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

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

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

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

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

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

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

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

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

    .newsletter-submit {
      width: 100%;
      padding: 16px 35px;
    }

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

    .newsletter-icon {
      width: 70px;
      height: 70px;
      margin-bottom: 25px;
    }

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

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

    .newsletter-input {
      padding: 15px 20px;
      font-size: 0.95rem;
    }

    .newsletter-submit {
      padding: 15px 30px;
      font-size: 0.95rem;
    }
  }

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

:root {
  --primary: hsl(331, 62%, 38%);
  --secondary: hsl(331, 62%, 23%);
  --accent: hsl(331, 62%, 63%);
}

.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: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(186, 37, 107, 0.03) 100%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  animation: pulse 2s infinite;
}

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

.hero-section h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--secondary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 30px;
}

.hero-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 650px;
}

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

.hero-advantages li {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: #222222;
  margin-bottom: 18px;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}

.hero-advantages li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-advantages li::after {
  content: '✓';
  position: absolute;
  left: 6px;
  top: 4px;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
}

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

.btn-hero-primary {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 40px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(186, 37, 107, 0.3);
}

.btn-hero-primary:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(186, 37, 107, 0.4);
  color: #ffffff;
}

.btn-hero-secondary {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 40px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(186, 37, 107, 0.3);
}

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

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

.hero-image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image-badge-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}

.hero-image-badge-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: #333333;
  font-weight: 600;
}

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

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

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

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

  .hero-buttons {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

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

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

  .hero-image-badge {
    bottom: 15px;
    right: 15px;
    padding: 15px 20px;
  }

  .hero-image-badge-number {
    font-size: 2rem;
  }
}

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

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

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

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

.services-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: hsl(331, 62%, 38%);
  border-radius: 2px;
}

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

.services-section .service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services-section .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(180, 37, 103, 0.2);
  border-color: hsl(331, 62%, 63%);
}

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

.services-section .service-card:hover .service-icon {
  transform: rotateY(360deg);
  background: linear-gradient(135deg, hsl(331, 62%, 63%) 0%, hsl(331, 62%, 38%) 100%);
}

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

.services-section .service-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  text-align: center;
}

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

.services-section .service-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(331, 62%, 38%);
  text-align: center;
  margin-bottom: 15px;
}

.services-section .service-terms {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
}

.services-section .service-btn {
  background: linear-gradient(135deg, hsl(331, 62%, 38%) 0%, hsl(331, 62%, 23%) 100%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.services-section .service-btn:hover {
  background: linear-gradient(135deg, hsl(331, 62%, 63%) 0%, hsl(331, 62%, 38%) 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(180, 37, 103, 0.3);
}

.services-section .deadline-notice {
  background: linear-gradient(135deg, hsl(331, 62%, 38%) 0%, hsl(331, 62%, 23%) 100%);
  color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 8px 25px rgba(180, 37, 103, 0.25);
}

.services-section .deadline-notice h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-section .deadline-notice p {
  font-size: 1.05rem;
  margin: 0;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-section .section-title {
    font-size: 2rem;
  }
  
  .services-section .service-card {
    padding: 30px 20px;
  }
  
  .services-section .service-price {
    font-size: 1.5rem;
  }
}

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

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

  #credentials .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    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: 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: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    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;
    }
  }

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

.testimonials-section h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(331, 62%, 23%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(331, 62%, 38%), hsl(331, 62%, 63%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-right: 15px;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: 'Poppins', sans-serif;
  color: #222;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

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

.testimonial-location i {
  margin-right: 5px;
  color: hsl(331, 62%, 38%);
}

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

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

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

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

.testimonial-text p {
  margin-bottom: 0;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(331, 62%, 38%), hsl(331, 62%, 23%));
  color: #ffffff;
  border: none;
}

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

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

.testimonial-card.featured .testimonial-location i {
  color: hsl(331, 62%, 63%);
}

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

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

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

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

.testimonial-badge {
  display: inline-block;
  background: hsl(331, 62%, 63%);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
}

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

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

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
    margin-bottom: 20px;
  }
}

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

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

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

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

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

  .blog-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 3px solid hsl(331, 62%, 38%);
  }

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

  .blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }

  .blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.9rem;
  }

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

  .blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #222;
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
  }

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

  .blog-card-title a:hover {
    color: hsl(331, 62%, 38%);
  }

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

  .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(331, 62%, 38%);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  .blog-read-more:hover {
    color: hsl(331, 62%, 23%);
    gap: 12px;
  }

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

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

  .view-all-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 16px 40px;
    background: hsl(331, 62%, 38%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid hsl(331, 62%, 38%);
  }

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

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

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

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

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

    .blog-card-body {
      padding: 25px;
    }

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

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

.offer-section {
  background: linear-gradient(135deg, hsl(331, 62%, 95%) 0%, hsl(331, 62%, 98%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Nunito', sans-serif;
}

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

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

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

.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, hsl(331, 62%, 38%) 0%, hsl(331, 62%, 23%) 100%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.offer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: hsl(331, 62%, 23%);
  margin-bottom: 20px;
  line-height: 1.2;
}

.offer-description {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.deadline-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  margin-bottom: 40px;
  border: 3px solid hsl(331, 62%, 63%);
}

.deadline-label {
  font-size: 20px;
  color: #666;
  margin-bottom: 15px;
  font-weight: 600;
}

.deadline-date {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: hsl(331, 62%, 38%);
  margin: 0;
  line-height: 1;
}

.calendar-icon {
  font-size: 48px;
  color: hsl(331, 62%, 63%);
  margin-bottom: 15px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.benefit-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border-left: 4px solid hsl(331, 62%, 63%);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
  font-size: 32px;
  color: hsl(331, 62%, 38%);
  margin-bottom: 15px;
}

.benefit-text {
  font-size: 16px;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.discount-highlight {
  background: linear-gradient(135deg, hsl(331, 62%, 38%) 0%, hsl(331, 62%, 23%) 100%);
  color: #fff;
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.discount-percentage {
  font-family: 'Poppins', sans-serif;
  font-size: 72px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.discount-text {
  font-size: 24px;
  margin-top: 10px;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, hsl(331, 62%, 38%) 0%, hsl(331, 62%, 23%) 100%);
  color: #fff;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  color: #fff;
}

@media (max-width: 768px) {
  .offer-heading {
    font-size: 36px;
  }
  
  .deadline-date {
    font-size: 40px;
  }
  
  .discount-percentage {
    font-size: 56px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .deadline-box {
    padding: 30px 20px;
  }
  
  .discount-highlight {
    padding: 35px 20px;
  }
}

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

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.disclaimer-header {
  text-align: center;
  margin-bottom: 50px;
}

.disclaimer-icon {
  font-size: 3.5rem;
  color: hsl(331, 62%, 38%);
  margin-bottom: 25px;
  display: inline-block;
}

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

.disclaimer-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 45px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid hsl(331, 62%, 38%);
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-title {
    font-size: 2rem;
  }
  
  .disclaimer-content {
    padding: 30px 20px;
  }
  
  .disclaimer-text {
    font-size: 1rem;
  }
  
  .disclaimer-icon {
    font-size: 3rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Nunito:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(331, 62%, 38%);
    --secondary-color: hsl(331, 62%, 23%);
    --accent-color: hsl(331, 62%, 63%);
  }
  
  .policy-content {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    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: 4px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .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;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }
  
  .policy-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .contact-box {
    background-color: var(--accent-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }
  
  .contact-box h3 {
    color: white;
  }
  
  .contact-box a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-box a:hover {
    color: var(--secondary-color);
  }
  
  .effective-date {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(331, 62%, 38%);
    --secondary-color: hsl(331, 62%, 23%);
    --accent-color: hsl(331, 62%, 63%);
  }
  
  .policy-content {
    font-family: 'Nunito', sans-serif;
    color: #2c3e50;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background: var(--accent-color);
    border-radius: 3px;
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .highlight-box {
    background: linear-gradient(135deg, rgba(191, 34, 101, 0.05) 0%, rgba(191, 34, 101, 0.1) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-info {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-info h3 {
    color: white;
    margin-bottom: 1.5rem;
  }
  
  .contact-info p {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }
  
  .contact-info a {
    color: var(--accent-color);
  }
  
  .contact-info a:hover {
    color: white;
  }
  
  .effective-date {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }