:root {
            --primary-color: hsl(251, 58%, 38%);
            --secondary-color: hsl(251, 58%, 23%);
            --accent-color: hsl(251, 58%, 63%);
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(103, 58, 183, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28103, 58, 183, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

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

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

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

  #about .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: hsl(251, 58%, 63%);
    border-radius: 2px;
  }

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

  #about .about-content {
    margin-bottom: 50px;
  }

  #about .about-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 25px;
  }

  #about .about-text p {
    margin-bottom: 20px;
  }

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

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

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

  #about .values-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 60px;
    border-radius: 12px;
  }

  #about .values-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(251, 58%, 38%);
    text-align: center;
    margin-bottom: 50px;
  }

  #about .value-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }

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

  #about .value-icon {
    width: 60px;
    height: 60px;
    background-color: hsl(251, 58%, 63%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #ffffff;
  }

  #about .value-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(251, 58%, 23%);
    margin-bottom: 15px;
  }

  #about .value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
  }

  #about .mission-box {
    background: linear-gradient(135deg, hsl(251, 58%, 38%) 0%, hsl(251, 58%, 23%) 100%);
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

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

  #about .mission-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #f8f9fa;
  }

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

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

    #about .values-title {
      font-size: 1.8rem;
    }

    #about .about-image {
      margin-bottom: 30px;
    }

    #about .mission-box {
      padding: 35px 25px;
    }
  }

.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-weight: 700;
  color: hsl(251, 58%, 23%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

.filter-btn {
  font-family: 'Quicksand', sans-serif;
  padding: 0.6rem 1.8rem;
  border: 2px solid hsl(251, 58%, 38%);
  background: white;
  color: hsl(251, 58%, 38%);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

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

.portfolio-item {
  background: white;
  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.08);
}

.portfolio-content {
  padding: 1.8rem;
}

.portfolio-category {
  font-family: 'Quicksand', sans-serif;
  display: inline-block;
  background: hsl(251, 58%, 63%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.portfolio-item h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(251, 58%, 23%);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.portfolio-description {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.view-details {
  font-family: 'Quicksand', sans-serif;
  color: hsl(251, 58%, 38%);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.view-details:hover {
  gap: 0.8rem;
  color: hsl(251, 58%, 23%);
}

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

.modal-header {
  background: hsl(251, 58%, 38%);
  color: white;
  border-radius: 12px 12px 0 0;
  padding: 1.5rem 2rem;
}

.modal-header h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

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

.modal-body {
  padding: 2rem;
}

.modal-project-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.modal-category {
  font-family: 'Quicksand', sans-serif;
  display: inline-block;
  background: hsl(251, 58%, 63%);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.modal-body p {
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

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

.project-details-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #e9ecef;
  color: #333;
  display: flex;
  justify-content: space-between;
}

.project-details-list li strong {
  font-family: 'Quicksand', sans-serif;
  color: hsl(251, 58%, 23%);
  font-weight: 600;
}

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

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

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .filter-buttons {
    gap: 0.8rem;
  }

  .filter-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }

  .modal-body {
    padding: 1.5rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

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

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

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

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

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

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

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    border-color: hsl(251, 58%, 63%);
    box-shadow: 0 12px 30px rgba(98, 66, 145, 0.15);
  }

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

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

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

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

  #advantages .advantage-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(251, 58%, 23%);
    margin-bottom: 15px;
    text-align: center;
  }

  #advantages .advantage-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
  }

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

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

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

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

  @media (max-width: 576px) {
    #advantages .section-title {
      font-size: 1.8rem;
    }

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

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

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

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

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      radial-gradient(circle at 20% 30%, hsla(251, 58%, 63%, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, hsla(251, 58%, 38%, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }

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

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

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

  #statistics .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(251, 58%, 38%), hsl(251, 58%, 63%));
    border-radius: 2px;
  }

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

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

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

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

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

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

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

  #statistics .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px hsla(251, 58%, 38%, 0.3);
  }

  #statistics .stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(251, 58%, 23%);
    margin-bottom: 12px;
    line-height: 1.2;
  }

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

  #statistics .stat-context {
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
  }

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

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

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

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

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

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(251, 58%, 23%) 0%, hsl(251, 58%, 38%) 100%);
  color: #ffffff;
  padding: 4rem 0 1.5rem;
  margin-top: 5rem;
  font-family: 'Libre Baskerville', serif;
}

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

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

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

footer a:hover {
  color: hsl(251, 58%, 63%);
  transform: translateX(5px);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.contact-info-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-info-item i {
  color: hsl(251, 58%, 63%);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
}

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

.policy-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.policy-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.policy-links a:hover {
  color: hsl(251, 58%, 63%);
  transform: translateX(0);
}

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

.business-hours-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

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

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

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

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cookie-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  color: hsl(251, 58%, 23%);
  margin-bottom: 1rem;
  font-weight: 600;
}

.cookie-description {
  color: #333333;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-categories {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid hsl(251, 58%, 63%);
}

.cookie-category {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  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;
  color: hsl(251, 58%, 23%);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.cookie-category-desc {
  font-size: 0.875rem;
  color: #555555;
  margin: 0;
  line-height: 1.5;
}

.cookie-required {
  display: inline-block;
  background: hsl(251, 58%, 38%);
  color: #ffffff;
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 0.5rem;
  font-weight: 600;
}

.cookie-optional {
  display: inline-block;
  background: #6c757d;
  color: #ffffff;
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 0.5rem;
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

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

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

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

.btn-manage {
  background: transparent;
  border: 2px solid hsl(251, 58%, 38%);
  color: hsl(251, 58%, 38%);
  padding: 0.75rem 2rem;
  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:hover {
  background: hsl(251, 58%, 38%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(94, 53, 177, 0.3);
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1rem;
  }

  footer h5 {
    margin-top: 2rem;
  }

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

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

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

  #cookieNotice {
    padding: 1.5rem 0;
  }

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

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

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

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

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

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

  .contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-left: 4px solid hsl(251, 58%, 38%);
  }

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

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

  .contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(251, 58%, 38%) 0%, hsl(251, 58%, 63%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #ffffff;
  }

  .contact-info-item h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: hsl(251, 58%, 23%);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .contact-info-item p {
    color: #444;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .contact-info-item a {
    color: hsl(251, 58%, 38%);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }

  .contact-info-item a:hover {
    color: hsl(251, 58%, 63%);
  }

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

  .contact-form-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: hsl(251, 58%, 23%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

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

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

  .form-control:focus, .form-select:focus {
    border-color: hsl(251, 58%, 38%);
    box-shadow: 0 0 0 0.2rem rgba(103, 58, 183, 0.15);
  }

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

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

  .btn-submit {
    background: linear-gradient(135deg, hsl(251, 58%, 38%) 0%, hsl(251, 58%, 63%) 100%);
    border: none;
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%;
  }

  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 58, 183, 0.3);
  }

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

  .hours-list li {
    padding: 0.4rem 0;
    color: #444;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
  }

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

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

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

    .contact-form-card {
      margin-top: 2rem;
    }
  }

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

    .contact-form-card, .contact-info-card {
      padding: 1.5rem;
    }

    .btn-submit {
      padding: 0.8rem 2rem;
    }
  }

@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(251, 58%, 38%);
    --secondary-color: hsl(251, 58%, 23%);
    --accent-color: hsl(251, 58%, 63%);
  }

  .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(--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.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
  }

  .policy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
  }

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

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

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

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

  .contact-details {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }

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

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

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

  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }

  .cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
  }

  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-family: 'Quicksand', sans-serif;
  }

  .cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
  }

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

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

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

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

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

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

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

.faq-accordion .accordion-button {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: hsl(251, 58%, 23%);
  background: #ffffff;
  padding: 1.5rem;
  border: none;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: hsl(251, 58%, 38%);
  color: #ffffff;
}

.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='%23543a7d'%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 {
  padding: 1.5rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  background: #ffffff;
}

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

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

.faq-accordion .accordion-body strong {
  color: hsl(251, 58%, 38%);
  font-weight: 600;
}

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(251, 58%, 38%) 0%, hsl(251, 58%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.newsletter-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #f8f9fa;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

.newsletter-input {
    font-family: 'Libre Baskerville', serif;
    padding: 16px 24px;
    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;
    width: 100%;
}

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

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

.newsletter-submit {
    font-family: 'Quicksand', sans-serif;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: hsl(251, 58%, 63%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-submit:hover {
    background: #ffffff;
    color: hsl(251, 58%, 38%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.benefit-icon {
    width: 24px;
    height: 24px;
    background: hsl(251, 58%, 63%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .newsletter-form {
        flex-direction: row;
        gap: 12px;
    }
    
    .newsletter-input {
        flex: 1;
    }
    
    .newsletter-submit {
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-heading {
        font-size: 2rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .newsletter-benefits {
        gap: 20px;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
}

@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;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  .hero-section {
    background: linear-gradient(135deg, hsl(251, 58%, 38%) 0%, hsl(251, 58%, 23%) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
  }

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

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

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

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

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

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

  .advantages-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .advantages-list li {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: #ffffff;
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    border-left: 4px solid hsl(251, 58%, 63%);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .advantages-list li:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(8px);
  }

  .advantages-list li i {
    font-size: 1.5rem;
    color: hsl(251, 58%, 63%);
    margin-right: 1rem;
    flex-shrink: 0;
  }

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

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

  .btn-hero-primary:hover {
    background: hsl(251, 58%, 53%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }

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

  .btn-hero-secondary:hover {
    background: #ffffff;
    color: hsl(251, 58%, 38%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
  }

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

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

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

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

    .advantages-list {
      grid-template-columns: 1fr;
    }

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

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

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

  #blog .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(251, 58%, 23%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

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

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

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

  #blog .blog-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: #777;
  }

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

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

  #blog .blog-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(251, 58%, 23%);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

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

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

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

  #blog .blog-link:hover {
    color: hsl(251, 58%, 23%);
    gap: 0.8rem;
  }

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

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

  #blog .view-all-btn {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(251, 58%, 38%);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    margin-top: 3rem;
  }

  #blog .view-all-btn:hover {
    background: hsl(251, 58%, 23%);
    transform: translateY(-3px);
  }

  #blog .btn-wrapper {
    text-align: center;
  }

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

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

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

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

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

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

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

.offer-section {
  font-family: 'Libre Baskerville', serif;
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(251, 58%, 38%) 0%, hsl(251, 58%, 23%) 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(251, 58%, 63%);
  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-weight: 700;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.offer-description {
  font-size: 1.1rem;
  color: #f8f9fa;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.deadline-wrapper {
  background: linear-gradient(135deg, hsl(251, 58%, 63%) 0%, hsl(251, 58%, 48%) 100%);
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 40px;
  text-align: center;
}

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

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

.calendar-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

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

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333;
}

.benefits-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, hsl(251, 58%, 38%) 0%, hsl(251, 58%, 63%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.benefit-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.discount-highlight {
  background: hsl(251, 58%, 38%);
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 35px;
}

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

.discount-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  color: #f8f9fa;
  margin: 0;
}

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

.offer-btn {
  display: inline-block;
  background: linear-gradient(135deg, hsl(251, 58%, 38%) 0%, hsl(251, 58%, 23%) 100%);
  color: #fff;
  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 8px 25px rgba(0, 0, 0, 0.2);
  border: none;
}

.offer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, hsl(251, 58%, 43%) 0%, hsl(251, 58%, 28%) 100%);
  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: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .discount-percentage {
    font-size: 2.5rem;
  }
  
  .benefits-list li {
    gap: 15px;
    padding: 15px;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .offer-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .offer-heading {
    font-size: 1.8rem;
  }
  
  .deadline-wrapper {
    padding: 25px 20px;
  }
  
  .calendar-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

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

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

.testimonials-section .subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(251, 58%, 38%) 0%, hsl(251, 58%, 23%) 100%);
  color: #fff;
}

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

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

.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 {
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stars {
  display: flex;
  gap: 3px;
  font-size: 1.1rem;
}

.stars i {
  color: #ffc107;
}

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

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

.testimonial-card.compact {
  padding: 25px;
}

.testimonial-card.compact .testimonial-text {
  font-size: 1rem;
  font-weight: 500;
}

.testimonial-card.detailed {
  border-left: 4px solid hsl(251, 58%, 63%);
}

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

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

.rating-summary .big-number {
  font-family: 'Quicksand', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: hsl(251, 58%, 38%);
  line-height: 1;
}

.rating-summary .stars {
  justify-content: center;
  font-size: 1.5rem;
  margin: 10px 0;
}

.rating-summary p {
  color: #666;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
    margin-bottom: 20px;
  }
  
  .rating-summary {
    padding: 30px 20px;
  }
  
  .rating-summary .big-number {
    font-size: 3rem;
  }
}

.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: hsl(251, 58%, 23%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 35px rgba(93, 63, 153, 0.2);
    border-color: hsl(251, 58%, 63%);
  }

  .service-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, hsl(251, 58%, 38%) 0%, hsl(251, 58%, 48%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, hsl(251, 58%, 63%) 0%, hsl(251, 58%, 73%) 100%);
    transform: rotate(360deg) scale(1.1);
  }

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

  .service-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(251, 58%, 23%);
    margin-bottom: 1.2rem;
    text-align: center;
  }

  .service-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

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

  .service-price-note {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-bottom: 1.5rem;
  }

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

  .service-features li {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    color: #555;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .service-features li:last-child {
    border-bottom: none;
  }

  .service-features li i {
    color: hsl(251, 58%, 63%);
    margin-right: 0.5rem;
  }

  .service-btn {
    font-family: 'Quicksand', sans-serif;
    background: hsl(251, 58%, 38%);
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  .service-btn:hover {
    background: hsl(251, 58%, 63%);
    color: #ffffff;
    transform: scale(1.05);
  }

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

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

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

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

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

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

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

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

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

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

.disclaimer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(251, 58%, 38%) 0%, hsl(251, 58%, 23%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

.disclaimer-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(251, 58%, 38%);
}

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

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

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

  :root {
    --primary-color: hsl(251, 58%, 38%);
    --secondary-color: hsl(251, 58%, 23%);
    --accent-color: hsl(251, 58%, 63%);
  }

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

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
  }

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

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    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.5rem;
  }

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

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

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

  .section-highlight {
    background-color: hsl(251, 58%, 98%);
    padding: 1.5rem;
    border-radius: 0.5rem;
    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(251, 58%, 38%);
    --secondary-color: hsl(251, 58%, 23%);
    --accent-color: hsl(251, 58%, 63%);
  }
  
  .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;
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 1rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--primary-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .last-updated {
    background-color: hsl(251, 58%, 95%);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
  }
  
  .contact-box {
    background-color: hsl(251, 58%, 96%);
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }
  
  .section-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 2rem 0;
  }