:root {
            --primary-color: hsl(239, 30%, 39%);
            --secondary-color: hsl(239, 30%, 24%);
            --accent-color: hsl(239, 30%, 64%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            color: var(--secondary-color);
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(91, 81, 130, 0.25);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
            }
        }

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

.about-section h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(239, 30%, 24%);
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: hsl(239, 30%, 39%);
}

.about-section h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(239, 30%, 39%);
  font-weight: 600;
  font-size: 1.8rem;
  margin-top: 35px;
  margin-bottom: 18px;
}

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

.about-image-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.about-image-wrapper:hover {
  transform: translateY(-5px);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.values-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  border-left: 4px solid hsl(239, 30%, 39%);
  transition: all 0.3s ease;
}

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

.values-card h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(239, 30%, 24%);
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.values-card p {
  color: #555;
  font-size: 0.98rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.mission-box {
  background: linear-gradient(135deg, hsl(239, 30%, 39%) 0%, hsl(239, 30%, 24%) 100%);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  margin: 40px 0;
}

.mission-box h3 {
  color: #fff;
  margin-top: 0;
}

.mission-box p {
  color: #f8f9fa;
  font-size: 1.08rem;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h2 {
    font-size: 2.2rem;
  }
  
  .about-section h3 {
    font-size: 1.5rem;
  }
  
  .mission-box {
    padding: 30px 20px;
  }
}

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

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

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

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

.filter-btn {
  font-family: 'Quicksand', sans-serif;
  padding: 10px 25px;
  border: 2px solid hsl(239, 30%, 39%);
  background: transparent;
  color: hsl(239, 30%, 39%);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: hsl(239, 30%, 39%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px 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;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  background: #ffffff;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px 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.1);
}

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

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

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

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

.portfolio-description {
  font-size: 0.9rem;
  color: #e0e0e0;
  line-height: 1.5;
  margin-bottom: 15px;
}

.view-details-btn {
  font-family: 'Quicksand', sans-serif;
  display: inline-block;
  padding: 8px 20px;
  background: hsl(239, 30%, 39%);
  color: #ffffff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
}

.view-details-btn:hover {
  background: hsl(239, 30%, 64%);
  color: #ffffff;
  transform: scale(1.05);
}

.modal-content {
  border-radius: 15px;
  border: none;
  font-family: 'Libre Baskerville', serif;
}

.modal-header {
  background: linear-gradient(135deg, hsl(239, 30%, 39%) 0%, hsl(239, 30%, 24%) 100%);
  color: #ffffff;
  border-radius: 15px 15px 0 0;
  padding: 25px 30px;
  border: none;
}

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

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

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

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

.modal-body p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.modal-body ul {
  list-style: none;
  padding-left: 0;
}

.modal-body ul li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.modal-body ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(239, 30%, 39%);
  font-weight: bold;
}

.project-meta {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.meta-item {
  flex: 1;
  min-width: 200px;
}

.meta-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(239, 30%, 39%);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.meta-value {
  color: #333;
  font-size: 1rem;
}

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

@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 18px;
    font-size: 0.9rem;
  }

  .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.9) 100%);
  }

  .modal-body {
    padding: 20px;
  }

  .project-meta {
    gap: 15px;
  }

  .meta-item {
    min-width: 100%;
  }
}

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

.advantages-section h2 {
    font-family: 'Quicksand', sans-serif;
    color: hsl(239, 30%, 24%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.advantages-section .section-subtitle {
    color: hsl(239, 30%, 39%);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(239, 30%, 39%), hsl(239, 30%, 64%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

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

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

.advantage-card h3 {
    font-family: 'Quicksand', sans-serif;
    color: hsl(239, 30%, 24%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.advantage-card p {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

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

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

  #statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(239, 30%, 39%) 0%, hsl(239, 30%, 24%) 100%);
    position: relative;
    overflow: hidden;
  }

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

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

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

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

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

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

  .stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(239, 30%, 64%), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

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

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(239, 30%, 64%), hsl(239, 30%, 54%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
  }

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

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

  .stat-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .stat-context {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-top: 10px;
  }

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

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

  .stat-card:nth-child(1) .stat-number { animation-delay: 0.1s; }
  .stat-card:nth-child(2) .stat-number { animation-delay: 0.2s; }
  .stat-card:nth-child(3) .stat-number { animation-delay: 0.3s; }
  .stat-card:nth-child(4) .stat-number { animation-delay: 0.4s; }
  .stat-card:nth-child(5) .stat-number { animation-delay: 0.5s; }
  .stat-card:nth-child(6) .stat-number { animation-delay: 0.6s; }
  .stat-card:nth-child(7) .stat-number { animation-delay: 0.7s; }
  .stat-card:nth-child(8) .stat-number { animation-delay: 0.8s; }
  .stat-card:nth-child(9) .stat-number { animation-delay: 0.9s; }

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

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

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

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

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

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

    .stat-icon {
      width: 60px;
      height: 60px;
      font-size: 1.8rem;
    }
  }

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

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

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

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

footer p, footer ul, footer a {
  font-size: 0.95rem;
  line-height: 1.8;
}

footer .company-description {
  color: #e8e8e8;
  margin-bottom: 25px;
}

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

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

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

footer a:hover {
  color: hsl(239, 30%, 80%);
  padding-left: 5px;
}

footer .contact-info i {
  width: 20px;
  margin-right: 8px;
  color: hsl(239, 30%, 64%);
}

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

footer .business-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

footer .business-hours p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

footer .business-hours p:last-child {
  margin-bottom: 0;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 4px solid hsl(239, 30%, 39%);
  animation: slideUp 0.5s ease;
}

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

#cookieNotice h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(239, 30%, 24%);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

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

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

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

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

#cookieNotice .cookie-category h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(239, 30%, 24%);
  margin-bottom: 5px;
  font-size: 1rem;
}

#cookieNotice .cookie-category p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #555555;
}

#cookieNotice .cookie-category .badge {
  font-size: 0.7rem;
  padding: 4px 8px;
  margin-left: 8px;
}

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

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

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

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

#cookieNotice .btn-manage {
  background: transparent;
  border: 2px solid hsl(239, 30%, 39%);
  color: hsl(239, 30%, 39%);
  padding: 10px 28px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

#cookieNotice .btn-manage:hover {
  background: hsl(239, 30%, 39%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(84, 72, 112, 0.3);
}

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

  footer .business-hours {
    text-align: left;
  }

  #cookieNotice {
    padding: 20px 0;
  }

  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject-optional,
  #cookieNotice .btn-manage {
    width: 100%;
    margin-right: 0;
  }
}

.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(239, 30%, 39%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Quicksand, sans-serif; color: hsl(239, 30%, 24%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(239, 30%, 39%); }
.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(239, 30%, 24%); font-family: Quicksand, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(239, 30%, 24%); font-family: Quicksand, sans-serif; }
.blog-article a { color: hsl(239, 30%, 39%); }
.blog-article a:hover { color: hsl(239, 30%, 64%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(239, 30%, 39%); 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-size: 2.5rem;
    font-weight: 700;
    color: hsl(239, 30%, 24%);
    margin-bottom: 1rem;
    text-align: center;
}

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

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: hsl(239, 30%, 95%);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(239, 30%, 39%) 0%, hsl(239, 30%, 24%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: #ffffff;
    font-size: 1.3rem;
}

.contact-info-content h5 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    color: hsl(239, 30%, 24%);
    margin-bottom: 8px;
    font-weight: 600;
}

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

.contact-info-content a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: hsl(239, 30%, 39%);
}

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

.contact-form-wrapper h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    color: hsl(239, 30%, 24%);
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.form-control:focus,
.form-select:focus {
    border-color: hsl(239, 30%, 39%);
    box-shadow: 0 0 0 0.2rem rgba(74, 62, 99, 0.15);
    outline: none;
    background: #ffffff;
}

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

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

.btn-submit {
    background: linear-gradient(135deg, hsl(239, 30%, 39%) 0%, hsl(239, 30%, 24%) 100%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 62, 99, 0.3);
    background: linear-gradient(135deg, hsl(239, 30%, 44%) 0%, hsl(239, 30%, 29%) 100%);
    color: #ffffff;
}

.working-hours {
    background: linear-gradient(135deg, hsl(239, 30%, 39%) 0%, hsl(239, 30%, 24%) 100%);
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

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

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

.working-hours-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #ffffff;
}

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

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

.working-hours-list .hours {
    color: rgba(255,255,255,0.9);
}

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

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

@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(239, 30%, 39%);
    --secondary-color: hsl(239, 30%, 24%);
    --accent-color: hsl(239, 30%, 64%);
  }

  body {
    font-family: 'Libre Baskerville', serif;
    color: var(--secondary-color);
    line-height: 1.8;
  }

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

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

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

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

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

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

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

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

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

  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
  }

  .policy-header h1 {
    color: white;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 1rem;
  }

  .last-updated {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 2rem;
  }

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

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

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

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

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

  .cookie-table {
    margin: 2rem 0;
  }

  .cookie-table table {
    border-color: var(--accent-color);
  }

  .cookie-table thead {
    background-color: var(--primary-color);
    color: white;
  }

  .cookie-table tbody tr:hover {
    background-color: #f8f9fa;
  }

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

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

.faq-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(239, 30%, 24%);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.faq-section .lead-text {
  font-family: 'Libre Baskerville', serif;
  color: #555;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s ease;
}

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

.accordion-button {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(239, 30%, 24%);
  background-color: #ffffff;
  font-size: 1.1rem;
  padding: 1.25rem 1.5rem;
  border: none;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: hsl(239, 30%, 39%);
  color: #ffffff;
  box-shadow: none;
}

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

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23454961'%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 {
  font-family: 'Libre Baskerville', serif;
  color: #333;
  padding: 1.5rem;
  background-color: #fafbfc;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

.accordion-body strong {
  color: hsl(239, 30%, 39%);
  font-weight: 700;
}

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

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

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

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(239, 30%, 39%) 0%, hsl(239, 30%, 24%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(239, 30%, 64%);
  opacity: 0.1;
  border-radius: 50%;
}

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

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

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

.newsletter-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.newsletter-email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 20px;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  border: 2px solid hsl(239, 30%, 64%);
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #333;
  background: #ffffff;
}

.newsletter-email-input:focus {
  outline: none;
  border-color: hsl(239, 30%, 39%);
  box-shadow: 0 0 0 4px rgba(84, 75, 113, 0.1);
}

.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: #ffffff;
  background: hsl(239, 30%, 39%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: hsl(239, 30%, 24%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.newsletter-benefit-icon {
  width: 24px;
  height: 24px;
  background: hsl(239, 30%, 39%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  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-form {
    padding: 30px 20px;
  }

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

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

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

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

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

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

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

  .hero-section {
    background: linear-gradient(135deg, hsl(239, 30%, 39%) 0%, hsl(239, 30%, 24%) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="300" cy="200" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="500" cy="150" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="700" cy="250" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="180" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="1100" cy="220" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
  }

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

  .hero-section h1 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }

  .hero-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: #f8f9fa;
    margin-bottom: 2rem;
    line-height: 1.4;
  }

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

  .hero-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-bottom: 3rem;
  }

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

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

  .advantages-list li {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: #ffffff;
    padding: 0.9rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
    border-left: 3px solid hsl(239, 30%, 64%);
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding-right: 1rem;
  }

  .advantages-list li::before {
    content: '\f26b';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(239, 30%, 64%);
    font-size: 1.2rem;
  }

  .hero-cta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
  }

  .btn-hero-primary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background: hsl(239, 30%, 64%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(239, 30%, 64%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .btn-hero-primary:hover {
    background: hsl(239, 30%, 54%);
    border-color: hsl(239, 30%, 54%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #ffffff;
  }

  .btn-hero-secondary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background: transparent;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
  }

  .btn-hero-secondary:hover {
    background: #ffffff;
    color: hsl(239, 30%, 39%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
  }

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

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

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

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

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

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

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

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

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

.offer-section {
  background: linear-gradient(135deg, hsl(239, 30%, 39%) 0%, hsl(239, 30%, 24%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.offer-heading {
  font-family: 'Quicksand', sans-serif;
  color: #fff;
  font-size: 3rem;
  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: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.deadline-wrapper {
  background: linear-gradient(135deg, hsl(239, 30%, 64%) 0%, hsl(239, 30%, 39%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

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

.calendar-icon {
  font-size: 3rem;
}

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

.benefits-list li {
  font-family: 'Libre Baskerville', serif;
  color: #333;
  font-size: 1.05rem;
  padding: 18px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.benefit-icon {
  color: hsl(239, 30%, 39%);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.discount-badge {
  background: hsl(239, 30%, 39%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 30px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

  .deadline-date {
    font-size: 2.5rem;
    flex-direction: column;
    gap: 10px;
  }

  .calendar-icon {
    font-size: 2.5rem;
  }

  .discount-badge {
    font-size: 2rem;
    width: 120px;
    height: 120px;
    padding: 20px;
  }

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

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

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

  .services-section h2 {
    font-family: 'Quicksand', sans-serif;
    color: hsl(239, 30%, 24%);
    font-size: 2.8rem;
    font-weight: 700;
    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;
  }

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

  .nav-tabs .nav-link {
    font-family: 'Quicksand', sans-serif;
    color: hsl(239, 30%, 39%);
    background: #ffffff;
    border: 2px solid hsl(239, 30%, 64%);
    border-radius: 25px;
    padding: 12px 28px;
    margin: 0 0.3rem 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  .nav-tabs .nav-link:hover {
    background: hsl(239, 30%, 64%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }

  .nav-tabs .nav-link.active {
    background: hsl(239, 30%, 39%);
    color: #ffffff;
    border-color: hsl(239, 30%, 39%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }

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

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: hsl(239, 30%, 64%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(239, 30%, 39%) 0%, hsl(239, 30%, 24%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(239, 30%, 64%) 0%, hsl(239, 30%, 39%) 100%);
  }

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

  .service-card h3 {
    font-family: 'Quicksand', sans-serif;
    color: hsl(239, 30%, 24%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

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

  .service-details {
    border-top: 2px solid #f0f0f0;
    padding-top: 1.5rem;
    margin-top: auto;
  }

  .service-price {
    font-family: 'Quicksand', sans-serif;
    color: hsl(239, 30%, 39%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .service-duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .service-duration i {
    color: hsl(239, 30%, 64%);
  }

  .service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
  }

  .service-features li {
    color: #555;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .service-features li i {
    color: hsl(239, 30%, 64%);
    font-size: 0.8rem;
  }

  .btn-service {
    background: hsl(239, 30%, 39%);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
  }

  .btn-service:hover {
    background: hsl(239, 30%, 24%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: #ffffff;
  }

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

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

    .nav-tabs .nav-link {
      padding: 10px 20px;
      font-size: 0.9rem;
    }

    .service-card {
      padding: 1.5rem;
    }

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

    .service-icon i {
      font-size: 1.5rem;
    }
  }

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

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(239, 30%, 64%);
  opacity: 0.05;
  border-radius: 50%;
}

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

.section-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  color: hsl(239, 30%, 24%);
  font-weight: 700;
  margin-bottom: 15px;
}

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  border-left: 4px solid hsl(239, 30%, 64%);
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(239, 30%, 39%) 0%, hsl(239, 30%, 24%) 100%);
  border-left: 4px solid hsl(239, 30%, 64%);
  color: #ffffff;
}

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

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

.testimonial-card.featured .customer-location {
  color: hsl(239, 30%, 64%);
}

.testimonial-card.compact {
  padding: 25px;
  background: #f8f9fa;
  border-left: 4px solid hsl(239, 30%, 39%);
}

.testimonial-card.detailed {
  padding: 35px;
  background: #ffffff;
  border: 2px solid hsl(239, 30%, 64%);
  border-left: 6px solid hsl(239, 30%, 39%);
}

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

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

.star.empty {
  color: #ddd;
}

.testimonial-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-text.short {
  font-size: 1rem;
  margin-bottom: 15px;
}

.testimonial-text.long {
  font-size: 0.9rem;
  line-height: 1.8;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.testimonial-card.featured .customer-info {
  border-top: 1px solid rgba(255,255,255,0.2);
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: hsl(239, 30%, 64%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(239, 30%, 39%);
}

.customer-details {
  flex: 1;
}

.customer-name {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: hsl(239, 30%, 24%);
  margin-bottom: 3px;
}

.customer-location {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.85rem;
  color: #777;
}

.testimonial-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: hsl(239, 30%, 64%);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
}

.testimonial-card.featured .testimonial-badge {
  background: #ffffff;
  color: hsl(239, 30%, 39%);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
}

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

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

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

  #credentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, hsl(239, 30%, 64%), transparent);
  }

  .credentials-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: hsl(239, 30%, 24%);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
  }

  .credentials-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: hsl(239, 30%, 39%);
  }

  .credential-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    border-color: hsl(239, 30%, 64%);
  }

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

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

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

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

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

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

    .credential-text {
      font-size: 0.9rem;
    }
  }

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

  .blog-preview-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(239, 30%, 64%, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .blog-preview-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }

  .blog-preview-section .section-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: hsl(239, 30%, 39%);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .blog-preview-section .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(239, 30%, 24%);
    margin-bottom: 20px;
    line-height: 1.3;
  }

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

  .blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
  }

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

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

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

  .blog-card:hover .blog-card-image img {
    transform: scale(1.08);
  }

  .blog-card-meta {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 12px;
    z-index: 3;
  }

  .blog-meta-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.75rem;
    color: hsl(239, 30%, 24%);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blog-meta-badge i {
    font-size: 0.85rem;
    color: hsl(239, 30%, 39%);
  }

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

  .blog-card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(239, 30%, 24%);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  .blog-card:hover .blog-card-title {
    color: hsl(239, 30%, 39%);
  }

  .blog-card-excerpt {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
  }

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

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

  .blog-read-more:hover {
    color: hsl(239, 30%, 24%);
    gap: 12px;
  }

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

  .blog-cta-wrapper {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
  }

  .blog-view-all-btn {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, hsl(239, 30%, 39%) 0%, hsl(239, 30%, 24%) 100%);
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    border: none;
  }

  .blog-view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    gap: 16px;
  }

  .blog-view-all-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
  }

  .blog-view-all-btn:hover i {
    transform: translateX(4px);
  }

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

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

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

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

    .blog-preview-section .section-title {
      font-size: 1.75rem;
    }

    .blog-preview-section .section-description {
      font-size: 1rem;
    }

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

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

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

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

.disclaimer-section .container {
  max-width: 900px;
}

.disclaimer-icon {
  width: 80px;
  height: 80px;
  background: hsl(239, 30%, 39%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.disclaimer-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(239, 30%, 24%);
  text-align: center;
  margin-bottom: 40px;
}

.disclaimer-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(239, 30%, 39%);
}

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

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

  .disclaimer-title {
    font-size: 2rem;
  }

  .disclaimer-content {
    padding: 30px 20px;
  }

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

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

  .disclaimer-text {
    font-size: 0.95rem;
    text-align: left;
  }
}

@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(239, 30%, 39%);
    --secondary-color: hsl(239, 30%, 24%);
    --accent-color: hsl(239, 30%, 64%);
  }

  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: var(--secondary-color);
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

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

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

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

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

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

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

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

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

  .info-box {
    background-color: hsl(239, 30%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

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

  .contact-section h3 {
    color: white;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
  }

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

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

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

  .section-number {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 0.5rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
  }

@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(239, 30%, 39%);
    --secondary-color: hsl(239, 30%, 24%);
    --accent-color: hsl(239, 30%, 64%);
  }

  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: var(--secondary-color);
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

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

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

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

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

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

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

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

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

  .info-box {
    background-color: hsl(239, 30%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

  .info-box strong {
    color: var(--primary-color);
    font-family: 'Quicksand', sans-serif;
  }

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

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