:root {
            --primary-color: hsl(295, 38%, 44%);
            --secondary-color: hsl(295, 38%, 29%);
            --accent-color: hsl(295, 38%, 69%);
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(147, 73, 129, 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%28147, 73, 129, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(295, 38%, 44%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-section h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(295, 38%, 29%);
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
}

.about-content {
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-image {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.values-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 1rem;
  color: #555;
}

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

.values-list strong {
  color: hsl(295, 38%, 44%);
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
}

.highlight-box {
  background: hsl(295, 38%, 69%, 0.1);
  border-left: 4px solid hsl(295, 38%, 44%);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.highlight-box p {
  margin: 0;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
}

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

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

  .portfolio-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(295, 38%, 29%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(295, 38%, 44%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

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

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

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

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

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
  }

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

  .portfolio-content {
    padding: 25px;
  }

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

  .portfolio-title {
    font-family: 'Quicksand', sans-serif;
    color: #222;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
  }

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

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

  .view-details-btn:hover {
    color: hsl(295, 38%, 29%);
    gap: 12px;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(295, 38%, 44%) 0%, hsl(295, 38%, 29%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
    border: none;
  }

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

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

  .modal-body {
    padding: 35px;
  }

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

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

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

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

  .project-details h5 {
    font-family: 'Quicksand', sans-serif;
    color: hsl(295, 38%, 29%);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .project-details ul {
    font-family: 'Libre Baskerville', serif;
    color: #555;
    line-height: 1.9;
    padding-left: 20px;
  }

  .project-details li {
    margin-bottom: 8px;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

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

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

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(295, 38%, 69%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

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

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

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

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

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

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    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;
    position: relative;
    overflow: hidden;
  }

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: hsl(295, 38%, 69%);
  }

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

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

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

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

  #advantages .advantage-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
  }

  #advantages .advantage-card:hover .advantage-title {
    color: hsl(295, 38%, 44%);
  }

  #advantages .advantage-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

  #statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #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(295, 38%, 44%) 0%, hsl(295, 38%, 69%) 100%);
  }

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

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

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

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

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

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(295, 38%, 44%) 0%, hsl(295, 38%, 69%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: hsl(295, 38%, 69%);
  }

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

  #statistics .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(295, 38%, 44%) 0%, hsl(295, 38%, 29%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s ease;
  }

  #statistics .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(295, 38%, 69%) 0%, hsl(295, 38%, 44%) 100%);
  }

  #statistics .stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(295, 38%, 44%);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  #statistics .stat-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    font-weight: 400;
  }

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

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

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

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

    #statistics .stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    #statistics .stat-card {
      padding: 30px 20px;
    }

    #statistics .stat-number {
      font-size: 2.3rem;
    }

    #statistics .stat-icon {
      width: 60px;
      height: 60px;
      font-size: 1.7rem;
    }
  }

  @media (max-width: 576px) {
    #statistics .stats-grid {
      grid-template-columns: 1fr;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(295, 38%, 29%) 0%, hsl(295, 38%, 44%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Libre Baskerville', serif;
}

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

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: color 0.3s ease;
}

footer a:hover {
  color: hsl(295, 38%, 69%);
}

footer .contact-info i {
  width: 24px;
  color: hsl(295, 38%, 69%);
  margin-right: 8px;
}

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: 20px;
  text-align: center;
}

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

#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(295, 38%, 44%);
  font-family: 'Libre Baskerville', serif;
}

#cookieNotice h5 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(295, 38%, 29%);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

#cookieNotice p {
  color: #333333;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

#cookieNotice .cookie-category strong {
  color: hsl(295, 38%, 29%);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}

#cookieNotice .cookie-category span {
  color: #666666;
  font-size: 0.85rem;
}

#cookieNotice .badge {
  font-size: 0.7rem;
  padding: 3px 8px;
  margin-left: 8px;
  font-weight: 500;
}

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

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

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

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

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

#cookieNotice .btn-manage:hover {
  background: hsl(295, 38%, 44%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 74, 126, 0.3);
}

