:root {
            --primary-color: hsl(349, 31%, 41%);
            --secondary-color: hsl(349, 31%, 26%);
            --accent-color: hsl(349, 31%, 66%);
        }
        
        * {
            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.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Nunito', sans-serif;
            font-weight: 600;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(185, 72, 89, 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(185, 72, 89, 1)' 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 6px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        @media (min-width: 992px) {
            .navbar-expand-lg .navbar-nav .nav-link {
                padding: 0.5rem 0.9rem;
            }
        }

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

.about-section h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(349, 31%, 26%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-section h3 {
  font-family: 'Poppins', sans-serif;
  color: hsl(349, 31%, 41%);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.about-section .lead-text {
  font-size: 1.25rem;
  color: hsl(349, 31%, 41%);
  font-weight: 600;
  margin-bottom: 2rem;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

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

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.value-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid hsl(349, 31%, 41%);
}

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

.value-card h4 {
  font-family: 'Poppins', sans-serif;
  color: hsl(349, 31%, 26%);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

.stats-row {
  background: hsl(349, 31%, 41%);
  color: #ffffff;
  padding: 3rem 0;
  margin-top: 3rem;
  border-radius: 15px;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
  
  .about-section h3 {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

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

  .portfolio-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(349, 31%, 66%, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .portfolio-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(349, 31%, 26%);
    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: linear-gradient(90deg, hsl(349, 31%, 41%) 0%, hsl(349, 31%, 66%) 100%);
    border-radius: 2px;
  }

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

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

  .filter-btn {
    font-family: 'Nunito', sans-serif;
    padding: 12px 30px;
    border: 2px solid hsl(349, 31%, 66%);
    background: transparent;
    color: hsl(349, 31%, 41%);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

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

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

  .portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
  }

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

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsla(349, 31%, 41%, 0.9) 0%, hsla(349, 31%, 26%, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

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

  .portfolio-overlay-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: hsl(349, 31%, 41%);
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
  }

  .portfolio-item:hover .portfolio-overlay-icon {
    transform: scale(1);
  }

  .portfolio-content {
    padding: 25px;
  }

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

  .portfolio-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(349, 31%, 26%);
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .portfolio-description {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
  }

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

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

  .modal-header .modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
  }

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

  .modal-body {
    padding: 35px;
  }

  .modal-project-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
  }

  .modal-category {
    font-family: 'Nunito', sans-serif;
    display: inline-block;
    padding: 8px 20px;
    background: hsl(349, 31%, 66%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

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

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

  .modal-details h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(349, 31%, 26%);
    margin-bottom: 20px;
  }

  .detail-item {
    display: flex;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
  }

  .detail-label {
    font-weight: 700;
    color: hsl(349, 31%, 41%);
    min-width: 140px;
    font-size: 1rem;
  }

  .detail-value {
    color: #555;
    font-size: 1rem;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

    .modal-project-image {
      height: 250px;
    }

    .detail-item {
      flex-direction: column;
      margin-bottom: 12px;
    }

    .detail-label {
      margin-bottom: 5px;
    }
  }

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

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

    .portfolio-image {
      height: 220px;
    }

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

.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(349, 31%, 66%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

  .advantages-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(349, 31%, 41%, 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: #222;
    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(349, 31%, 41%);
    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: 15px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    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(349, 31%, 41%) 0%, hsl(349, 31%, 66%) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(349, 31%, 66%);
  }

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

  .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(349, 31%, 41%) 0%, hsl(349, 31%, 26%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
  }

  .advantage-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: hsl(349, 31%, 66%);
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.4s ease;
  }

  .advantage-card:hover .advantage-icon::after {
    transform: scale(1.2);
    opacity: 0.3;
  }

  .advantage-card:hover .advantage-icon {
    transform: rotateY(360deg);
  }

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

  .advantage-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
  }

  .advantage-card:hover h3 {
    color: hsl(349, 31%, 41%);
  }

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

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

  @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 {
      margin-bottom: 40px;
    }

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

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

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

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

    .advantage-icon i {
      font-size: 28px;
    }
  }

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(349, 31%, 41%) 0%, hsl(349, 31%, 66%) 100%);
}

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

.statistics-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(349, 31%, 26%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.statistics-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(349, 31%, 41%);
}

.statistics-section .section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #666;
    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);
    height: 100%;
    border: 2px solid transparent;
    margin-bottom: 30px;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: hsl(349, 31%, 66%);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(349, 31%, 41%) 0%, hsl(349, 31%, 66%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    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(349, 31%, 26%);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #555;
    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-section {
        padding: 60px 0;
    }
    
    .statistics-section .section-title {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .statistics-section .section-title {
        font-size: 1.75rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
}

footer {
  background: linear-gradient(135deg, hsl(349, 31%, 26%) 0%, hsl(349, 31%, 41%) 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;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #ffffff;
}

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

footer a {
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: hsl(349, 31%, 66%);
  padding-left: 5px;
}

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

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

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-info-footer {
  margin-bottom: 15px;
}

.contact-info-footer i {
  width: 20px;
  color: hsl(349, 31%, 66%);
  margin-right: 8px;
}

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

.business-hours-list {
  font-size: 0.9rem;
}

.business-hours-list li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 25px 0;
  border-top: 3px solid hsl(349, 31%, 41%);
  animation: slideUp 0.4s ease-out;
}

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

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

.cookie-notice-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 12px;
}

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

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

.cookie-category {
  padding: 8px 0;
  border-bottom: 1px solid #dee2e6;
  color: #333;
  font-size: 0.9rem;
}

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

.cookie-category strong {
  color: #222;
  font-weight: 600;
}

.cookie-category-required {
  color: hsl(349, 31%, 41%);
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 8px;
}

.cookie-category-optional {
  color: #6c757d;
  font-size: 0.8rem;
  font-style: italic;
  margin-left: 8px;
}

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

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

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

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

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

.btn-cookie-settings {
  background: transparent;
  color: hsl(349, 31%, 41%);
  border: 2px solid hsl(349, 31%, 41%);
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
}

.btn-cookie-settings:hover {
  background: hsl(349, 31%, 41%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(145, 70, 81, 0.3);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }
  
  footer h5 {
    margin-top: 25px;
    font-size: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .btn-cookie-accept,
  .btn-cookie-reject,
  .btn-cookie-settings {
    width: 100%;
    text-align: center;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  .cookie-notice-title {
    font-size: 1.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(349, 31%, 41%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Poppins, sans-serif; color: hsl(349, 31%, 26%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(349, 31%, 41%); }
.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(349, 31%, 26%); font-family: Poppins, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(349, 31%, 26%); font-family: Poppins, sans-serif; }
.blog-article a { color: hsl(349, 31%, 41%); }
.blog-article a:hover { color: hsl(349, 31%, 66%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(349, 31%, 41%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

.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(349, 31%, 26%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid hsl(349, 31%, 41%);
}

.contact-info-item {
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(349, 31%, 41%) 0%, hsl(349, 31%, 26%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.contact-info-item h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(349, 31%, 26%);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #555;
    margin-bottom: 0.3rem;
    line-height: 1.6;
}

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

.contact-info-item a:hover {
    color: hsl(349, 31%, 26%);
}

.contact-form-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(349, 31%, 26%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

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

.form-control:focus, .form-select:focus {
    border-color: hsl(349, 31%, 41%);
    box-shadow: 0 0 0 0.2rem rgba(168, 79, 95, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

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

.btn-submit {
    background: linear-gradient(135deg, hsl(349, 31%, 41%) 0%, hsl(349, 31%, 26%) 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 79, 95, 0.3);
    color: #ffffff;
}

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

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

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

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

.working-hours-list .hours {
    color: hsl(349, 31%, 41%);
    font-weight: 600;
}

.required-mark {
    color: hsl(349, 31%, 41%);
    margin-left: 3px;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .btn-submit {
        padding: 0.875rem 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(349, 31%, 41%);
    --secondary-color: hsl(349, 31%, 26%);
    --accent-color: hsl(349, 31%, 66%);
  }
  
  .policy-content {
    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: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 15px;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--secondary-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(--secondary-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-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
  }
  
  .contact-info {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
  }
  
  .contact-info h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-info a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-info a:hover {
    color: #f8f9fa;
  }
  
  .cookie-table {
    margin: 1.5rem 0;
  }
  
  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
  }
  
  .cookie-table td {
    background-color: #f8f9fa;
  }
  
  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-top: 1rem;
  }

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

.faq-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(349, 31%, 26%);
    margin-bottom: 1rem;
    text-align: center;
}

.faq-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    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: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.faq-accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(349, 31%, 26%);
    background-color: #ffffff;
    padding: 1.5rem 1.75rem;
    border: none;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(349, 31%, 41%);
    color: #ffffff;
    box-shadow: none;
}

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

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

.faq-accordion .accordion-body {
    padding: 1.75rem;
    background-color: #ffffff;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

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

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

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

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

.faq-accordion .accordion-body strong {
    color: hsl(349, 31%, 41%);
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: hsl(349, 31%, 26%);
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.faq-cta .btn-primary {
    background-color: hsl(349, 31%, 41%);
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #ffffff;
}

.faq-cta .btn-primary:hover {
    background-color: hsl(349, 31%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-accordion .accordion-button {
        font-size: 1rem;
        padding: 1.25rem 1.25rem;
    }
    
    .faq-accordion .accordion-body {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
}

#newsletter {
    background: linear-gradient(135deg, hsl(349, 31%, 41%) 0%, hsl(349, 31%, 26%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

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

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

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

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

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

  .newsletter-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    color: #f8f9fa;
    margin-bottom: 35px;
    line-height: 1.7;
  }

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

  .newsletter-form .form-control {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    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: #333333;
    transition: all 0.3s ease;
  }

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

  .newsletter-form .form-control::placeholder {
    color: #999999;
  }

  .newsletter-form .btn-subscribe {
    padding: 16px 40px;
    background: hsl(349, 31%, 66%);
    color: #ffffff;
    border: 2px solid hsl(349, 31%, 66%);
    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-form .btn-subscribe:hover {
    background: #ffffff;
    color: hsl(349, 31%, 41%);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

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

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

  .newsletter-benefit i {
    color: hsl(349, 31%, 66%);
    font-size: 1.2rem;
  }

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

    .newsletter-content h2 {
      font-size: 2rem;
    }

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

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

    .newsletter-form .form-control {
      min-width: 100%;
    }

    .newsletter-form .btn-subscribe {
      width: 100%;
    }

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Nunito:wght@400;600;700&display=swap');
  
  .hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 100px;
    overflow: hidden;
    position: relative;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: hsla(349, 31%, 66%, 0.08);
    border-radius: 50%;
    z-index: 0;
  }
  
  .hero-content-wrapper {
    position: relative;
    z-index: 2;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
  }
  
  .hero-text-block {
    padding-right: 20px;
  }
  
  .hero-badge {
    display: inline-block;
    background: hsl(349, 31%, 66%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }
  
  .hero-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  
  .hero-h1 .highlight {
    color: hsl(349, 31%, 41%);
    position: relative;
    display: inline-block;
  }
  
  .hero-h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: hsl(349, 31%, 26%);
    margin-bottom: 25px;
    line-height: 1.4;
  }
  
  .hero-description {
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: justify;
  }
  
  .hero-advantages {
    list-style: none;
    padding: 0;
    margin: 40px 0;
  }
  
  .hero-advantages li {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #333;
    padding: 14px 0 14px 45px;
    position: relative;
    line-height: 1.6;
    border-left: 3px solid hsl(349, 31%, 66%);
    margin-bottom: 16px;
    padding-left: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  
  .hero-advantages li::before {
    content: '\f26b';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    background: hsl(349, 31%, 41%);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .hero-btn-primary {
    background: hsl(349, 31%, 41%);
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .hero-btn-primary:hover {
    background: hsl(349, 31%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: #ffffff;
  }
  
  .hero-btn-secondary {
    background: transparent;
    color: hsl(349, 31%, 41%);
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border: 2px solid hsl(349, 31%, 41%);
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
  }
  
  .hero-btn-secondary:hover {
    background: hsl(349, 31%, 41%);
    color: #ffffff;
    transform: translateY(-2px);
  }
  
  .hero-image-block {
    position: relative;
    padding-left: 40px;
  }
  
  .hero-image-wrapper {
    position: relative;
    z-index: 1;
  }
  
  .hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: hsl(349, 31%, 66%);
    border-radius: 20px;
    z-index: -1;
  }
  
  .hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: hsl(349, 31%, 41%);
    border-radius: 50%;
    z-index: -2;
    opacity: 0.15;
  }
  
  .hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: block;
  }
  
  .hero-floating-card {
    position: absolute;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    z-index: 2;
  }
  
  .hero-card-1 {
    top: 40px;
    left: -40px;
  }
  
  .hero-card-2 {
    bottom: 60px;
    right: -20px;
  }
  
  .hero-card-icon {
    font-size: 32px;
    color: hsl(349, 31%, 41%);
    margin-bottom: 10px;
  }
  
  .hero-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
  }
  
  .hero-card-text {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
  }
  
  @media (max-width: 992px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 50px;
    }
    
    .hero-h1 {
      font-size: 42px;
    }
    
    .hero-h2 {
      font-size: 20px;
    }
    
    .hero-text-block {
      padding-right: 0;
    }
    
    .hero-image-block {
      padding-left: 0;
    }
    
    .hero-card-1 {
      left: 0;
      top: 20px;
    }
    
    .hero-card-2 {
      right: 0;
      bottom: 40px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      padding: 60px 0 80px;
    }
    
    .hero-h1 {
      font-size: 36px;
    }
    
    .hero-h2 {
      font-size: 18px;
    }
    
    .hero-description {
      font-size: 16px;
    }
    
    .hero-buttons {
      flex-direction: column;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
      width: 100%;
      justify-content: center;
    }
    
    .hero-floating-card {
      padding: 20px;
    }
    
    .hero-advantages li {
      font-size: 15px;
      padding: 12px 0 12px 20px;
    }
  }
  
  @media (max-width: 576px) {
    .hero-h1 {
      font-size: 30px;
    }
    
    .hero-card-1,
    .hero-card-2 {
      position: static;
      margin-bottom: 20px;
    }
    
    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
      display: none;
    }
  }

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    font-family: 'Nunito', sans-serif;
  }
  
  .testimonials-section h2 {
    font-family: 'Poppins', sans-serif;
    color: hsl(349, 31%, 26%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .testimonials-section .lead-text {
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  }
  
  .testimonial-card.style-1 {
    border-left: 4px solid hsl(349, 31%, 41%);
  }
  
  .testimonial-card.style-2 {
    border-top: 4px solid hsl(349, 31%, 66%);
  }
  
  .testimonial-card.style-3 {
    background: linear-gradient(to bottom right, #ffffff 0%, #fafafa 100%);
    border: 2px solid #e9ecef;
  }
  
  .testimonial-card.style-4 {
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-card.style-4::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: hsl(349, 31%, 66%);
    opacity: 0.1;
    border-radius: 0 0 0 100%;
  }
  
  .testimonial-card.style-5 {
    background: hsl(349, 31%, 96%);
  }
  
  .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(349, 31%, 41%) 0%, hsl(349, 31%, 66%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
  }
  
  .testimonial-info {
    flex-grow: 1;
  }
  
  .testimonial-name {
    font-weight: 700;
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 3px;
    font-family: 'Poppins', sans-serif;
  }
  
  .testimonial-location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .testimonial-rating {
    display: flex;
    gap: 3px;
    margin-top: 5px;
  }
  
  .star {
    color: #ffc107;
    font-size: 1.1rem;
  }
  
  .star.empty {
    color: #ddd;
  }
  
  .testimonial-text {
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
    position: relative;
  }
  
  .testimonial-text.long-text {
    font-size: 0.95rem;
  }
  
  .testimonial-text.short-text {
    font-size: 1.05rem;
    font-weight: 500;
  }
  
  .quote-icon {
    color: hsl(349, 31%, 66%);
    font-size: 2.5rem;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -5px;
    line-height: 1;
  }
  
  .testimonial-date {
    color: #999;
    font-size: 0.85rem;
    margin-top: 15px;
    font-style: italic;
  }
  
  .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
  }
  
  @media (max-width: 768px) {
    .testimonials-section {
      padding: 60px 0;
    }
    
    .testimonials-section h2 {
      font-size: 2rem;
    }
    
    .testimonial-card {
      padding: 25px;
      margin-bottom: 20px;
    }
    
    .testimonial-avatar {
      width: 50px;
      height: 50px;
      font-size: 1.3rem;
    }
  }

.credentials-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.credential-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%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

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

@media (max-width: 991px) {
  .credentials-section {
    padding: 50px 0;
  }
  
  .credentials-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .credential-card {
    margin-bottom: 15px;
  }
}

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

.blog-preview h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

.blog-card-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

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

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

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

.blog-card-meta i {
  color: hsl(349, 31%, 41%);
  font-size: 1rem;
}

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

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

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(349, 31%, 41%);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
  font-size: 1rem;
}

.blog-card-link:hover {
  gap: 0.8rem;
  color: hsl(349, 31%, 26%);
}

.blog-card-link i {
  font-size: 1.1rem;
}

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

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

.btn-view-all:hover {
  background: hsl(349, 31%, 26%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

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

  .blog-card {
    margin-bottom: 2rem;
  }

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

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

  .blog-view-all {
    margin-top: 2rem;
  }
}

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

.services-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
}

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

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.nav-tabs .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #555;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 12px 30px;
    margin: 0 10px 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.nav-tabs .nav-link:hover {
    color: hsl(349, 31%, 41%);
    border-color: hsl(349, 31%, 66%);
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: hsl(349, 31%, 41%);
    color: #fff;
    border-color: hsl(349, 31%, 41%);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: hsl(349, 31%, 66%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(349, 31%, 41%) 0%, hsl(349, 31%, 26%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.service-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(349, 31%, 41%);
}

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

.service-duration {
    background: hsl(349, 31%, 66%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tab-pane {
    animation: fadeIn 0.5s ease;
}

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

@media (max-width: 768px) {
    .services-section h2 {
        font-size: 2rem;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 20px;
        margin: 0 5px 10px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

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

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

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

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

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

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

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

.offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.deadline-wrapper {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 15px;
  border: 3px dashed hsl(349, 31%, 66%);
}

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

.deadline-date {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: hsl(349, 31%, 41%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 50px;
  height: 50px;
  background: hsl(349, 31%, 41%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

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

.benefits-list li {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  color: #333;
  padding: 20px;
  margin-bottom: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  background: hsl(349, 31%, 66%);
  color: #fff;
  transform: translateX(10px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: hsl(349, 31%, 41%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

.benefits-list li:hover .benefit-icon {
  background: #fff;
  color: hsl(349, 31%, 41%);
}

.discount-badge {
  display: inline-block;
  background: hsl(349, 31%, 41%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Poppons', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.offer-cta {
  text-align: center;
  margin-top: 40px;
}

.offer-btn {
  display: inline-block;
  background: hsl(349, 31%, 41%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  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);
}

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

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

  .offer-title {
    font-size: 32px;
  }

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

  .deadline-date {
    font-size: 28px;
    flex-direction: column;
  }

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

  .offer-btn {
    font-size: 18px;
    padding: 15px 40px;
  }
}

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

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

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(349, 31%, 66%) 0%, hsl(349, 31%, 41%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(149, 73, 85, 0.25);
}

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

.disclaimer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: hsl(349, 31%, 26%);
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

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

.disclaimer-text strong {
  color: hsl(349, 31%, 41%);
  font-weight: 600;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-container {
    padding: 40px 25px;
    margin: 0 15px;
  }
  
  .disclaimer-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .disclaimer-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
  }
  
  .disclaimer-icon i {
    font-size: 30px;
  }
  
  .disclaimer-text {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .disclaimer-container {
    padding: 30px 20px;
  }
  
  .disclaimer-title {
    font-size: 1.6rem;
  }
}

@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(349, 31%, 41%);
    --secondary-color: hsl(349, 31%, 26%);
    --accent-color: hsl(349, 31%, 66%);
  }

  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: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .highlight {
    background-color: rgba(163, 63, 76, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
  }

@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(349, 31%, 41%);
    --secondary-color: hsl(349, 31%, 26%);
    --accent-color: hsl(349, 31%, 66%);
  }

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

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

  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 20px;
  }

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

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

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

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

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

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

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

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

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

  .contact-box {
    background: linear-gradient(135deg, var(--primary-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: white;
    text-decoration: underline;
  }

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

  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #dee2e6;
  }

  .section-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }