:root {
            --primary-color: hsl(197, 30%, 37%);
            --secondary-color: hsl(197, 30%, 22%);
            --accent-color: hsl(197, 30%, 62%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Crimson Text', serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Work Sans', sans-serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent-color);
        }
        
        .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%2851, 51, 51, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                margin-top: 1rem;
                padding-top: 1rem;
                border-top: 1px solid #e0e0e0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
            }
        }

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

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

  #about h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: hsl(197, 30%, 22%);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  #about h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: hsl(197, 30%, 37%);
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }

  #about p {
    color: #333333;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  #about .lead-text {
    font-size: 1.3rem;
    color: hsl(197, 30%, 37%);
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  #about .about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
  }

  #about .values-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }

  #about .values-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #333333;
    font-size: 1.125rem;
  }

  #about .values-list li:last-child {
    border-bottom: none;
  }

  #about .values-list strong {
    color: hsl(197, 30%, 37%);
    font-weight: 700;
    font-family: 'Work Sans', sans-serif;
  }

  #about .highlight-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid hsl(197, 30%, 62%);
    margin: 2rem 0;
  }

  #about .stats-row {
    margin-top: 3rem;
    padding: 2rem 0;
    background-color: hsl(197, 30%, 22%);
    border-radius: 8px;
  }

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

  #about .stat-number {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
  }

  #about .stat-label {
    color: hsl(197, 30%, 62%);
    font-size: 1rem;
  }

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

    #about h2 {
      font-size: 2rem;
    }

    #about h3 {
      font-size: 1.5rem;
    }

    #about p, #about .lead-text {
      font-size: 1rem;
    }

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

@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-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.75rem;
    color: hsl(197, 30%, 22%);
    margin-bottom: 1rem;
    text-align: center;
  }

  #portfolio .section-subtitle {
    font-size: 1.25rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

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

  #portfolio .filter-btn {
    font-family: 'Work Sans', sans-serif;
    padding: 10px 28px;
    border: 2px solid hsl(197, 30%, 37%);
    background: #ffffff;
    color: hsl(197, 30%, 37%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(197, 30%, 37%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

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

  #portfolio .portfolio-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 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 30px rgba(0, 0, 0, 0.15);
  }

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

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

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

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

  #portfolio .portfolio-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(197, 30%, 22%);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  #portfolio .portfolio-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  #portfolio .view-details {
    font-family: 'Work Sans', sans-serif;
    color: hsl(197, 30%, 37%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }

  #portfolio .view-details:hover {
    gap: 12px;
    color: hsl(197, 30%, 22%);
  }

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

  #portfolio .modal-header {
    background: linear-gradient(135deg, hsl(197, 30%, 37%) 0%, hsl(197, 30%, 22%) 100%);
    color: #ffffff;
    border-radius: 12px 12px 0 0;
    padding: 25px 30px;
  }

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

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

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

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

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

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

  #portfolio .modal-details h5 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: hsl(197, 30%, 22%);
    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 #dee2e6;
  }

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

  #portfolio .modal-details strong {
    color: hsl(197, 30%, 22%);
    font-weight: 600;
  }

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

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

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

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

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

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

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

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

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

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

  #advantages .section-header h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(197, 30%, 22%);
    margin-bottom: 20px;
  }

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

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    border-color: hsl(197, 30%, 62%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

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

  #advantages .advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, hsl(197, 30%, 62%) 0%, hsl(197, 30%, 37%) 100%);
    transform: rotate(360deg);
  }

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

  #advantages .advantage-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: hsl(197, 30%, 22%);
    margin-bottom: 15px;
    text-align: center;
  }

  #advantages .advantage-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

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

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

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

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

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

    #advantages .advantage-icon {
      width: 60px;
      height: 60px;
    }

    #advantages .advantage-icon i {
      font-size: 28px;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&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(197, 30%, 37%) 0%, hsl(197, 30%, 62%) 100%);
  }

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

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

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

  #statistics .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

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

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

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

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

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

  #statistics .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
  }

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

  #statistics .stat-number {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(197, 30%, 22%);
    margin-bottom: 10px;
    display: block;
  }

  #statistics .stat-label {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    font-weight: 600;
  }

  #statistics .stat-context {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
  }

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

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

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

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

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

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

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

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

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

footer {
  background: hsl(197, 30%, 22%);
  color: #f8f9fa;
  padding: 3rem 0 1rem;
  font-family: 'Crimson Text', serif;
}

footer h5 {
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

footer p, footer a, footer li {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.8;
}

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

footer a:hover {
  color: hsl(197, 30%, 62%);
}

footer .company-description {
  margin-bottom: 1.5rem;
  max-width: 400px;
}

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

footer .contact-info li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

footer .contact-info li i {
  margin-right: 0.5rem;
  color: hsl(197, 30%, 62%);
  min-width: 20px;
}

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

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

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

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

footer .policy-links a {
  color: #b0b0b0;
  font-size: 0.9rem;
}

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

#cookieNotice .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

#cookieNotice h5 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(197, 30%, 22%);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

#cookieNotice p {
  font-family: 'Crimson Text', serif;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

#cookieNotice .cookie-categories {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

#cookieNotice .cookie-category {
  margin-bottom: 0.8rem;
  padding: 0.5rem;
  border-left: 3px solid hsl(197, 30%, 62%);
  background: #ffffff;
}

#cookieNotice .cookie-category:last-child {
  margin-bottom: 0;
}

#cookieNotice .cookie-category strong {
  font-family: 'Work Sans', sans-serif;
  color: hsl(197, 30%, 22%);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

#cookieNotice .cookie-category span {
  font-family: 'Crimson Text', serif;
  color: #555;
  font-size: 0.9rem;
}

#cookieNotice .cookie-category.required {
  border-left-color: #28a745;
}

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

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

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

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

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

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

#cookieNotice .btn-manage:hover {
  background: hsl(197, 30%, 37%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  footer {
    padding: 2rem 0 1rem;
  }
  
  footer h5 {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
  
  footer .company-description {
    max-width: 100%;
  }
  
  #cookieNotice {
    padding: 1rem 0;
  }
  
  #cookieNotice h5 {
    font-size: 1.1rem;
  }
  
  #cookieNotice .cookie-buttons {
    flex-direction: column;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    width: 100%;
    text-align: center;
  }
}

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

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

  .contact-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: hsl(197, 30%, 22%);
    margin-bottom: 20px;
    font-size: 2.5rem;
  }

  .contact-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    line-height: 1.6;
  }

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

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

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

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

  .contact-form .form-control:focus {
    border-color: hsl(197, 30%, 37%);
    box-shadow: 0 0 0 0.2rem rgba(79, 123, 134, 0.15);
  }

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

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

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

  .contact-form .btn-submit:hover {
    background: hsl(197, 30%, 22%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

  .contact-info-wrapper {
    background: hsl(197, 30%, 37%);
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

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

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

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

  .contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
  }

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

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

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

  .contact-info-content a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
  }

  .contact-info-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
  }

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

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

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

  .contact-hours-list .day {
    font-weight: 600;
  }

  .contact-hours-list .time {
    opacity: 0.9;
  }

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

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

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

    .contact-info-wrapper {
      margin-top: 30px;
    }
  }

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

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

    .contact-form-wrapper,
    .contact-info-wrapper {
      padding: 25px;
    }

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

    .contact-info-icon {
      width: 45px;
      height: 45px;
      margin-right: 15px;
    }

    .contact-info-icon svg {
      width: 20px;
      height: 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(197, 30%, 37%);
    --secondary-color: hsl(197, 30%, 22%);
    --accent-color: hsl(197, 30%, 62%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
  }
  
  .policy-intro p {
    margin-bottom: 0;
    font-size: 1.2rem;
  }
  
  .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;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }
  
  .contact-box h3 {
    margin-top: 0;
  }
  
  .badge-custom {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .section-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 2.5rem 0;
  }

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

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

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

