:root {
            --primary-color: hsl(282, 52%, 47%);
            --secondary-color: hsl(282, 52%, 32%);
            --accent-color: hsl(282, 52%, 72%);
        }
        
        body {
            font-family: 'Crimson Text', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Work Sans', 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(142, 68, 173, 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(142, 68, 173, 1)' 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=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  #about {
    font-family: 'Crimson Text', serif;
    background-color: #ffffff;
    padding: 80px 0;
  }

  #about h1, #about h2, #about h3 {
    font-family: 'Work Sans', sans-serif;
    color: #222222;
  }

  #about .section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: hsl(282, 52%, 47%);
    margin-bottom: 1rem;
    text-align: center;
  }

  #about .section-subtitle {
    font-size: 1.25rem;
    color: #555555;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  #about .content-block {
    margin-bottom: 3rem;
  }

  #about .content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1.5rem;
  }

  #about .highlight-box {
    background: linear-gradient(135deg, hsl(282, 52%, 47%) 0%, hsl(282, 52%, 32%) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    color: #ffffff;
    margin: 2rem 0;
  }

  #about .highlight-box h3 {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }

  #about .highlight-box p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
  }

  #about .about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 2rem;
  }

  #about .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  #about .value-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid hsl(282, 52%, 47%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  #about .value-card h4 {
    color: hsl(282, 52%, 32%);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }

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

  #about .stats-row {
    background-color: hsl(282, 52%, 72%);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
  }

  #about .stat-item {
    text-align: center;
    padding: 1rem;
  }

  #about .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(282, 52%, 32%);
    font-family: 'Work Sans', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
  }

  #about .stat-label {
    font-size: 1.1rem;
    color: #222222;
    font-weight: 600;
  }

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

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

    #about .about-image {
      height: 300px;
    }

    #about .values-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    #about .stat-number {
      font-size: 2.25rem;
    }
  }

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

.portfolio-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

.filter-btn {
  padding: 10px 25px;
  border: 2px solid hsl(282, 52%, 47%);
  background: transparent;
  color: hsl(282, 52%, 47%);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: hsl(282, 52%, 47%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

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

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

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(142, 68, 173, 0.25);
}

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

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

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

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

.portfolio-content {
  padding: 25px;
  background: #fff;
}

.portfolio-category {
  display: inline-block;
  padding: 5px 15px;
  background: hsl(282, 52%, 72%);
  color: hsl(282, 52%, 32%);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.portfolio-description {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.overlay-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.overlay-text {
  color: #fff;
  font-size: 0.95rem;
  opacity: 0.95;
}

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

.modal-header {
  background: linear-gradient(135deg, hsl(282, 52%, 47%) 0%, hsl(282, 52%, 32%) 100%);
  color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 25px 30px;
  border: none;
}

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

.modal-body {
  padding: 35px;
  font-family: 'Crimson Text', serif;
}

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

.project-detail-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(282, 52%, 47%);
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.project-detail-text {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}

.project-meta {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px solid #f0f0f0;
  flex-wrap: wrap;
}

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

.meta-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #666;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.meta-value {
  color: #222;
  font-size: 1.1rem;
  font-weight: 600;
}

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

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

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

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

  .filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .modal-body {
    padding: 25px;
  }

  .project-meta {
    gap: 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  #advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Crimson Text', serif;
  }
  
  #advantages .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  #advantages .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    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(282, 52%, 47%);
    border-radius: 2px;
  }
  
  #advantages .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.8;
  }
  
  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
  }
  
  #advantages .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(282, 52%, 47%), hsl(282, 52%, 72%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  
  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(142, 68, 173, 0.15);
    border-color: hsl(282, 52%, 72%);
  }
  
  #advantages .advantage-card:hover::before {
    transform: scaleX(1);
  }
  
  #advantages .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(282, 52%, 47%), hsl(282, 52%, 32%));
    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 10px 30px rgba(142, 68, 173, 0.3);
  }
  
  #advantages .icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
  }
  
  #advantages .advantage-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
  }
  
  #advantages .advantage-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
  }
  
  #advantages .row {
    margin-top: 40px;
  }
  
  @media (max-width: 768px) {
    #advantages {
      padding: 60px 0;
    }
    
    #advantages .section-title {
      font-size: 2rem;
    }
    
    #advantages .section-subtitle {
      font-size: 1.1rem;
    }
    
    #advantages .advantage-card {
      margin-bottom: 30px;
    }
  }

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(282, 52%, 47%) 0%, hsl(282, 52%, 32%) 100%);
    position: relative;
    overflow: hidden;
}

.statistics-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="1" height="1" fill="white" fill-opacity="0.03"/></svg>') repeat;
    pointer-events: none;
}

.statistics-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.statistics-section .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.statistics-section .section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

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

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(282, 52%, 72%), rgba(255, 255, 255, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(5deg);
}

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

.stat-label {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0;
}

.stat-context {
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
    font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(282, 52%, 32%) 0%, hsl(282, 52%, 47%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Crimson Text', serif;
  margin-top: 80px;
}

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

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

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

footer a:hover {
  color: hsl(282, 52%, 72%);
  transform: translateX(5px);
}

.footer-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
}

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

.footer-contact-item i {
  margin-right: 12px;
  color: hsl(282, 52%, 72%);
  font-size: 1.1rem;
  margin-top: 3px;
}

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

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

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

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

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

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

.footer-policies a {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 15px;
  font-size: 0.95rem;
}

.footer-policies a:hover {
  color: hsl(282, 52%, 72%);
  transform: translateX(0);
}

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

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

.cookie-content h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.cookie-content p {
  font-family: 'Crimson Text', serif;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

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

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

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

.cookie-category-desc {
  font-family: 'Crimson Text', serif;
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.cookie-required {
  display: inline-block;
  background: hsl(282, 52%, 47%);
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-left: 10px;
  font-family: 'Work Sans', sans-serif;
}

.cookie-optional {
  display: inline-block;
  background: #6c757d;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-left: 10px;
  font-family: 'Work Sans', sans-serif;
}

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

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

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

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

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

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

.btn-manage:hover {
  background: hsl(282, 52%, 47%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

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

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

  .footer-description, footer p, footer a, footer li {
    font-size: 1rem;
  }

  #cookieNotice {
    padding: 20px 0;
  }

  .cookie-content h4 {
    font-size: 1.3rem;
  }

  .cookie-content p {
    font-size: 1rem;
  }

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

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

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

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Crimson Text, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(282, 52%, 47%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Work Sans, sans-serif; color: hsl(282, 52%, 32%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(282, 52%, 47%); }
.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(282, 52%, 32%); font-family: Work Sans, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(282, 52%, 32%); font-family: Work Sans, sans-serif; }
.blog-article a { color: hsl(282, 52%, 47%); }
.blog-article a:hover { color: hsl(282, 52%, 72%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(282, 52%, 47%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

  #contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, hsl(282, 52%, 47%) 0%, hsl(282, 52%, 32%) 100%);
    opacity: 0.03;
    z-index: 0;
  }

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

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

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

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

  .contact-header p {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
  }

  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }

  .contact-form-wrapper {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 65, 139, 0.1);
  }

  .contact-form-wrapper h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
  }

  .form-group {
    margin-bottom: 25px;
  }

  .form-group label {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    display: block;
    margin-bottom: 8px;
  }

  .form-group label .required {
    color: hsl(282, 52%, 47%);
    margin-left: 3px;
  }

  .form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fafafa;
  }

  .form-control:focus {
    outline: none;
    border-color: hsl(282, 52%, 47%);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(139, 65, 139, 0.1);
  }

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

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

  .submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, hsl(282, 52%, 47%) 0%, hsl(282, 52%, 32%) 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 65, 139, 0.3);
  }

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

  .contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .contact-info-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-left: 4px solid hsl(282, 52%, 47%);
    transition: all 0.3s ease;
  }

  .contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  }

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

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

  .info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, hsl(282, 52%, 47%) 0%, hsl(282, 52%, 32%) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(139, 65, 139, 0.2);
  }

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

  .info-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
  }

  .info-content p {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
  }

  .info-content a {
    color: hsl(282, 52%, 47%);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }

  .info-content a:hover {
    color: hsl(282, 52%, 32%);
    text-decoration: underline;
  }

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

  .business-hours-list li {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
  }

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

  .business-hours-list strong {
    font-weight: 600;
    color: #333;
    display: inline-block;
    min-width: 120px;
  }

  @media (max-width: 992px) {
    .contact-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .contact-header h2 {
      font-size: 2.3rem;
    }
  }

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

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

    .contact-header p {
      font-size: 1.1rem;
    }

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

    .contact-info-card {
      padding: 25px 20px;
    }

    .info-icon {
      width: 45px;
      height: 45px;
      min-width: 45px;
    }
  }

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

    .contact-form-wrapper h3 {
      font-size: 1.5rem;
    }

    .form-control {
      padding: 12px 15px;
      font-size: 1rem;
    }

    .submit-btn {
      padding: 14px 28px;
      font-size: 1rem;
    }

    .info-content h4 {
      font-size: 1rem;
    }

    .info-content p {
      font-size: 1rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(282, 52%, 47%);
    --secondary-color: hsl(282, 52%, 32%);
    --accent-color: hsl(282, 52%, 72%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(282, 52%, 85%) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
  }
  
  .policy-section {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--accent-color);
  }
  
  .contact-box {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: var(--accent-color);
  }
  
  .contact-box a:hover {
    color: white;
  }
  
  .last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
  }
  
  .cookie-type-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 0.5rem;
    font-family: 'Work Sans', sans-serif;
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

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

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

  #faq .faq-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #faq .faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(282, 52%, 47%);
    border-radius: 2px;
  }

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

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

  #faq .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

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

  #faq .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    background-color: #ffffff;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed) {
    background-color: hsl(282, 52%, 47%);
    color: #ffffff;
    box-shadow: none;
  }

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

  #faq .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
  }

  #faq .accordion-body {
    padding: 30px;
    background-color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
  }

  #faq .accordion-body p {
    margin-bottom: 15px;
  }

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

  #faq .accordion-body strong {
    color: hsl(282, 52%, 32%);
    font-weight: 600;
  }

  #faq .accordion-body ul {
    margin: 15px 0;
    padding-left: 25px;
  }

  #faq .accordion-body li {
    margin-bottom: 8px;
    color: #444;
  }

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

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

    #faq .faq-subtitle {
      font-size: 1.1rem;
    }

    #faq .accordion-button {
      font-size: 1.05rem;
      padding: 20px 20px;
    }

    #faq .accordion-body {
      padding: 20px;
      font-size: 1.05rem;
    }
  }

  @media (max-width: 576px) {
    #faq .faq-title {
      font-size: 1.9rem;
    }

    #faq .accordion-button {
      font-size: 1rem;
      padding: 18px 15px;
    }
  }

.newsletter-section {
  background: linear-gradient(135deg, hsl(282, 52%, 47%) 0%, hsl(282, 52%, 32%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

.newsletter-submit-btn {
  padding: 16px 40px;
  background: hsl(282, 52%, 72%);
  color: #222;
  border: none;
  border-radius: 8px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

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

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

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

  .newsletter-submit-btn {
    width: 100%;
    padding: 14px 30px;
  }

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: hsl(282, 52%, 72%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

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

  .hero-content h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: #222;
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .hero-content h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: hsl(282, 52%, 47%);
    margin-bottom: 1.8rem;
    line-height: 1.4;
  }

  .hero-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
  }

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

  .hero-advantages li {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #333;
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(282, 52%, 47%);
    font-size: 1.3rem;
    font-weight: bold;
  }

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

  .btn-hero-primary {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    background: hsl(282, 52%, 47%);
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(282, 52%, 47%);
    font-size: 1.05rem;
  }

  .btn-hero-primary:hover {
    background: hsl(282, 52%, 32%);
    border-color: hsl(282, 52%, 32%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.3);
  }

  .btn-hero-secondary {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    background: transparent;
    color: hsl(282, 52%, 47%);
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(282, 52%, 47%);
    font-size: 1.05rem;
  }

  .btn-hero-secondary:hover {
    background: hsl(282, 52%, 47%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.2);
  }

  .hero-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }

  .hero-image-wrapper img:hover {
    transform: scale(1.02);
  }

  .hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid hsl(282, 52%, 72%);
    border-radius: 16px;
    z-index: -1;
  }

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

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

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

    .hero-image-wrapper {
      margin-top: 3rem;
    }

    .hero-image-wrapper::before {
      display: none;
    }
  }

  @media (max-width: 767px) {
    .hero-content h1 {
      font-size: 2rem;
    }

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600&display=swap');

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

  #credentials .section-title {
    font-family: 'Work Sans', 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: 'Work Sans', 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 10px;
    }

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

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

  .blog-preview-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(282, 52%, 72%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
  }

  .blog-preview-section .container {
    position: relative;
    z-index: 1;
  }

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

  .blog-preview-section .section-header h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(282, 52%, 32%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  .blog-preview-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(282, 52%, 47%);
  }

  .blog-preview-section .section-header p {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.7;
  }

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

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

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

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

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

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

  .blog-card-meta span {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8rem;
    color: #333;
    font-weight: 500;
    backdrop-filter: blur(5px);
  }

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

  .blog-card-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(282, 52%, 32%);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  .blog-card:hover .blog-card-title {
    color: hsl(282, 52%, 47%);
  }

  .blog-card-excerpt {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .blog-card-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: hsl(282, 52%, 47%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }

  .blog-card-link:hover {
    gap: 12px;
    color: hsl(282, 52%, 32%);
  }

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

  .view-all-btn {
    text-align: center;
    margin-top: 50px;
  }

  .view-all-btn .btn {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 40px;
    background: hsl(282, 52%, 47%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(128, 61, 128, 0.2);
  }

  .view-all-btn .btn:hover {
    background: hsl(282, 52%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(128, 61, 128, 0.3);
  }

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

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

    .blog-preview-section .section-header {
      margin-bottom: 40px;
    }

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

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

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

    .view-all-btn {
      margin-top: 40px;
    }
  }

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

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

  .services-section .lead-text {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

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

  .nav-tabs .nav-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 12px 28px;
    margin: 0 8px 15px;
    transition: all 0.3s ease;
  }

  .nav-tabs .nav-link:hover {
    color: hsl(282, 52%, 47%);
    border-color: hsl(282, 52%, 47%);
    background: hsl(282, 52%, 97%);
    transform: translateY(-2px);
  }

  .nav-tabs .nav-link.active {
    color: #fff;
    background: hsl(282, 52%, 47%);
    border-color: hsl(282, 52%, 47%);
    box-shadow: 0 4px 15px rgba(156, 78, 150, 0.3);
  }

  .service-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 3px 20px 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 8px 35px rgba(156, 78, 150, 0.2);
    border-color: hsl(282, 52%, 72%);
  }

  .service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(282, 52%, 47%) 0%, hsl(282, 52%, 32%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(282, 52%, 32%) 0%, hsl(282, 52%, 47%) 100%);
  }

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

  .service-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
  }

  .service-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
  }

  .service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
  }

  .service-price {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(282, 52%, 47%);
  }

  .service-term {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
  }

  .service-btn {
    background: hsl(282, 52%, 47%);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .service-btn:hover {
    background: hsl(282, 52%, 32%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(156, 78, 150, 0.3);
  }

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

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

    .nav-tabs .nav-link {
      font-size: 0.95rem;
      padding: 10px 20px;
      margin: 0 5px 10px;
    }

    .service-card {
      padding: 25px;
    }

    .service-card h3 {
      font-size: 1.4rem;
    }

    .service-footer {
      flex-direction: column;
      gap: 15px;
      align-items: flex-start;
    }
  }

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

.testimonials-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 2.5rem;
  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;
}

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