#cookieNotice .cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

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

  footer h5 {
    font-size: 1.1rem;
    margin-top: 25px;
  }

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

  #cookieNotice {
    padding: 20px 0;
  }

  #cookieNotice h5 {
    font-size: 1.2rem;
  }

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

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

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

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Libre Baskerville, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(295, 38%, 44%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Quicksand, sans-serif; color: hsl(295, 38%, 29%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(295, 38%, 44%); }
.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(295, 38%, 29%); font-family: Quicksand, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(295, 38%, 29%); font-family: Quicksand, sans-serif; }
.blog-article a { color: hsl(295, 38%, 44%); }
.blog-article a:hover { color: hsl(295, 38%, 69%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(295, 38%, 44%); 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: 'Libre Baskerville', serif;
}

.contact-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(295, 38%, 29%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section .section-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: hsl(295, 38%, 44%);
    box-shadow: 0 0 0 0.2rem rgba(152, 77, 135, 0.15);
}

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

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

.contact-form .btn-submit:hover {
    background: hsl(295, 38%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(152, 77, 135, 0.3);
}

.contact-info-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(295, 38%, 29%);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: hsl(295, 38%, 69%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 18px;
}

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

.contact-info-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.contact-info-content p {
    color: #555;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-content a {
    color: hsl(295, 38%, 44%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: hsl(295, 38%, 29%);
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0;
}

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

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

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
    }
}

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

  :root {
    --primary-color: hsl(295, 38%, 44%);
    --secondary-color: hsl(295, 38%, 29%);
    --accent-color: hsl(295, 38%, 69%);
  }

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

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

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

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .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 p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }

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

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

  .info-box {
    background-color: rgba(295, 38%, 69%, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

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

  .contact-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
  }

  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }

  .contact-item i {
    margin-right: 1rem;
    color: var(--primary-color);
  }

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

  .cookie-type-card {
    background-color: #f8f9fa;
    border-left: 3px solid var(--accent-color);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
  }

  .cookie-type-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
  }

  strong {
    color: var(--secondary-color);
  }

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

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

.faq-section .section-subtitle {
    font-family: 'Quicksand', sans-serif;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

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

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

.accordion-button {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: hsl(295, 38%, 29%);
    background: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    text-align: left;
}

.accordion-button:not(.collapsed) {
    background: hsl(295, 38%, 44%);
    color: #ffffff;
    box-shadow: none;
}

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

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

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

.accordion-body {
    padding: 1.5rem;
    color: #333;
    line-height: 1.8;
    font-size: 0.95rem;
    background: #ffffff;
}

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

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

.accordion-body strong {
    color: hsl(295, 38%, 44%);
    font-weight: 600;
}

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

.accordion-body li {
    margin-bottom: 0.5rem;
}

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(295, 38%, 44%) 0%, hsl(295, 38%, 29%) 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%;
}

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

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

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

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

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

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

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

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

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

.newsletter-submit-btn {
    padding: 16px 40px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(295, 38%, 44%);
    background: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    background: hsl(295, 38%, 69%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .hero-section {
    background-color: #ffffff;
    padding: 80px 0 100px;
    font-family: 'Libre Baskerville', serif;
    color: #333;
  }

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

  .hero-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: hsl(295, 38%, 44%);
    margin-bottom: 30px;
  }

  .hero-section .description {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 35px;
    text-align: left;
  }

  .hero-image-wrapper {
    margin: 40px 0;
    text-align: center;
  }

  .hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

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

  .advantages-list li {
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }

  .advantages-list li::before {
    content: "\F26B";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(295, 38%, 44%);
    font-size: 1.3rem;
    top: 10px;
  }

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

  .btn-primary-custom {
    background-color: hsl(295, 38%, 44%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  }

  .btn-primary-custom:hover {
    background-color: hsl(295, 38%, 29%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  }

  .btn-secondary-custom {
    background-color: transparent;
    color: hsl(295, 38%, 44%);
    border: 2px solid hsl(295, 38%, 44%);
    padding: 12px 30px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-secondary-custom:hover {
    background-color: hsl(295, 38%, 44%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  }

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

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

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

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

    .btn-primary-custom,
    .btn-secondary-custom {
      width: 100%;
      text-align: center;
    }
  }

.offer-section {
  background: linear-gradient(135deg, hsl(295, 38%, 44%) 0%, hsl(295, 38%, 29%) 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-content {
  position: relative;
  z-index: 2;
}

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

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

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

.deadline-block {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 35px 40px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.deadline-date {
  font-family: 'Quicksand', sans-serif;
  color: hsl(295, 38%, 44%);
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: hsl(295, 38%, 44%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  color: #fff;
}

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

.benefit-icon {
  width: 50px;
  height: 50px;
  background: hsl(295, 38%, 69%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #222;
  font-size: 1.5rem;
}

.benefit-text {
  flex: 1;
  padding-top: 8px;
}

.benefit-text h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.benefit-text p {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: #f8f9fa;
}

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

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

.offer-btn:hover {
  background: hsl(295, 38%, 69%);
  color: #222;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.discount-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: hsl(295, 38%, 69%);
  color: #222;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.discount-badge .percentage {
  font-size: 2.5rem;
  line-height: 1;
}

.discount-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
}

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

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

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

  .deadline-date {
    font-size: 2rem;
    flex-direction: column;
    text-align: center;
  }

  .calendar-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .deadline-block {
    padding: 25px 20px;
  }

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

  .benefit-item {
    flex-direction: column;
    gap: 15px;
  }

  .benefit-text h4 {
    font-size: 1.1rem;
  }

  .discount-badge {
    width: 90px;
    height: 90px;
    top: 20px;
    right: 20px;
  }

  .discount-badge .percentage {
    font-size: 2rem;
  }

  .discount-badge .text {
    font-size: 0.75rem;
  }

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

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

.services-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(295, 38%, 29%);
    margin-bottom: 1rem;
    text-align: center;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: hsl(295, 38%, 69%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(295, 38%, 44%) 0%, hsl(295, 38%, 29%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(295, 38%, 69%) 0%, hsl(295, 38%, 44%) 100%);
}

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

.service-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(295, 38%, 29%);
    margin-bottom: 1rem;
    text-align: center;
}

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

.service-price {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(295, 38%, 44%);
    text-align: center;
    margin-bottom: 1rem;
}

.service-terms {
    background: hsl(295, 38%, 95%);
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
}

.service-terms strong {
    color: hsl(295, 38%, 29%);
    font-weight: 600;
}

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

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

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

.testimonials-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: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(295, 38%, 44%) 0%, hsl(295, 38%, 29%) 100%);
  color: #ffffff;
}

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

.testimonial-card.featured .stars {
  color: #ffd700;
}

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

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(295, 38%, 69%) 0%, hsl(295, 38%, 44%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(295, 38%, 44%);
}

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

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

.customer-location {
  color: #666;
  font-size: 0.9rem;
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

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

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

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

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

.testimonial-badge {
  display: inline-block;
  background: hsl(295, 38%, 69%);
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 15px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}

.testimonial-card.featured .testimonial-badge {
  background: #ffffff;
  color: hsl(295, 38%, 44%);
}

.rating-summary {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.rating-number {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(295, 38%, 44%);
  margin-bottom: 10px;
}

.rating-stars {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.rating-count {
  color: #666;
  font-size: 0.95rem;
}

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

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

  .testimonial-card {
    padding: 25px;
  }

  .customer-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .rating-summary {
    padding: 30px 20px;
  }

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

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

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

  .credential-card {
    background: #fff;
    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;
  }

  .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: 15px;
  }

  .credential-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

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

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

    .credential-card {
      padding: 20px 10px;
    }

    .credential-icon {
      font-size: 2rem;
    }
  }

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

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

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

  #blog .section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

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

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

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

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

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

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

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

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

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

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

  #blog .blog-meta-icon {
    color: hsl(295, 38%, 44%);
    font-size: 0.9rem;
  }

  #blog .blog-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  #blog .blog-card:hover .blog-title {
    color: hsl(295, 38%, 44%);
  }

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

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

  #blog .blog-link:hover {
    color: hsl(295, 38%, 29%);
    gap: 12px;
  }

  #blog .blog-link-arrow {
    transition: transform 0.3s ease;
  }

  #blog .blog-link:hover .blog-link-arrow {
    transform: translateX(4px);
  }

  #blog .view-all-wrapper {
    text-align: center;
    margin-top: 50px;
  }

  #blog .btn-view-all {
    display: inline-block;
    padding: 16px 45px;
    background: hsl(295, 38%, 44%);
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(123, 68, 116, 0.3);
  }

  #blog .btn-view-all:hover {
    background: hsl(295, 38%, 29%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 68, 116, 0.4);
    color: #ffffff;
  }

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

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

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

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

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

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

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

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

.disclaimer-section .section-icon {
  font-size: 3rem;
  color: hsl(295, 38%, 44%);
  margin-bottom: 1.5rem;
}

.disclaimer-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.disclaimer-section .disclaimer-box {
  background: #ffffff;
  border-left: 4px solid hsl(295, 38%, 44%);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-section .disclaimer-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  text-align: left;
}

.disclaimer-section .disclaimer-text p {
  margin-bottom: 1.2rem;
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-section h2 {
    font-size: 2rem;
  }
  
  .disclaimer-section .disclaimer-box {
    padding: 1.5rem;
  }
  
  .disclaimer-section .disclaimer-text {
    font-size: 0.95rem;
  }
}

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

  :root {
    --primary-color: hsl(295, 38%, 44%);
    --secondary-color: hsl(295, 38%, 29%);
    --accent-color: hsl(295, 38%, 69%);
  }

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

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

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

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }

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

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

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

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

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

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

  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
  }

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

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

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

  .contact-box a:hover {
    opacity: 0.8;
  }

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

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

  :root {
    --primary-color: hsl(295, 38%, 44%);
    --secondary-color: hsl(295, 38%, 29%);
    --accent-color: hsl(295, 38%, 69%);
  }

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

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

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

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

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

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 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: linear-gradient(135deg, var(--accent-color) 0%, hsl(295, 38%, 85%) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
  }

  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }

  .section-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

:root {
    --primary: hsl(295, 38%, 44%);
    --secondary: hsl(295, 38%, 29%);
    --accent: hsl(295, 38%, 69%);
  }

  .thank-you-section {
    font-family: 'Libre Baskerville', serif;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(295, 38%, 44%, 0.03) 0%, rgba(295, 38%, 69%, 0.05) 100%);
  }

  .thank-you-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
    max-width: 650px;
    text-align: center;
    border: 1px solid rgba(295, 38%, 69%, 0.2);
  }

  .success-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
  }

  .success-checkmark {
    width: 60px;
    height: 60px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: drawCheck 0.8s ease-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }

  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes drawCheck {
    to {
      stroke-dashoffset: 0;
    }
  }

  .thank-you-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .thank-you-subheading {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
  }

  .thank-you-message {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .thank-you-message strong {
    color: var(--secondary);
    font-weight: 600;
  }

  .info-boxes {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .info-box {
    flex: 1;
    min-width: 200px;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(295, 38%, 69%, 0.1) 0%, rgba(295, 38%, 44%, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid var(--accent);
  }

  .info-box-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
  }

  .info-box-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
  }

  .info-box-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
  }

  .btn-home {
    font-family: 'Quicksand', sans-serif;
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(295, 38%, 44%, 0.3);
  }

  .btn-home:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(295, 38%, 44%, 0.4);
    color: white;
  }

  @media (max-width: 768px) {
    .thank-you-card {
      padding: 40px 25px;
    }

    .thank-you-heading {
      font-size: 2.2rem;
    }

    .thank-you-subheading {
      font-size: 1.2rem;
    }

    .thank-you-message {
      font-size: 1rem;
    }

    .success-icon-wrapper {
      width: 100px;
      height: 100px;
    }

    .success-checkmark {
      width: 50px;
      height: 50px;
    }

    .info-boxes {
      flex-direction: column;
      gap: 15px;
    }

    .info-box {
      min-width: 100%;
    }

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