.faq-section .section-header h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: hsl(197, 30%, 22%);
  margin-bottom: 20px;
}

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

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

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

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

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

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: hsl(197, 30%, 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='%23456777'%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: 30px;
  background-color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

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

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

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

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

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

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

  .faq-section .section-header p {
    font-size: 1.05rem;
  }

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

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

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

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

  #newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  #newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

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

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

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

  .newsletter-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    color: #f8f9fa;
    margin-bottom: 40px;
    line-height: 1.7;
  }

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

  .newsletter-input-wrapper {
    flex: 1;
    min-width: 280px;
  }

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

  .newsletter-email-input:focus {
    outline: none;
    border-color: hsl(197, 30%, 62%);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

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

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

  .newsletter-submit-btn:hover {
    background: hsl(197, 30%, 62%);
    border-color: hsl(197, 30%, 62%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }

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

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

  .newsletter-benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(197, 30%, 62%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .newsletter-benefit-icon::after {
    content: '✓';
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
  }

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

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

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

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

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

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

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

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

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

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

@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 60px;
    position: relative;
    overflow: hidden;
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: hsl(197, 30%, 62%, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
  }

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

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

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

  .hero-description {
    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: 2.5rem 0;
  }

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

  .hero-advantages li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: hsl(197, 30%, 62%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-advantages li::after {
    content: '✓';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
  }

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

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

  .btn-hero-primary:hover {
    background: hsl(197, 30%, 22%);
    border-color: hsl(197, 30%, 22%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

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

  .btn-hero-secondary:hover {
    background: hsl(197, 30%, 37%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

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

  .hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, hsl(197, 30%, 62%) 0%, hsl(197, 30%, 37%) 100%);
    border-radius: 16px;
    z-index: -1;
  }

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

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

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

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

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

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

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

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

.credentials-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(197, 30%, 22%);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

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

.credential-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.credential-card h5 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(197, 30%, 22%);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-section h2 {
    font-size: 1.6rem;
  }
  
  .credential-card {
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .credential-card {
    margin-bottom: 1.5rem;
  }
}

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

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

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
  }

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

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

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

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(197, 30%, 37%), hsl(197, 30%, 62%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
  }

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

  .service-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(197, 30%, 22%);
    margin-bottom: 1rem;
  }

  .service-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .service-price {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(197, 30%, 37%);
    margin-bottom: 0.5rem;
  }

  .service-terms {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 1.5rem;
  }

  .service-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: hsl(197, 30%, 37%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid hsl(197, 30%, 37%);
  }

  .service-btn:hover {
    background: hsl(197, 30%, 22%);
    border-color: hsl(197, 30%, 22%);
    color: #ffffff;
    transform: scale(1.05);
  }

  .service-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.deadline-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 500;
}

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

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

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

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

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

.benefit-icon {
  width: 28px;
  height: 28px;
  background: hsl(197, 30%, 37%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}

.discount-highlight {
  background: hsl(197, 30%, 62%);
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
}

.discount-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

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

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

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

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

  .offer-title {
    font-size: 36px;
  }

  .offer-description {
    font-size: 18px;
  }

  .offer-card {
    padding: 35px 25px;
  }

  .deadline-date {
    font-size: 32px;
    flex-direction: column;
    gap: 10px;
  }

  .discount-text {
    font-size: 26px;
  }

  .benefits-list li {
    font-size: 17px;
  }

  .offer-btn {
    padding: 16px 40px;
    font-size: 16px;
  }
}

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

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

.testimonials-section .section-subtitle {
  color: hsl(197, 30%, 37%);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 50px;
  font-style: italic;
}

.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;
  border-left: 4px solid hsl(197, 30%, 62%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.testimonial-name {
  font-family: 'Work Sans', sans-serif;
  color: hsl(197, 30%, 22%);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-location {
  color: hsl(197, 30%, 37%);
  font-size: 0.95rem;
}

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

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

.testimonial-rating .star.empty {
  color: #e0e0e0;
}

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

.testimonial-badge {
  display: inline-block;
  background: hsl(197, 30%, 95%);
  color: hsl(197, 30%, 37%);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: auto;
}

.testimonial-card.featured {
  border-left-color: hsl(197, 30%, 37%);
  background: linear-gradient(135deg, #ffffff 0%, hsl(197, 30%, 98%) 100%);
}

.testimonial-card.compact .testimonial-text {
  font-size: 1.05rem;
}

.testimonial-quote {
  color: hsl(197, 30%, 62%);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}

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

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

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

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

  #blog .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(197, 30%, 22%);
    margin-bottom: 15px;
  }

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

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

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

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

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

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

  #blog .blog-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 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: hsl(197, 30%, 22%);
    font-weight: 600;
    backdrop-filter: blur(5px);
  }

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

  #blog .blog-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: hsl(197, 30%, 22%);
    margin-bottom: 18px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  #blog .blog-card:hover .blog-title {
    color: hsl(197, 30%, 37%);
  }

  #blog .blog-excerpt {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 25px;
    flex-grow: 1;
  }

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

  #blog .blog-link:hover {
    color: hsl(197, 30%, 22%);
    gap: 12px;
  }

  #blog .blog-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
  }

  #blog .blog-link:hover svg {
    transform: translateX(4px);
  }

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

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

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

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

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

    #blog .section-subtitle {
      font-size: 1.05rem;
    }

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

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

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

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

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

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

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: hsl(197, 30%, 37%);
  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: 36px;
  color: #ffffff;
}

.disclaimer-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: hsl(197, 30%, 22%);
  text-align: center;
  margin-bottom: 40px;
}

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

.disclaimer-text {
  font-size: 1.1rem;
  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;
    margin-bottom: 30px;
  }

  .disclaimer-content {
    padding: 35px 25px;
  }

  .disclaimer-text {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
  }

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

  .disclaimer-icon i {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .disclaimer-content {
    padding: 30px 20px;
    border-left-width: 3px;
  }

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

@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(197, 30%, 37%);
    --secondary-color: hsl(197, 30%, 22%);
    --accent-color: hsl(197, 30%, 62%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    color: var(--secondary-color);
    line-height: 1.8;
    font-size: 1.1rem;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .info-box {
    background-color: hsl(197, 30%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.25rem;
  }
  
  .contact-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }
  
  .contact-section h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-section a {
    color: var(--accent-color);
  }
  
  .contact-section a:hover {
    color: white;
  }
  
  .last-updated {
    font-style: italic;
    color: var(--accent-color);
    margin-top: 1rem;
    font-size: 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(197, 30%, 37%);
    --secondary-color: hsl(197, 30%, 22%);
    --accent-color: hsl(197, 30%, 62%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    color: var(--secondary-color);
    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(--primary-color);
    font-weight: 700;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 1.85rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 20px;
  }
  
  .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.4rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--primary-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .effective-date {
    background-color: hsl(197, 30%, 95%);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .contact-box {
    background-color: hsl(197, 30%, 95%);
    border: 2px solid var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2.5rem;
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--primary-color);
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 2.5rem 0;
  }