.testimonial-card.style-1 {
  border-left: 4px solid hsl(282, 52%, 47%);
}

.testimonial-card.style-2 {
  border-top: 4px solid hsl(282, 52%, 72%);
}

.testimonial-card.style-3 {
  background: linear-gradient(to bottom right, #ffffff 0%, #faf9fb 100%);
  border: 2px solid hsl(282, 52%, 72%);
}

.testimonial-card.style-4 {
  box-shadow: 0 0 0 2px hsl(282, 52%, 47%) inset;
  padding: 28px;
}

.testimonial-card.style-5 {
  background: hsl(282, 52%, 72%);
  color: #222;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(282, 52%, 47%) 0%, hsl(282, 52%, 32%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-right: 15px;
  flex-shrink: 0;
}

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

.testimonial-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #222;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.testimonial-location {
  color: #666;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.testimonial-location i {
  margin-right: 5px;
  color: hsl(282, 52%, 47%);
}

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

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

.star.empty {
  color: #ddd;
}

.testimonial-text {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  flex-grow: 1;
}

.testimonial-card.style-5 .testimonial-text {
  color: #222;
}

.testimonial-service {
  font-size: 0.9rem;
  color: hsl(282, 52%, 47%);
  font-weight: 600;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-family: 'Work Sans', sans-serif;
}

.testimonial-card.style-5 .testimonial-service {
  border-top-color: rgba(255,255,255,0.3);
  color: hsl(282, 52%, 32%);
}

.quote-icon {
  font-size: 2.5rem;
  color: hsl(282, 52%, 72%);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-card.style-5 .quote-icon {
  color: #fff;
  opacity: 0.5;
}

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

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

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

@media (max-width: 576px) {
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .testimonial-name {
    font-size: 1.1rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
}

.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(282, 52%, 47%) 0%, hsl(282, 52%, 32%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

.offer-badge {
    display: inline-block;
    background: hsl(282, 52%, 72%);
    color: hsl(282, 52%, 32%);
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.offer-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.offer-description {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.deadline-box {
    background: linear-gradient(135deg, hsl(282, 52%, 72%) 0%, hsl(282, 52%, 47%) 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
}

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

.deadline-date {
    font-family: 'Work Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.calendar-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(282, 52%, 47%);
    font-size: 24px;
}

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

.benefits-list li {
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    color: #333;
    padding: 15px 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(282, 52%, 47%);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.discount-badge {
    display: inline-block;
    background: hsl(282, 52%, 47%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 30px;
}

.offer-cta {
    background: hsl(282, 52%, 47%);
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.offer-cta:hover {
    background: hsl(282, 52%, 32%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .offer-section {
        padding: 60px 0;
    }
    
    .offer-title {
        font-size: 36px;
    }
    
    .offer-description {
        font-size: 18px;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .deadline-date {
        font-size: 32px;
        flex-direction: column;
    }
    
    .benefits-list li {
        font-size: 16px;
    }
    
    .discount-badge {
        font-size: 24px;
        padding: 12px 24px;
    }
}

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

.disclaimer-section .section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  text-align: center;
}

.disclaimer-section .icon-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.disclaimer-section .info-icon {
  font-size: 3.5rem;
  color: hsl(282, 52%, 47%);
  opacity: 0.9;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid hsl(282, 52%, 47%);
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-section .section-title {
    font-size: 2rem;
  }
  
  .disclaimer-content {
    padding: 2rem 1.5rem;
  }
  
  .disclaimer-content p {
    font-size: 1rem;
    text-align: left;
  }
  
  .disclaimer-section .info-icon {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .disclaimer-section .section-title {
    font-size: 1.75rem;
  }
  
  .disclaimer-content {
    padding: 1.5rem 1rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  :root {
    --primary-color: hsl(282, 52%, 47%);
    --secondary-color: hsl(282, 52%, 32%);
    --accent-color: hsl(282, 52%, 72%);
  }

  .policy-content {
    font-family: 'Crimson Text', serif;
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
  }

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

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

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

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

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

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

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

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

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

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(282, 52%, 85%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
  }

  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    margin-bottom: 2rem;
  }

  .contact-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    border: 2px solid var(--accent-color);
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(282, 52%, 47%);
    --secondary-color: hsl(282, 52%, 32%);
    --accent-color: hsl(282, 52%, 72%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2c3e50;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .effective-date {
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-box a:hover {
    color: var(--accent-color);
  }
  
  .highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.25rem;
  }

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, hsl(282, 52%, 97%) 0%, hsl(282, 52%, 92%) 100%);
  }

  .thank-you-container {
    max-width: 650px;
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(142, 68, 173, 0.15);
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: hsl(282, 52%, 47%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
  }

  .success-icon svg {
    width: 55px;
    height: 55px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmark 0.6s ease-out 0.3s both;
  }

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

  @keyframes checkmark {
    0% {
      stroke-dasharray: 100;
      stroke-dashoffset: 100;
    }
    100% {
      stroke-dasharray: 100;
      stroke-dashoffset: 0;
    }
  }

  .thank-you-heading {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: hsl(282, 52%, 32%);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .thank-you-message {
    font-family: 'Crimson Text', serif;
    font-size: 1.25rem;
    color: hsl(282, 20%, 35%);
    line-height: 1.8;
    margin-bottom: 35px;
  }

  .thank-you-message strong {
    color: hsl(282, 52%, 32%);
    font-weight: 600;
  }

  .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 35px 0;
  }

  .info-card {
    background: hsl(282, 52%, 97%);
    padding: 25px 20px;
    border-radius: 12px;
    border: 2px solid hsl(282, 52%, 90%);
  }

  .info-card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .info-card-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(282, 52%, 32%);
    margin-bottom: 5px;
  }

  .info-card-text {
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    color: hsl(282, 20%, 45%);
    margin: 0;
  }

  .btn-home {
    font-family: 'Work Sans', sans-serif;
    background-color: hsl(282, 52%, 47%);
    color: white;
    border: none;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
  }

  .btn-home:hover {
    background-color: hsl(282, 52%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
    color: white;
  }

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

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

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

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

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

    .info-cards {
      grid-template-columns: 1fr;
    }

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