:root {
            --primary-color: hsl(17, 41%, 39%);
            --secondary-color: hsl(17, 41%, 24%);
            --accent-color: hsl(17, 41%, 64%);
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(139, 90, 68, 0.25);
        }

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

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(17, 41%, 24%);
  font-weight: 700;
}

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: hsl(17, 41%, 39%);
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  margin-top: 2.5rem;
}

.about-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: hsl(17, 41%, 39%);
}

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

.about-intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 0;
  margin-bottom: 60px;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  margin-bottom: 30px;
}

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

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

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

.value-card {
  background-color: #f8f9fa;
  padding: 35px 28px;
  border-radius: 10px;
  border-left: 4px solid hsl(17, 41%, 64%);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-left-color: hsl(17, 41%, 39%);
}

.value-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.value-card p {
  margin-bottom: 0;
  font-size: 1rem;
}

.expertise-box {
  background-color: hsl(17, 41%, 39%);
  color: #ffffff;
  padding: 45px;
  border-radius: 12px;
  margin-top: 50px;
}

.expertise-box h2 {
  color: #ffffff;
  margin-top: 0;
}

.expertise-box p {
  color: #f8f9fa;
  margin-bottom: 1rem;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 20px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 8px;
}

.stat-number {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(17, 41%, 64%);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #f8f9fa;
  font-size: 1rem;
}

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

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

  .about-section h2 {
    font-size: 1.7rem;
  }

  .about-intro {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expertise-box {
    padding: 30px 20px;
  }

  .stats-row {
    flex-direction: column;
  }

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

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

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

  .portfolio-intro {
    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;
  }

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

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

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(17, 41%, 39%);
    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: 40px;
  }

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

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

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

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

  .portfolio-content {
    padding: 25px;
  }

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

  .portfolio-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(17, 41%, 24%);
    margin-bottom: 12px;
    line-height: 1.3;
  }

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

  .view-details-btn {
    font-family: 'Quicksand', sans-serif;
    display: inline-block;
    padding: 8px 20px;
    background: hsl(17, 41%, 64%);
    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(17, 41%, 39%);
    color: #fff;
    transform: translateX(5px);
  }

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

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

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

  .modal-body {
    padding: 35px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    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;
  }

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

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

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

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

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

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

  #advantages .advantage-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    color: hsl(17, 41%, 24%);
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, hsl(17, 41%, 64%), hsl(17, 41%, 39%));
    transform: rotate(360deg);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-section .section-title {
        font-size: 2rem;
    }
    
    .statistics-section .section-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
}

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

footer h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.footer-description {
  margin-bottom: 25px;
  font-size: 0.9rem;
}

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

.footer-contact-item i {
  color: hsl(17, 41%, 64%);
  margin-right: 10px;
  margin-top: 3px;
  min-width: 18px;
}

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

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

.footer-links a {
  display: inline-block;
}

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

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

.footer-policies {
  margin-top: 10px;
}

.footer-policies a {
  color: #ced4da;
  font-size: 0.85rem;
  margin: 0 10px;
  display: inline-block;
}

.footer-policies a:hover {
  color: hsl(17, 41%, 64%);
  padding-left: 0;
}

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

.business-hours p {
  margin: 5px 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: 25px 0;
  border-top: 3px solid hsl(17, 41%, 39%);
  animation: slideUp 0.4s ease-out;
}

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

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

.cookie-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: hsl(17, 41%, 24%);
  margin-bottom: 12px;
}

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

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

.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-size: 1rem;
  font-weight: 600;
  color: hsl(17, 41%, 24%);
  margin-bottom: 5px;
}

.cookie-category-desc {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.85rem;
  color: #555;
  margin: 0;
}

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

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

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

