:root {
            --primary-color: hsl(159, 37%, 37%);
            --secondary-color: hsl(159, 37%, 22%);
            --accent-color: hsl(159, 37%, 62%);
        }
        
        body {
            font-family: 'Crimson Text', serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .nav-link {
            font-family: 'Work Sans', sans-serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .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(72, 126, 106, 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(72, 126, 106, 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: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    color: #333;
  }

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

  #about .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(159, 37%, 22%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

  #about .story-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 50px;
  }

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

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

  #about .story-highlight {
    color: hsl(159, 37%, 30%);
    font-weight: 600;
  }

  #about .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  #about .about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  #about .about-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.18);
  }

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

  #about .values-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(159, 37%, 22%);
    text-align: center;
    margin-bottom: 50px;
  }

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

  #about .value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid hsl(159, 37%, 85%);
    transition: all 0.3s ease;
  }

  #about .value-card:hover {
    border-color: hsl(159, 37%, 37%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  #about .value-icon {
    font-size: 3rem;
    color: hsl(159, 37%, 37%);
    margin-bottom: 20px;
  }

  #about .value-name {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(159, 37%, 22%);
    margin-bottom: 15px;
  }

  #about .value-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
  }

  #about .mission-vision {
    background: linear-gradient(135deg, hsl(159, 37%, 37%) 0%, hsl(159, 37%, 22%) 100%);
    color: #ffffff;
    padding: 60px;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  }

  #about .mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  #about .mission-block h3,
  #about .vision-block h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
  }

  #about .mission-block p,
  #about .vision-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f0f0f0;
  }

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

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

    #about .story-container {
      padding: 35px;
    }

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

    #about .mission-vision-grid {
      grid-template-columns: 1fr;
      gap: 35px;
    }
  }

  @media (max-width: 768px) {
    #about .section-title {
      font-size: 2rem;
    }

    #about .image-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

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

    #about .story-container {
      padding: 25px;
    }

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

    #about .mission-vision {
      padding: 30px 20px;
    }
  }

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

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

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

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

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

  #portfolio .section-header p {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 25px 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: 'Work Sans', sans-serif;
    padding: 10px 28px;
    border: 2px solid hsl(159, 37%, 37%);
    background: #fff;
    color: hsl(159, 37%, 37%);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(159, 37%, 37%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 123, 103, 0.3);
  }

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

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

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

  #portfolio .portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
  }

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

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

  #portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(67, 123, 103, 0.7), rgba(42, 77, 64, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  #portfolio .overlay-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: hsl(159, 37%, 37%);
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
  }

  #portfolio .portfolio-item:hover .overlay-icon {
    transform: scale(1);
  }

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

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

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

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

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

  #portfolio .modal-header {
    background: linear-gradient(135deg, hsl(159, 37%, 37%), hsl(159, 37%, 22%));
    color: #fff;
    border: none;
    padding: 25px 30px;
  }

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

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

  #portfolio .btn-close:hover {
    opacity: 1;
  }

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

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

  #portfolio .modal-category {
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    background: hsl(159, 37%, 62%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  #portfolio .modal-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
  }

  #portfolio .modal-details h5 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  #portfolio .modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #portfolio .modal-details li {
    padding: 8px 0;
    color: #555;
    font-size: 1.05rem;
    border-bottom: 1px solid #e0e0e0;
  }

  #portfolio .modal-details li:last-child {
    border-bottom: none;
  }

  #portfolio .modal-details li strong {
    color: hsl(159, 37%, 37%);
    font-weight: 600;
    margin-right: 10px;
  }

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

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

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

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

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

    #portfolio .portfolio-image {
      height: 240px;
    }

    #portfolio .modal-body {
      padding: 25px 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(159, 37%, 37%);
    border-radius: 2px;
  }

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

  #advantages .advantage-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 transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
  }

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

  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    border-color: hsl(159, 37%, 62%);
    box-shadow: 0 12px 35px rgba(60, 128, 103, 0.2);
  }

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

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

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(60, 128, 103, 0.3);
  }

  #advantages .icon-wrapper i {
    font-size: 2.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.8;
    text-align: center;
  }

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

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

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

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

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

    #advantages .advantage-description {
      font-size: 1rem;
    }
  }

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

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

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

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

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

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

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

