:root {
            --primary-color: hsl(188, 41%, 40%);
            --secondary-color: hsl(188, 41%, 25%);
            --accent-color: hsl(188, 41%, 65%);
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.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: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .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%2851, 51, 51, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

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

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

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

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

  #about .story-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin-bottom: 50px;
  }

  #about .story-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    color: hsl(188, 41%, 25%);
    margin-bottom: 25px;
    font-weight: 600;
  }

  #about .story-content p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
  }

  #about .story-content p:last-child {
    margin-bottom: 0;
  }

  #about .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    margin-bottom: 30px;
    height: 100%;
  }

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

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

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

  #about .value-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    border-left: 5px solid hsl(188, 41%, 40%);
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
  }

  #about .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-left-color: hsl(188, 41%, 65%);
  }

  #about .value-card h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    color: hsl(188, 41%, 25%);
    margin-bottom: 15px;
    font-weight: 600;
  }

  #about .value-card p {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
  }

  #about .mission-vision {
    background: linear-gradient(135deg, hsl(188, 41%, 40%) 0%, hsl(188, 41%, 25%) 100%);
    padding: 60px;
    border-radius: 12px;
    margin-top: 50px;
    color: #ffffff;
  }

  #about .mission-vision h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
  }

  #about .mission-vision p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: #f8f9fa;
    line-height: 1.9;
    margin-bottom: 30px;
  }

  #about .mission-vision .row:last-child {
    margin-bottom: 0;
  }

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

    #about .section-header h2 {
      font-size: 2rem;
    }

    #about .story-content {
      padding: 30px 20px;
    }

    #about .story-content h3 {
      font-size: 1.6rem;
    }

    #about .mission-vision {
      padding: 40px 25px;
    }

    #about .mission-vision h3 {
      font-size: 1.6rem;
    }

    #about .value-card {
      padding: 25px 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: #222;
    margin-bottom: 1rem;
    text-align: center;
}

.portfolio-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
    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(188, 41%, 40%);
    background: transparent;
    color: hsl(188, 41%, 40%);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: hsl(188, 41%, 40%);
    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(350px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

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

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px 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%, rgba(0,0,0,0.3) 60%, transparent 100%);
    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;
    font-size: 0.85rem;
    color: hsl(188, 41%, 40%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

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

.portfolio-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.view-details-btn:hover {
    background: hsl(188, 41%, 25%);
    color: #fff;
    transform: translateX(5px);
}

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

.modal-header {
    background: linear-gradient(135deg, hsl(188, 41%, 40%) 0%, hsl(188, 41%, 25%) 100%);
    color: #fff;
    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;
}

.modal-project-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
}

.modal-category {
    font-family: 'Quicksand', sans-serif;
    display: inline-block;
    padding: 6px 16px;
    background: hsl(188, 41%, 65%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.project-details-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 0.95rem;
}

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

.project-details-list strong {
    font-family: 'Quicksand', sans-serif;
    color: #222;
    font-weight: 600;
    margin-right: 10px;
}

.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 20px;
        font-size: 0.9rem;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-section h2 {
        font-size: 1.75rem;
    }
    
    .portfolio-intro {
        font-size: 1rem;
    }
    
    .portfolio-content {
        padding: 20px;
    }
    
    .portfolio-title {
        font-size: 1.2rem;
    }
}

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

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

.advantages-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(188, 41%, 40%);
    opacity: 0.03;
    border-radius: 50%;
    z-index: 0;
}

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

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

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

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

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

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

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: hsl(188, 41%, 65%);
}

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

.advantage-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    transform: scale(1);
    transition: transform 0.4s ease;
}

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

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

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

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

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

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

@media (max-width: 991px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantages-header h2 {
        font-size: 2.2rem;
    }
    
    .advantages-header p {
        font-size: 1rem;
    }
    
    .advantage-card {
        padding: 35px 25px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .advantages-header h2 {
        font-size: 1.9rem;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
    }
    
    .advantage-icon i {
        font-size: 2rem;
    }
    
    .advantage-card h3 {
        font-size: 1.25rem;
    }
}

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(188, 41%, 40%) 0%, hsl(188, 41%, 65%) 100%);
  }

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

  .statistics-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(188, 41%, 25%);
    margin-bottom: 20px;
  }

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

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

  .stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: hsl(188, 41%, 40%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

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

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

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(188, 41%, 40%) 0%, hsl(188, 41%, 65%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

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

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

  .stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(188, 41%, 25%);
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
  }

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

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

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

  .stat-card.animate .stat-number {
    animation: countUp 0.6s ease-out;
  }

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

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

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

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

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

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(188, 41%, 25%) 0%, hsl(188, 41%, 30%) 100%);
  color: #f8f9fa;
  padding: 60px 0 0;
  margin-top: 80px;
  font-family: 'Libre Baskerville', serif;
}

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

footer p, footer li, footer a {
  color: #e8eef1;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

footer a:hover {
  color: hsl(188, 41%, 65%);
  padding-left: 5px;
}

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

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

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

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

.contact-info-item i {
  color: hsl(188, 41%, 65%);
  margin-right: 12px;
  margin-top: 3px;
  font-size: 1.1rem;
}

.footer-bottom {
  background: hsl(188, 41%, 20%);
  padding: 25px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #d1dce0;
}

.footer-links a {
  color: #e8eef1;
  margin: 0 15px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: hsl(188, 41%, 65%);
  padding-left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.cookie-category-desc {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
}

.cookie-required {
  display: inline-block;
  background: hsl(188, 41%, 40%);
  color: #fff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-left: 10px;
  font-family: 'Quicksand', sans-serif;
}

.cookie-optional {
  display: inline-block;
  background: #6c757d;
  color: #fff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-left: 10px;
  font-family: 'Quicksand', sans-serif;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

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

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

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

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

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

.btn-manage:hover {
  background: hsl(188, 41%, 40%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(71, 130, 130, 0.3);
}

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

  footer h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

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

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .footer-links a {
    margin: 0;
  }

  #cookieNotice {
    padding: 20px 0;
  }

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

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

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

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

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

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

  #contact .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(188, 41%, 25%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

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

  #contact .form-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(188, 41%, 25%);
    margin-bottom: 30px;
  }

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

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

  #contact .form-control:focus,
  #contact .form-select:focus {
    border-color: hsl(188, 41%, 40%);
    box-shadow: 0 0 0 0.2rem rgba(70, 130, 130, 0.15);
    outline: none;
  }

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

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

  #contact .btn-submit:hover {
    background: hsl(188, 41%, 25%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(70, 130, 130, 0.3);
  }

  #contact .contact-info-wrapper {
    background: hsl(188, 41%, 25%);
    padding: 50px;
    border-radius: 12px;
    color: #ffffff;
    height: 100%;
  }

  #contact .info-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
  }

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

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

  #contact .contact-icon {
    width: 50px;
    height: 50px;
    background: hsl(188, 41%, 40%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
  }

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

  #contact .contact-details h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(188, 41%, 65%);
    margin-bottom: 8px;
  }

  #contact .contact-details p {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
  }

  #contact .contact-details a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #contact .contact-details a:hover {
    color: hsl(188, 41%, 65%);
  }

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

  #contact .working-hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
  }

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

  #contact .day {
    font-weight: 600;
  }

  #contact .time {
    color: hsl(188, 41%, 65%);
  }

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

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

    #contact .contact-form-wrapper,
    #contact .contact-info-wrapper {
      padding: 40px 30px;
      margin-bottom: 30px;
    }

    #contact .form-title,
    #contact .info-title {
      font-size: 1.5rem;
    }
  }

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

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

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

    #contact .contact-form-wrapper,
    #contact .contact-info-wrapper {
      padding: 30px 20px;
    }

    #contact .btn-submit {
      padding: 12px 40px;
      font-size: 1rem;
    }
  }

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

  :root {
    --primary-color: hsl(188, 41%, 40%);
    --secondary-color: hsl(188, 41%, 25%);
    --accent-color: hsl(188, 41%, 65%);
  }

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

  .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: 1.75rem;
    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(--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-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

  .effective-date {
    background-color: hsl(188, 41%, 95%);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    font-style: italic;
  }

  .contact-box {
    background-color: hsl(188, 41%, 97%);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
  }

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

  .cookie-type-card h3 {
    margin-top: 0;
    color: var(--primary-color);
  }

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

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

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

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

  .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }

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

  .accordion-button {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: hsl(188, 41%, 25%);
    background-color: #ffffff;
    padding: 1.3rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
  }

  .accordion-button:not(.collapsed) {
    background-color: hsl(188, 41%, 40%);
    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='%23458a8a'%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;
    background-color: #ffffff;
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
  }

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

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

  .accordion-body ul {
    margin: 0.8rem 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: 2.2rem;
    }

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

    .accordion-button {
      font-size: 1.05rem;
      padding: 1.1rem 1.2rem;
    }

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(188, 41%, 40%) 0%, hsl(188, 41%, 25%) 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;
    max-width: 700px;
    margin: 0 auto 40px;
    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: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
}

.newsletter-email-input:focus {
    outline: none;
    border-color: hsl(188, 41%, 65%);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.newsletter-submit-btn:hover {
    background: hsl(188, 41%, 65%);
    border-color: hsl(188, 41%, 65%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.newsletter-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f8f9fa;
    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-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-input-group {
        flex-direction: column;
    }

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

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

    .newsletter-benefits {
        gap: 20px;
    }

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

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

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

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

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

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  padding-right: 20px;
}

.hero-text h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(188, 41%, 40%);
  margin-bottom: 25px;
}

.hero-description {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
  text-align: justify;
}

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

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

.hero-advantages li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: hsl(188, 41%, 40%);
  font-size: 1.2rem;
}

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

.btn-hero-primary {
  font-family: 'Quicksand', sans-serif;
  background-color: hsl(188, 41%, 40%);
  color: #ffffff;
  padding: 14px 35px;
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-hero-primary:hover {
  background-color: hsl(188, 41%, 25%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-hero-secondary {
  font-family: 'Quicksand', sans-serif;
  background-color: transparent;
  color: hsl(188, 41%, 40%);
  padding: 14px 35px;
  border: 2px solid hsl(188, 41%, 40%);
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background-color: hsl(188, 41%, 40%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  object-fit: cover;
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-text {
    padding-right: 0;
  }

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

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

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

  .hero-text h1 {
    font-size: 2rem;
  }

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

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

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

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

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

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

  .services-section .section-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
  }

  .services-tabs {
    margin-bottom: 3rem;
  }

  .nav-tabs {
    border: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-tabs .nav-link {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background: #fff;
    border: 2px solid hsl(188, 41%, 40%);
    border-radius: 50px;
    padding: 12px 28px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
  }

  .nav-tabs .nav-link:hover {
    background: hsl(188, 41%, 65%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

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

  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(188, 41%, 40%), hsl(188, 41%, 65%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-color: hsl(188, 41%, 40%);
  }

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

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(188, 41%, 40%), hsl(188, 41%, 65%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
  }

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

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

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

  .service-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

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

  .service-terms {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
  }

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

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

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

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

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

    .service-card {
      margin-bottom: 1.5rem;
    }
  }

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

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

  #blog .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    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(188, 41%, 40%);
    border-radius: 2px;
  }

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

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

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px 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;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .blog-meta-badge {
    background: hsl(188, 41%, 40%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
  }

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

  .blog-card-date {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

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

  .blog-card:hover .blog-card-title {
    color: hsl(188, 41%, 40%);
  }

  .blog-card-excerpt {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #555;
    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: 1rem;
    font-weight: 600;
    color: hsl(188, 41%, 40%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .blog-read-more:hover {
    color: hsl(188, 41%, 25%);
    gap: 12px;
  }

  .blog-read-more::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

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

  .blog-reading-time {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blog-cta-wrapper {
    text-align: center;
    margin-top: 60px;
  }

  .blog-view-all-btn {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(188, 41%, 40%);
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid hsl(188, 41%, 40%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .blog-view-all-btn:hover {
    background: hsl(188, 41%, 25%);
    border-color: hsl(188, 41%, 25%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    color: #ffffff;
  }

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

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

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

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

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

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

    .blog-cta-wrapper {
      margin-top: 40px;
    }
  }

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

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(188, 41%, 65%);
  color: hsl(188, 41%, 25%);
  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: 700px;
  margin-left: auto;
  margin-right: auto;
}

.offer-deadline-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.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(188, 41%, 40%);
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

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

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: hsl(188, 41%, 65%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: hsl(188, 41%, 25%);
  font-size: 1.3rem;
}

.benefit-text {
  font-family: 'Libre Baskerville', serif;
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
}

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

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

.discount-highlight {
  display: inline-block;
  background: hsl(188, 41%, 65%);
  color: hsl(188, 41%, 25%);
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
}

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

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

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

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

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

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

  .benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .benefit-item:hover {
    transform: translateX(0);
  }

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

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

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

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

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

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

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

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

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

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

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

    #credentials .credential-title {
      font-size: 0.95rem;
    }
  }

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

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

.testimonials-section .section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(188, 41%, 25%);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonials-section .section-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 4px solid hsl(188, 41%, 40%);
  position: relative;
  z-index: 1;
}

.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(188, 41%, 40%) 0%, hsl(188, 41%, 25%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(188, 41%, 65%);
}

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

.testimonial-card.featured .stars i {
  color: hsl(188, 41%, 65%);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.customer-info {
  flex: 1;
}

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

.customer-location {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.customer-location i {
  color: hsl(188, 41%, 40%);
  font-size: 0.85rem;
}

.stars {
  display: flex;
  gap: 3px;
}

.stars i {
  color: #ffc107;
  font-size: 1.1rem;
}

.stars i.far {
  color: #ddd;
}

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

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

.testimonial-card.featured .testimonial-footer {
  border-top-color: rgba(255,255,255,0.2);
}

.service-badge {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  padding: 5px 12px;
  background: hsl(188, 41%, 65%);
  color: #ffffff;
  border-radius: 20px;
  font-weight: 500;
}

.testimonial-card.featured .service-badge {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}

.testimonial-date {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.85rem;
  color: #999;
  margin-left: auto;
}

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

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: hsl(188, 41%, 65%);
  opacity: 0.1;
  z-index: 0;
}

.testimonial-card.featured .quote-icon {
  color: #ffffff;
  opacity: 0.15;
}

.testimonial-card .card-content {
  position: relative;
  z-index: 1;
}

.rating-summary {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.rating-summary .overall-rating {
  font-family: 'Quicksand', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(188, 41%, 25%);
  margin-bottom: 10px;
}

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

.rating-summary .total-reviews {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #666;
}

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

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

  .testimonial-card {
    padding: 25px;
  }

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

  .testimonial-header {
    flex-direction: column;
    gap: 10px;
  }

  .rating-summary {
    padding: 25px;
  }

  .rating-summary .overall-rating {
    font-size: 2.5rem;
  }
}

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

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

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: hsl(188, 41%, 40%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

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

.disclaimer-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: hsl(188, 41%, 25%);
  text-align: center;
  margin-bottom: 35px;
}

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

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

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

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

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

  :root {
    --primary-color: hsl(188, 41%, 40%);
    --secondary-color: hsl(188, 41%, 25%);
    --accent-color: hsl(188, 41%, 65%);
  }

  .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: 700;
    color: var(--secondary-color);
  }

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

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

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

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

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

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

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

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

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

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

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

  .highlight-box {
    background-color: rgba(188, 41%, 65%, 0.1);
    border: 1px solid var(--accent-color);
    padding: 1.25rem;
    border-radius: 5px;
    margin: 1.5rem 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(188, 41%, 40%);
    --secondary-color: hsl(188, 41%, 25%);
    --accent-color: hsl(188, 41%, 65%);
  }

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

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

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

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

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

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

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

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

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

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

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

  .intro-box p {
    margin-bottom: 0;
    font-size: 1.05rem;
  }

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

  .contact-info-box p {
    margin-bottom: 0.5rem;
  }

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

  .section-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
  }