:root {
            --primary-color: hsl(60, 35%, 34%);
            --secondary-color: hsl(60, 35%, 19%);
            --accent-color: hsl(60, 35%, 59%);
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color) !important;
        }
        
        .navbar-nav .nav-link {
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            color: #333 !important;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(124, 116, 74, 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%28124, 116, 74, 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;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

  #about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(60, 35%, 34%) 0%, hsl(60, 35%, 59%) 100%);
  }

  #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(60, 35%, 19%);
    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: 3px;
    background: hsl(60, 35%, 59%);
  }

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

  #about .about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
  }

  #about .about-image-wrapper {
    flex: 1;
    position: relative;
  }

  #about .about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }

  #about .about-image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: hsl(60, 35%, 34%);
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  #about .about-text-wrapper {
    flex: 1;
  }

  #about .about-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
  }

  #about .about-highlight {
    background: hsl(60, 35%, 95%);
    border-left: 4px solid hsl(60, 35%, 34%);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
  }

  #about .about-highlight-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(60, 35%, 19%);
    margin-bottom: 15px;
  }

  #about .about-highlight-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin: 0;
  }

  #about .values-section {
    margin-top: 70px;
  }

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

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

  #about .value-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(60, 35%, 59%);
  }

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

  #about .value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(60, 35%, 34%) 0%, hsl(60, 35%, 44%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #fff;
  }

  #about .value-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(60, 35%, 19%);
    margin-bottom: 12px;
  }

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

  #about .bottom-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: row-reverse;
  }

  #about .expertise-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
  }

  #about .stat-box {
    background: linear-gradient(135deg, hsl(60, 35%, 34%) 0%, hsl(60, 35%, 24%) 100%);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
  }

  #about .stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  #about .stat-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    opacity: 0.95;
  }

  @media (max-width: 992px) {
    #about .about-content,
    #about .bottom-content {
      flex-direction: column;
    }

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

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

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

    #about .expertise-stats {
      grid-template-columns: 1fr;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

  #portfolio .filter-btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid hsl(60, 35%, 34%);
    background: transparent;
    color: hsl(60, 35%, 34%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(60, 35%, 34%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }

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

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

  #portfolio .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  }

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

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

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

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

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

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

  #portfolio .portfolio-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(60, 35%, 19%);
    margin-bottom: 12px;
  }

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

  #portfolio .view-details {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: hsl(60, 35%, 34%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  #portfolio .view-details:hover {
    color: hsl(60, 35%, 19%);
    gap: 12px;
  }

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

  #portfolio .modal-header {
    background: hsl(60, 35%, 34%);
    color: #ffffff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
  }

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

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

  #portfolio .modal-body {
    padding: 35px;
  }

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

  #portfolio .project-detail-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(60, 35%, 19%);
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  #portfolio .project-detail-text {
    color: #555;
    line-height: 1.7;
    font-size: 0.98rem;
  }

  #portfolio .project-specs {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
  }

  #portfolio .project-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #portfolio .project-specs li {
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
    color: #333;
  }

  #portfolio .project-specs li:last-child {
    border-bottom: none;
  }

  #portfolio .project-specs strong {
    font-family: 'Quicksand', sans-serif;
    color: hsl(60, 35%, 19%);
    font-weight: 600;
  }

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

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

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

    #portfolio .filter-buttons {
      gap: 10px;
    }

    #portfolio .filter-btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;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 {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    font-family: 'Libre Baskerville', serif;
  }

  #advantages .section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: hsl(60, 35%, 19%);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
  }

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

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

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

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

  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: hsl(60, 35%, 59%);
  }

  #advantages .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(60, 35%, 34%), hsl(60, 35%, 59%));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

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

  #advantages .advantage-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: hsl(60, 35%, 19%);
    margin-bottom: 15px;
  }

  #advantages .advantage-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
  }

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

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

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

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

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

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

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

  #statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(60, 35%, 96%) 0%, hsl(60, 35%, 92%) 100%);
    position: relative;
    overflow: hidden;
  }

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(60, 35%, 34%), hsl(60, 35%, 59%), hsl(60, 35%, 34%));
  }

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

  .statistics-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(60, 35%, 19%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .statistics-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(60, 35%, 59%);
  }

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

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

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: hsl(60, 35%, 59%);
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(60, 35%, 34%), hsl(60, 35%, 44%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
  }

  .stat-card:hover .stat-icon {
    background: linear-gradient(135deg, hsl(60, 35%, 59%), hsl(60, 35%, 69%));
    transform: rotate(360deg);
  }

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

  .stat-number {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(60, 35%, 19%);
    margin-bottom: 10px;
    line-height: 1.2;
  }

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

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

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

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

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

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

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

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

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

    .stat-icon i {
      font-size: 28px;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(60, 35%, 19%) 0%, hsl(60, 35%, 24%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  font-family: 'Libre Baskerville', serif;
}

footer h5 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(60, 35%, 59%);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

footer .company-description {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

footer .contact-info {
  list-style: none;
  padding: 0;
}

footer .contact-info li {
  margin-bottom: 0.8rem;
  color: #e0e0e0;
}

footer .contact-info i {
  color: hsl(60, 35%, 59%);
  width: 20px;
  margin-right: 10px;
}

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

footer .contact-info a:hover {
  color: hsl(60, 35%, 59%);
}

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

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

footer .footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

footer .footer-links a:hover {
  color: hsl(60, 35%, 59%);
  padding-left: 5px;
}

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

footer .policy-links {
  margin-top: 1rem;
}

footer .policy-links a {
  color: #b0b0b0;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

footer .policy-links a:hover {
  color: hsl(60, 35%, 59%);
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(60, 35%, 19%) 0%, hsl(60, 35%, 24%) 100%);
  color: #f8f9fa;
  padding: 2rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-family: 'Libre Baskerville', serif;
}

#cookieNotice h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(60, 35%, 59%);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

#cookieNotice p {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-categories {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.cookie-category {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-category h6 {
  font-family: 'Quicksand', sans-serif;
  color: #f8f9fa;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.cookie-category p {
  color: #c0c0c0;
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.cookie-category .badge {
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  margin-left: 0.5rem;
  font-weight: 500;
}

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

.cookie-buttons .btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border: none;
}

.cookie-buttons .btn-accept {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
  color: #fff;
}

.cookie-buttons .btn-accept:hover {
  background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.cookie-buttons .btn-reject {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: #fff;
}

.cookie-buttons .btn-reject:hover {
  background: linear-gradient(135deg, #5a6268 0%, #545b62 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.cookie-buttons .btn-manage {
  background: transparent;
  color: hsl(60, 35%, 59%);
  border: 2px solid hsl(60, 35%, 59%);
}

.cookie-buttons .btn-manage:hover {
  background: hsl(60, 35%, 59%);
  color: hsl(60, 35%, 19%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

  footer h5 {
    margin-top: 2rem;
    font-size: 1.1rem;
  }

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

  footer .policy-links a {
    display: block;
    margin: 0.5rem 0;
  }

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

  .cookie-buttons .btn {
    width: 100%;
  }

  #cookieNotice {
    padding: 1.5rem 0;
  }
}

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

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Libre Baskerville, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(60, 35%, 34%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Quicksand, sans-serif; color: hsl(60, 35%, 19%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(60, 35%, 34%); }
.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(60, 35%, 19%); font-family: Quicksand, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(60, 35%, 19%); font-family: Quicksand, sans-serif; }
.blog-article a { color: hsl(60, 35%, 34%); }
.blog-article a:hover { color: hsl(60, 35%, 59%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(60, 35%, 34%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

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

.contact-section .lead-text {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid hsl(60, 35%, 34%);
}

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

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

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

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: hsl(60, 35%, 19%);
}

.contact-info-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    color: hsl(60, 35%, 19%);
    margin-bottom: 8px;
    font-weight: 600;
}

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

.contact-info-content a {
    color: hsl(60, 35%, 34%);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info-content a:hover {
    color: hsl(60, 35%, 19%);
    text-decoration: underline;
}

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

.contact-form-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    color: hsl(60, 35%, 19%);
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.form-control:focus, .form-select:focus {
    border-color: hsl(60, 35%, 34%);
    box-shadow: 0 0 0 0.2rem rgba(147, 144, 100, 0.15);
    outline: none;
    background: #ffffff;
}

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

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

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

.btn-submit:hover {
    background: hsl(60, 35%, 19%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

.hours-list li {
    padding: 6px 0;
    color: #555;
    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-info-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-card, .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-info-item {
        margin-bottom: 25px;
    }
}

@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(60, 35%, 34%);
    --secondary-color: hsl(60, 35%, 19%);
    --accent-color: hsl(60, 35%, 59%);
  }

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

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

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

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

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

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

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

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

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

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

  .policy-intro {
    background: linear-gradient(135deg, hsl(60, 35%, 95%) 0%, hsl(60, 35%, 98%) 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    margin-bottom: 2rem;
  }

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

  .contact-box {
    background: var(--primary-color);
    color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

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

  .contact-box a {
    color: var(--accent-color);
    font-weight: 700;
  }

  .contact-box a:hover {
    color: #ffffff;
  }

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

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

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

  .cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid hsl(60, 35%, 90%);
  }

  .cookie-table tr:hover {
    background-color: hsl(60, 35%, 97%);
  }

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

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(60, 35%, 34%), hsl(60, 35%, 59%));
}

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

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

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(60, 35%, 59%);
}

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

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

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

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

.accordion-button {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(60, 35%, 19%);
    background-color: #ffffff;
    padding: 25px 30px;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: hsl(60, 35%, 34%);
    color: #ffffff;
    box-shadow: none;
}

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

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

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

.accordion-body {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #333;
    background-color: #ffffff;
    padding: 30px;
    line-height: 1.8;
    border-top: 2px solid hsl(60, 35%, 59%);
}

.accordion-body strong {
    color: hsl(60, 35%, 34%);
    font-weight: 600;
}

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

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

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

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

    .faq-header p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .accordion-button {
        font-size: 1.1rem;
        padding: 20px 20px;
    }

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(60, 35%, 34%) 0%, hsl(60, 35%, 19%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: hsl(60, 35%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-icon svg {
    width: 35px;
    height: 35px;
    fill: hsl(60, 35%, 19%);
}

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

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

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

.newsletter-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #ffffff;
    color: #333333;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: hsl(60, 35%, 59%);
    box-shadow: 0 0 0 4px rgba(157, 149, 95, 0.2);
}

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

.newsletter-submit {
    padding: 16px 40px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    background: hsl(60, 35%, 59%);
    color: hsl(60, 35%, 19%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-submit:hover {
    background: hsl(60, 35%, 65%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.newsletter-privacy {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: #e0e0e0;
    margin-top: 15px;
}

.newsletter-privacy a {
    color: hsl(60, 35%, 59%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.newsletter-privacy a:hover {
    color: hsl(60, 35%, 70%);
    text-decoration: underline;
}

@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-submit {
        width: 100%;
        padding: 14px 30px;
    }

    .newsletter-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 25px;
    }

    .newsletter-icon svg {
        width: 30px;
        height: 30px;
    }
}

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

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

    .newsletter-input {
        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-color: #ffffff;
    padding: 80px 0 100px;
    font-family: 'Libre Baskerville', serif;
    color: #333333;
  }

  .hero-section h1 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: hsl(60, 35%, 19%);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
  }

  .hero-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: hsl(60, 35%, 34%);
    margin-bottom: 35px;
    text-align: center;
  }

  .hero-content {
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-image-wrapper {
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 35px;
    text-align: left;
  }

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

  .hero-advantages li {
    padding: 12px 0 12px 45px;
    position: relative;
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
  }

  .hero-advantages li i {
    position: absolute;
    left: 0;
    top: 14px;
    color: hsl(60, 35%, 34%);
    font-size: 1.3rem;
  }

  .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 45px;
    flex-wrap: wrap;
  }

  .btn-primary-hero {
    background-color: hsl(60, 35%, 34%);
    color: #ffffff;
    padding: 14px 36px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }

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

  .btn-secondary-hero {
    background-color: transparent;
    color: hsl(60, 35%, 34%);
    padding: 14px 36px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid hsl(60, 35%, 34%);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-secondary-hero:hover {
    background-color: hsl(60, 35%, 34%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

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

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

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

    .hero-advantages li {
      font-size: 0.95rem;
      padding-left: 40px;
    }

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

    .btn-primary-hero,
    .btn-secondary-hero {
      width: 100%;
      max-width: 300px;
      text-align: center;
    }
  }

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

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

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

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

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

.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%;
  border-left: 4px solid hsl(60, 35%, 59%);
}

.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(60, 35%, 34%) 0%, hsl(60, 35%, 19%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(60, 35%, 59%);
}

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

.testimonial-card.featured .stars i {
  color: hsl(60, 35%, 59%);
}

.stars {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.stars i {
  color: hsl(60, 35%, 59%);
  margin-right: 3px;
}

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

.review-text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.customer-info {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

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

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: hsl(60, 35%, 59%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(60, 35%, 19%);
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

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

.customer-name {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(60, 35%, 19%);
  margin-bottom: 3px;
  font-size: 1.05rem;
}

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

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

.review-date {
  color: #999;
  font-size: 0.8rem;
  margin-top: 5px;
}

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

.compact-card {
  padding: 20px;
}

.compact-card .review-text {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.detailed-card {
  padding: 35px;
}

.detailed-card .review-text {
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
    margin-bottom: 20px;
  }
}

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

  .services-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(60, 35%, 19%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    border-color: hsl(60, 35%, 59%);
  }

  .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(60, 35%, 34%), hsl(60, 35%, 59%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(60, 35%, 59%), hsl(60, 35%, 34%));
  }

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

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

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

  .service-details {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    margin-top: auto;
  }

  .service-price {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(60, 35%, 34%);
    text-align: center;
    margin-bottom: 12px;
  }

  .service-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
  }

  .service-term {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .service-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: hsl(60, 35%, 34%);
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid hsl(60, 35%, 34%);
  }

  .service-btn:hover {
    background: hsl(60, 35%, 59%);
    border-color: hsl(60, 35%, 59%);
    color: #ffffff;
    transform: scale(1.02);
  }

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

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

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

.offer-section {
  background: linear-gradient(135deg, hsl(60, 35%, 34%) 0%, hsl(60, 35%, 19%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.deadline-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid hsl(60, 35%, 59%);
  border-radius: 20px;
  padding: 40px;
  margin: 50px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.deadline-date {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(60, 35%, 59%);
  margin: 0;
  line-height: 1;
}

.calendar-icon {
  font-size: 3rem;
  color: hsl(60, 35%, 59%);
  margin-bottom: 15px;
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, hsl(60, 35%, 34%), hsl(60, 35%, 59%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.benefit-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: hsl(60, 35%, 19%);
  margin-bottom: 12px;
}

.benefit-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.discount-highlight {
  background: hsl(60, 35%, 59%);
  color: hsl(60, 35%, 19%);
  font-family: 'Quicksand', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  padding: 30px;
  border-radius: 20px;
  display: inline-block;
  margin: 30px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.offer-cta-btn {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: hsl(60, 35%, 59%);
  color: hsl(60, 35%, 19%);
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  display: inline-block;
}

.offer-cta-btn:hover {
  background: hsl(60, 35%, 65%);
  color: hsl(60, 35%, 19%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .offer-heading {
    font-size: 2.2rem;
  }
  
  .deadline-date {
    font-size: 2.5rem;
  }
  
  .discount-highlight {
    font-size: 3rem;
    padding: 20px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .deadline-box {
    padding: 30px 20px;
  }
}

@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: #ffffff;
  }

  #credentials .section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: hsl(60, 35%, 19%);
    text-align: center;
    margin-bottom: 40px;
  }

  #credentials .trust-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
  }

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

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

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

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

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

    #credentials .trust-card {
      padding: 20px 10px;
    }

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

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

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

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

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

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

  .blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    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;
  }

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

  .blog-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 3px solid hsl(60, 35%, 59%);
  }

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

  .blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #777;
  }

  .blog-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blog-card-reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blog-card-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: hsl(60, 35%, 19%);
    margin-bottom: 15px;
    line-height: 1.4;
  }

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

  .blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(60, 35%, 34%);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, gap 0.3s ease;
  }

  .blog-card-link:hover {
    color: hsl(60, 35%, 19%);
    gap: 12px;
  }

  .blog-card-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .view-all-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 14px 40px;
    background-color: hsl(60, 35%, 34%);
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .view-all-btn:hover {
    background-color: hsl(60, 35%, 19%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }

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

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

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

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

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

    .view-all-btn {
      margin-top: 40px;
      padding: 12px 32px;
      font-size: 1rem;
    }
  }

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

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

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: hsl(60, 35%, 34%);
  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: 32px;
  color: #ffffff;
}

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

.disclaimer-content {
  background: #ffffff;
  padding: 50px 45px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(60, 35%, 59%);
}

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

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

@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(60, 35%, 34%);
    --secondary-color: hsl(60, 35%, 19%);
    --accent-color: hsl(60, 35%, 59%);
  }

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

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

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

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

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

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

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

  .policy-section {
    background-color: #fafaf8;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
  }

  .contact-box {
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    color: var(--secondary-color);
  }

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

  .highlight-box {
    background-color: #f5f5e8;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.3rem;
  }

@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(60, 35%, 34%);
    --secondary-color: hsl(60, 35%, 19%);
    --accent-color: hsl(60, 35%, 59%);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root {
    --primary-color: hsl(60, 35%, 34%);
    --secondary-color: hsl(60, 35%, 19%);
    --accent-color: hsl(60, 35%, 59%);
  }

  .thank-you-section {
    font-family: 'Libre Baskerville', serif;
    background: linear-gradient(135deg, hsl(60, 35%, 96%) 0%, hsl(60, 35%, 92%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
  }

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

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

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

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

  .thank-you-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
  }

  .thank-you-message {
    font-size: 1.125rem;
    line-height: 1.8;
    color: hsl(60, 10%, 40%);
    margin-bottom: 2rem;
  }

  .info-box {
    background: hsl(60, 35%, 95%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
  }

  .info-box h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }

  .info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .info-box li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: hsl(60, 10%, 35%);
  }

  .info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
  }

  .btn-home {
    font-family: 'Quicksand', sans-serif;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

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

  @media (max-width: 768px) {
    .thank-you-heading {
      font-size: 2rem;
    }

    .thank-you-container {
      padding: 2rem 1.5rem;
    }

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

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

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

    .info-box h3 {
      font-size: 1.125rem;
    }
  }