.btn-accept-all {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

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

.btn-reject-optional {
  background: #6c757d;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

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

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

.btn-manage-settings:hover {
  background: hsl(17, 41%, 39%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

  #cookieNotice {
    padding: 20px 0;
  }

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

  .cookie-description {
    font-size: 0.9rem;
  }

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

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

  .footer-policies a {
    display: block;
    margin: 8px 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(17, 41%, 39%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Quicksand, sans-serif; color: hsl(17, 41%, 24%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(17, 41%, 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(17, 41%, 24%); font-family: Quicksand, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(17, 41%, 24%); font-family: Quicksand, sans-serif; }
.blog-article a { color: hsl(17, 41%, 39%); }
.blog-article a:hover { color: hsl(17, 41%, 64%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(17, 41%, 39%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

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

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

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

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

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

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

.contact-form .form-control:focus {
  border-color: hsl(17, 41%, 39%);
  box-shadow: 0 0 0 0.2rem rgba(139, 89, 71, 0.15);
  outline: none;
}

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

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

.contact-form .btn-submit:hover {
  background: hsl(17, 41%, 24%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 89, 71, 0.3);
}

.contact-info-wrapper {
  background: hsl(17, 41%, 24%);
  color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.contact-info-item {
  margin-bottom: 2rem;
  padding-left: 50px;
  position: relative;
}

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

.contact-info-item i {
  position: absolute;
  left: 0;
  top: 5px;
  width: 40px;
  height: 40px;
  background: hsl(17, 41%, 64%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: hsl(17, 41%, 24%);
}

.contact-info-item h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(17, 41%, 64%);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-info-item p {
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
  color: #f0f0f0;
}

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

.contact-info-item a:hover {
  color: hsl(17, 41%, 64%);
}

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

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

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

.working-hours-list .day {
  font-weight: 600;
  color: hsl(17, 41%, 64%);
}

.working-hours-list .time {
  color: #f0f0f0;
}

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

@media (max-width: 576px) {
  .contact-section h2 {
    font-size: 1.75rem;
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 25px;
  }
  
  .contact-info-item {
    padding-left: 45px;
  }
  
  .contact-form .btn-submit {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@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(17, 41%, 39%);
    --secondary-color: hsl(17, 41%, 24%);
    --accent-color: hsl(17, 41%, 64%);
  }
  
  body {
    font-family: 'Libre Baskerville', serif;
    color: var(--secondary-color);
    line-height: 1.8;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
  }
  
  .policy-content {
    background: linear-gradient(135deg, #fefefe 0%, #f9f6f4 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--primary-color);
  }
  
  .policy-intro {
    background-color: var(--accent-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
  }
  
  .policy-intro p {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .cookie-type-card {
    background: white;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: white;
    border-bottom-color: var(--accent-color);
  }
  
  ul, ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  li {
    margin: 0.5rem 0;
  }
  
  strong {
    color: var(--primary-color);
  }
  
  .last-updated {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-top: 1rem;
  }

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

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

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

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

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

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

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

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

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

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

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

  .faq-accordion .accordion-body {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    padding: 1.5rem;
    background-color: #ffffff;
  }

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

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

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

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

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

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

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

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

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

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

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

.newsletter-section::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" x="0" y="0" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
}

.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: 1.5rem;
  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 2.5rem;
  line-height: 1.7;
}

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

.newsletter-form-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

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

.newsletter-input:focus {
  outline: none;
  border-color: hsl(17, 41%, 64%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

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

.newsletter-submit:hover {
  background: hsl(17, 41%, 54%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

.newsletter-benefit {
  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: hsl(17, 41%, 64%);
  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: 2rem;
  }

  .newsletter-form-wrapper {
    flex-direction: column;
  }

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

  .newsletter-submit {
    width: 100%;
  }

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

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

  .newsletter-input,
  .newsletter-submit {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

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

  .hero-section {
    background-color: #f8f9fa;
    padding: 80px 0 60px;
    overflow: hidden;
  }

  .hero-section h1 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(17, 41%, 24%);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: hsl(17, 41%, 39%);
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .hero-section p {
    font-family: 'Libre Baskerville', serif;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

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

  .hero-advantages li {
    font-family: 'Libre Baskerville', serif;
    color: #222;
    font-size: 1.05rem;
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li::before {
    content: "\f26a";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(17, 41%, 39%);
    font-size: 1.3rem;
    font-weight: bold;
  }

  .hero-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
  }

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

  .hero-cta-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }

  .hero-btn-primary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: hsl(17, 41%, 39%);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(17, 41%, 39%);
    font-size: 1.05rem;
  }

  .hero-btn-primary:hover {
    background-color: hsl(17, 41%, 24%);
    border-color: hsl(17, 41%, 24%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

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

  .hero-btn-secondary:hover {
    background-color: hsl(17, 41%, 39%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

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

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

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

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

    .hero-advantages li {
      font-size: 1rem;
    }

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

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

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

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

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

.credentials-section .section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(17, 41%, 24%);
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

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

  .services-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(17, 41%, 24%);
    margin-bottom: 20px;
    text-align: center;
  }

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

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

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

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

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

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

  .service-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(17, 41%, 24%);
    margin-bottom: 18px;
    text-align: center;
  }

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

  .service-price {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(17, 41%, 39%);
    text-align: center;
    margin-bottom: 15px;
  }

  .service-terms {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    font-style: italic;
  }

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

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

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

    .service-price {
      font-size: 1.6rem;
    }
  }

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

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 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(17, 41%, 64%);
}

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

.testimonial-card.style-2 {
  border-left: none;
  border-top: 4px solid hsl(17, 41%, 39%);
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.testimonial-card.style-3 {
  border-left: none;
  background: hsl(17, 41%, 24%);
  color: #ffffff;
}

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

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

.testimonial-card.style-3 .customer-location {
  color: hsl(17, 41%, 64%);
}

.rating-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  gap: 3px;
}

.rating-stars i {
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.testimonial-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: italic;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

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

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

.customer-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: hsl(17, 41%, 24%);
  margin-bottom: 3px;
}

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

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  color: hsl(17, 41%, 64%);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
}

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

.star-empty {
  color: #ddd;
}

.offer-section {
  background: linear-gradient(135deg, hsl(17, 41%, 39%) 0%, hsl(17, 41%, 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(17, 41%, 64%);
  opacity: 0.1;
  border-radius: 50%;
}

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

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

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

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

.offer-description {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  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-block {
  background: linear-gradient(135deg, hsl(17, 41%, 64%) 0%, hsl(17, 41%, 39%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

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

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

.discount-highlight {
  background: hsl(17, 41%, 39%);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 35px;
  text-align: center;
}

.discount-percentage {
  font-family: 'Quicksand', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.discount-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  margin: 0;
}

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

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

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

.benefit-icon {
  color: hsl(17, 41%, 39%);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 3px;
}

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

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

.offer-btn:hover {
  background: hsl(17, 41%, 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-percentage {
    font-size: 3rem;
  }

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

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

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

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

.blog-preview-section .section-subtitle {
  color: #666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

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

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

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

.blog-card-meta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: hsl(17, 41%, 39%);
  font-weight: 600;
}

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

.blog-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  color: hsl(17, 41%, 24%);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

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

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

.blog-card-link:hover {
  color: hsl(17, 41%, 24%);
  gap: 0.8rem;
}

.blog-card-link::after {
  content: '→';
  font-size: 1.2rem;
}

.view-all-btn {
  display: inline-block;
  margin: 3rem auto 0;
  padding: 14px 40px;
  background: hsl(17, 41%, 39%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-align: center;
}

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

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

@media (max-width: 768px) {
  .blog-preview-section {
    padding: 60px 0;
  }
  
  .blog-preview-section h2 {
    font-size: 2rem;
  }
  
  .blog-card-image {
    height: 200px;
  }
  
  .blog-card-content {
    padding: 1.5rem;
  }
  
  .blog-card h3 {
    font-size: 1.2rem;
  }
}

.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;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.disclaimer-icon {
  font-size: 48px;
  color: hsl(17, 41%, 39%);
  margin-bottom: 25px;
  display: block;
  text-align: center;
}

.disclaimer-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(17, 41%, 24%);
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

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

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

  .disclaimer-container {
    padding: 40px 25px;
    margin: 0 15px;
  }

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

  .disclaimer-icon {
    font-size: 40px;
  }

  .disclaimer-text {
    font-size: 0.95rem;
    padding: 0 10px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .disclaimer-container {
    padding: 30px 20px;
  }

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

  .disclaimer-text {
    padding: 0 5px;
  }
}

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

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

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

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

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid 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: 1.25rem;
    text-align: justify;
  }

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

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

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

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

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

  .contact-section {
    background-color: hsl(17, 41%, 97%);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 2.5rem;
    border: 1px solid var(--accent-color);
  }

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

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

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

  h1, h2, h3, h4, h5, h6 {
    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(--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: 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;
  }

  .last-updated {
    background-color: hsl(17, 41%, 95%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
  }

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

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

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

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

:root {
    --primary-color: hsl(17, 41%, 39%);
    --secondary-color: hsl(17, 41%, 24%);
    --accent-color: hsl(17, 41%, 64%);
  }

  .thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, hsl(17, 41%, 95%) 0%, hsl(17, 41%, 98%) 100%);
  }

  .thank-you-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
  }

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

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

  @keyframes scaleIn {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

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

  .thank-you-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
  }

  .thank-you-message {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
  }

  .thank-you-details {
    background: hsl(17, 41%, 97%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.8s both;
  }

  .thank-you-details p {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    text-align: left;
  }

  .thank-you-details p:last-child {
    margin-bottom: 0;
  }

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

  .home-button {
    font-family: 'Quicksand', sans-serif;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 1s both;
  }

  .home-button:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

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

  @media (max-width: 768px) {
    .thank-you-card {
      padding: 2rem 1.5rem;
    }

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

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

    .success-icon {
      width: 80px;
      height: 80px;
    }

    .success-icon svg {
      width: 50px;
      height: 50px;
    }

    .home-button {
      padding: 0.75rem 2rem;
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .thank-you-section {
      padding: 2rem 1rem;
    }

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

    .thank-you-details p {
      font-size: 0.9rem;
    }
  }