.statistics-header h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    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(159, 37%, 37%);
}

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

.stat-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    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 15px 35px rgba(0,0,0,0.15);
    border-color: hsl(159, 37%, 62%);
}

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

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, hsl(159, 37%, 62%) 0%, hsl(159, 37%, 37%) 100%);
    transform: rotate(360deg);
}

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

.stat-number {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(159, 37%, 22%);
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-context {
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

@media (max-width: 768px) {
    #statistics {
        padding: 60px 0;
    }
    
    .statistics-header h2 {
        font-size: 2rem;
    }
    
    .statistics-header p {
        font-size: 1.1rem;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
}

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

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

footer {
  background: linear-gradient(135deg, hsl(159, 37%, 22%) 0%, hsl(159, 37%, 15%) 100%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Crimson Text', serif;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(159, 37%, 62%);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e9ecef;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: #e9ecef;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: hsl(159, 37%, 62%);
  padding-left: 5px;
}

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

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-info i {
  color: hsl(159, 37%, 62%);
  margin-right: 10px;
  margin-top: 3px;
  min-width: 20px;
}

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

.contact-info a:hover {
  color: hsl(159, 37%, 62%);
}

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

.business-hours p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #e9ecef;
}

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

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

.policy-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.policy-links a {
  color: #adb5bd;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.policy-links a:hover {
  color: hsl(159, 37%, 62%);
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 25px 0;
  border-top: 3px solid hsl(159, 37%, 37%);
}

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

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

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

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

.cookie-category {
  display: flex;
  align-items: flex-start;
  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-icon {
  color: hsl(159, 37%, 37%);
  margin-right: 12px;
  margin-top: 3px;
  font-size: 1.2rem;
}

.cookie-category-content h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.cookie-category-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.cookie-required {
  display: inline-block;
  background: hsl(159, 37%, 37%);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 600;
}

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

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

.cookie-btn {
  font-family: 'Work Sans', sans-serif;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn-accept {
  background: hsl(159, 37%, 37%);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: hsl(159, 37%, 32%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-btn-reject {
  background: #6c757d;
  color: #fff;
}

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

.cookie-btn-settings {
  background: transparent;
  color: hsl(159, 37%, 37%);
  border: 2px solid hsl(159, 37%, 37%);
}

.cookie-btn-settings:hover {
  background: hsl(159, 37%, 37%);
  color: #fff;
  transform: translateY(-2px);
}

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 1.2rem;
  }

  #cookieNotice {
    padding: 20px 0;
  }

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

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

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .policy-links {
    flex-direction: column;
    gap: 10px;
  }
}

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

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

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(159, 37%, 62%, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.contact-section .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: hsl(159, 37%, 22%);
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-form-wrapper {
    flex: 1.2;
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
    color: hsl(159, 37%, 22%);
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form label .required {
    color: #dc3545;
    margin-left: 3px;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: hsl(159, 37%, 37%);
    background: #ffffff;
    box-shadow: 0 0 0 3px hsl(159, 37%, 62%, 0.15);
}

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

.contact-form .submit-btn {
    background: hsl(159, 37%, 37%);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
    width: 100%;
    margin-top: 10px;
}

.contact-form .submit-btn:hover {
    background: hsl(159, 37%, 22%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.contact-info-wrapper {
    flex: 0.8;
    background: hsl(159, 37%, 37%);
    padding: 40px 35px;
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-info-wrapper h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.7rem;
    margin-bottom: 30px;
    font-weight: 600;
}

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

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

.contact-icon {
    width: 45px;
    height: 45px;
    background: hsl(159, 37%, 62%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    color: hsl(159, 37%, 22%);
}

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

.contact-info-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.95);
}

.contact-info-content a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-info-content a:hover {
    color: hsl(159, 37%, 62%);
    text-decoration: underline;
}

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

.hours-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 1.05rem;
}

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

@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        flex: 1;
        width: 100%;
    }
    
    .contact-header h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-info-wrapper {
        padding: 30px 25px;
    }
    
    .contact-form-wrapper h3,
    .contact-info-wrapper h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-info-wrapper {
        padding: 25px 20px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(159, 37%, 37%);
    --secondary-color: hsl(159, 37%, 22%);
    --accent-color: hsl(159, 37%, 62%);
  }
  
  .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: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 1.875rem;
    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: 5px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.25rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .info-box {
    background-color: hsl(159, 37%, 95%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }
  
  .contact-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 3rem;
  }
  
  .contact-box h3 {
    color: white;
    margin-bottom: 1.5rem;
  }
  
  .contact-box a {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }
  
  .contact-box a:hover {
    color: white;
  }
  
  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    text-align: center;
  }
  
  .cookie-table {
    margin: 2rem 0;
  }
  
  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
  }
  
  .cookie-table td {
    vertical-align: middle;
  }

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

  .faq-section h2 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(159, 37%, 22%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

  .faq-accordion .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
  }

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

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

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

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

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

  .faq-accordion .accordion-body strong {
    color: hsl(159, 37%, 22%);
    font-weight: 600;
  }

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

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

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

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(159, 37%, 37%) 0%, hsl(159, 37%, 22%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(159, 37%, 62%);
    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: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
}

.newsletter-icon svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

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

.newsletter-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

.benefit-item svg {
    width: 20px;
    height: 20px;
    fill: hsl(159, 37%, 62%);
    flex-shrink: 0;
}

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

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

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: hsl(159, 37%, 62%);
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit {
    padding: 18px 45px;
    background: hsl(159, 37%, 62%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background: hsl(159, 37%, 52%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-privacy {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 15px;
}

.newsletter-privacy a {
    color: hsl(159, 37%, 62%);
    text-decoration: none;
    border-bottom: 1px solid hsl(159, 37%, 62%);
    transition: all 0.3s ease;
}

.newsletter-privacy a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

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

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

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

    .form-group-newsletter {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-submit {
        width: 100%;
    }

    .newsletter-benefits {
        gap: 20px;
    }

    .benefit-item {
        font-size: 0.95rem;
    }
}

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

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

    .newsletter-input {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .newsletter-submit {
        padding: 15px 35px;
        font-size: 1rem;
    }

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

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

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

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

.hero-section h1 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: hsl(159, 37%, 22%);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: hsl(159, 37%, 37%);
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-family: 'Crimson Text', serif;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.hero-advantages li {
  font-family: 'Crimson Text', serif;
  font-size: 1.125rem;
  color: #333;
  padding: 0.75rem 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(159, 37%, 37%);
  font-size: 1.25rem;
  font-weight: bold;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  height: 100%;
  min-height: 500px;
}

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

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

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

.btn-hero-primary {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  background-color: hsl(159, 37%, 37%);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid hsl(159, 37%, 37%);
  font-size: 1.125rem;
}

.btn-hero-primary:hover {
  background-color: hsl(159, 37%, 22%);
  border-color: hsl(159, 37%, 22%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.btn-hero-secondary:hover {
  background-color: hsl(159, 37%, 37%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

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

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

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

  .hero-image-wrapper {
    min-height: 400px;
    margin-bottom: 2rem;
  }

  .hero-content {
    padding: 1rem;
  }

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

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

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

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

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

  .hero-image-wrapper {
    min-height: 300px;
  }
}

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

.credentials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(159, 37%, 37%), transparent);
}

.credentials-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(159, 37%, 22%);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 15px;
}

.credentials-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: hsl(159, 37%, 37%);
  border-radius: 2px;
}

.credential-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.credential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-color: hsl(159, 37%, 62%);
}

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

.credential-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  
  .credential-card {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .credentials-title {
    font-size: 1.4rem;
  }
  
  .credential-icon {
    font-size: 2rem;
  }
  
  .credential-text {
    font-size: 0.9rem;
  }
}

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

.testimonials-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(159, 37%, 22%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid hsl(159, 37%, 62%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.testimonial-card.style-2 {
  border-left: none;
  border-top: 4px solid hsl(159, 37%, 37%);
  background: linear-gradient(to bottom right, #ffffff, #f8f9fa);
}

.testimonial-card.style-3 {
  border-left: none;
  border-radius: 20px;
  background: hsl(159, 37%, 37%);
  color: #ffffff;
}

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

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

.testimonial-card.style-3 .customer-location {
  color: rgba(255,255,255,0.85);
}

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

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

.testimonial-card.style-3 .customer-avatar {
  background: rgba(255,255,255,0.2);
}

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

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

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

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

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

.rating .star.empty {
  color: #ddd;
}

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

.testimonial-date {
  color: #999;
  font-size: 0.9rem;
  margin-top: 15px;
  text-align: right;
}

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

.testimonial-highlight {
  background: #fff3cd;
  border-left: 3px solid #ffc107;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
}

.testimonial-highlight .testimonial-text {
  font-style: italic;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .customer-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

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

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

.services-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  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.8;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(64, 110, 91, 0.15);
  border-color: hsl(159, 37%, 62%);
}

.service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(159, 37%, 37%) 0%, hsl(159, 37%, 22%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, hsl(159, 37%, 62%) 0%, hsl(159, 37%, 37%) 100%);
  transform: rotate(360deg);
}

.service-content {
  flex-grow: 1;
}

.service-content h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 0.8rem;
}

.service-content p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-price {
  display: inline-block;
  background: hsl(159, 37%, 62%);
  color: #222;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-terms {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-section h2 {
    font-size: 2.2rem;
  }
  
  .service-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .service-icon {
    margin-bottom: 1rem;
  }
  
  .service-content h3 {
    font-size: 1.4rem;
  }
}

.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(159, 37%, 95%) 0%, hsl(159, 37%, 85%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.offer-heading {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

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

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

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

.deadline-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    color: hsl(159, 37%, 85%);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

.benefits-list li {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    color: #333;
    padding: 18px 0;
    border-bottom: 1px solid hsl(159, 37%, 90%);
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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

.discount-highlight {
    background: hsl(159, 37%, 62%);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
}

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

.discount-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
}

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

.btn-offer {
    background: hsl(159, 37%, 37%);
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-offer:hover {
    background: hsl(159, 37%, 22%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .offer-section {
        padding: 60px 0;
    }
    
    .offer-heading {
        font-size: 2rem;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .deadline-date {
        font-size: 2rem;
        flex-direction: column;
    }
    
    .discount-percentage {
        font-size: 3rem;
    }
    
    .benefits-list li {
        font-size: 1.05rem;
    }
}

.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(159, 37%, 62%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .blog-section-header h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(159, 37%, 22%);
    margin-bottom: 15px;
  }

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

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

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

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

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

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

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

  .blog-meta-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: hsl(159, 37%, 22%);
    display: flex;
    align-items: center;
    gap: 5px;
  }

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

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

  .blog-card-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-card-title a:hover {
    color: hsl(159, 37%, 37%);
  }

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

  .blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
  }

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

  .blog-read-more:hover {
    color: hsl(159, 37%, 22%);
    gap: 12px;
  }

  .blog-read-more::after {
    content: '→';
    font-size: 1.2rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.disclaimer-icon {
  font-size: 48px;
  color: hsl(159, 37%, 37%);
  margin-bottom: 25px;
  display: inline-block;
}

.disclaimer-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 30px;
  font-weight: 600;
}

.disclaimer-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-container {
    padding: 35px 25px;
    margin: 0 15px;
  }
  
  .disclaimer-title {
    font-size: 1.8rem;
  }
  
  .disclaimer-text {
    font-size: 1rem;
  }
  
  .disclaimer-icon {
    font-size: 40px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(159, 37%, 37%);
    --secondary-color: hsl(159, 37%, 22%);
    --accent-color: hsl(159, 37%, 62%);
  }
  
  .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;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.8rem;
  }
  
  .policy-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: white;
    border-bottom-color: white;
  }
  
  .contact-box a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }
  
  .highlight-box {
    background-color: rgba(159, 37%, 37%, 0.05);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 3rem 0;
    border: none;
  }
  
  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-top: 1rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(159, 37%, 37%);
    --secondary-color: hsl(159, 37%, 22%);
    --accent-color: hsl(159, 37%, 62%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    color: #2c3e50;
    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;
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }
  
  .policy-content h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    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: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.8rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .info-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .info-box p {
    margin-bottom: 0.5rem;
  }
  
  .highlight-section {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }
  
  .date-updated {
    font-style: italic;
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }