:root {
            --primary: hsl(194, 35%, 49%);
            --secondary: hsl(194, 35%, 34%);
            --accent: hsl(194, 35%, 74%);
        }
        
        body {
            font-family: 'Crimson Text', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--secondary);
        }
        
        .navbar-brand:hover {
            color: var(--primary);
        }
        
        .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);
        }
        
        .navbar-toggler {
            border-color: var(--primary);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(94, 156, 174, 0.25);
        }

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

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(194, 35%, 34%);
  font-weight: 600;
}

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  margin-top: 3rem;
}

.about-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: hsl(194, 35%, 49%);
}

.about-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #444;
}

.about-hero {
  background: linear-gradient(135deg, hsl(194, 35%, 49%) 0%, hsl(194, 35%, 34%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
}

.about-hero h1 {
  color: #ffffff;
  text-align: center;
}

.about-hero .lead {
  color: #f8f9fa;
  text-align: center;
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.story-block {
  background-color: #f8f9fa;
  padding: 50px 40px;
  border-radius: 15px;
  margin: 40px 0;
  border-left: 5px solid hsl(194, 35%, 49%);
}

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

.value-card {
  background-color: #ffffff;
  padding: 35px 28px;
  border-radius: 12px;
  border: 2px solid hsl(194, 35%, 74%);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-color: hsl(194, 35%, 49%);
}

.value-card h3 {
  margin-bottom: 0.8rem;
}

.value-card p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.stats-section {
  background-color: hsl(194, 35%, 34%);
  padding: 50px 0;
  margin: 60px 0;
  border-radius: 15px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

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

.stat-label {
  color: hsl(194, 35%, 74%);
  font-size: 1.1rem;
}

.mission-vision {
  margin-top: 50px;
}

.mission-box,
.vision-box {
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.mission-box {
  background: linear-gradient(135deg, hsl(194, 35%, 74%) 0%, hsl(194, 35%, 84%) 100%);
}

.vision-box {
  background: linear-gradient(135deg, hsl(194, 35%, 84%) 0%, hsl(194, 35%, 74%) 100%);
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.expertise-list li {
  padding: 15px 20px;
  margin-bottom: 12px;
  background-color: #f8f9fa;
  border-left: 4px solid hsl(194, 35%, 49%);
  border-radius: 8px;
  font-size: 1.1rem;
  color: #333;
}

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

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

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

  .about-hero {
    padding: 40px 0;
  }

  .story-block {
    padding: 35px 25px;
  }

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

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

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

  .portfolio-section .section-subtitle {
    font-family: 'Crimson Text', serif;
    color: #555;
    font-size: 1.15rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .filter-buttons {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .filter-btn {
    font-family: 'Work Sans', sans-serif;
    padding: 10px 24px;
    border: 2px solid hsl(194, 35%, 49%);
    background: #fff;
    color: hsl(194, 35%, 34%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(194, 35%, 49%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

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

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

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

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

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

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

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

  .portfolio-content {
    padding: 25px;
  }

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

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

  .portfolio-description {
    font-family: 'Crimson Text', serif;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .view-details-btn {
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    padding: 10px 22px;
    background: hsl(194, 35%, 49%);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
  }

  .view-details-btn:hover {
    background: hsl(194, 35%, 34%);
    color: #fff;
    transform: translateX(5px);
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(194, 35%, 49%) 0%, hsl(194, 35%, 34%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
  }

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

  .modal-body {
    padding: 35px;
  }

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

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

  .modal-description {
    font-family: 'Crimson Text', serif;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }

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

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

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

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

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

  .modal-details li strong {
    color: #222;
    font-weight: 600;
  }

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

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

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

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

    .filter-buttons {
      gap: 8px;
    }

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

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

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

  #advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(194, 35%, 49%) 0%, hsl(194, 35%, 74%) 100%);
  }

  #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: 15px;
    position: relative;
    display: inline-block;
  }

  #advantages .section-subtitle {
    font-family: 'Crimson Text', serif;
    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 5px 20px 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: hsl(194, 35%, 49%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    border-color: hsl(194, 35%, 74%);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }

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

  #advantages .icon-wrapper {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(194, 35%, 49%) 0%, hsl(194, 35%, 34%) 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 .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(194, 35%, 34%) 0%, hsl(194, 35%, 49%) 100%);
  }

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

  #advantages .advantage-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
  }

  #advantages .advantage-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    text-align: center;
  }

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;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(194, 35%, 49%) 0%, hsl(194, 35%, 74%) 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(194, 35%, 49%);
  }

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

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

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

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: hsl(194, 35%, 49%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

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

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

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

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

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

  .stat-number {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: hsl(194, 35%, 34%);
    margin-bottom: 10px;
    line-height: 1;
  }

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

  .stat-context {
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
  }

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

  .stat-card {
    animation: countUp 0.6s ease forwards;
  }

  .stat-card:nth-child(1) { animation-delay: 0.1s; opacity: 0; }
  .stat-card:nth-child(2) { animation-delay: 0.2s; opacity: 0; }
  .stat-card:nth-child(3) { animation-delay: 0.3s; opacity: 0; }
  .stat-card:nth-child(4) { animation-delay: 0.4s; opacity: 0; }
  .stat-card:nth-child(5) { animation-delay: 0.5s; opacity: 0; }
  .stat-card:nth-child(6) { animation-delay: 0.6s; opacity: 0; }

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

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

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

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

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

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

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

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

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

    .stat-icon i {
      font-size: 1.75rem;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(194, 35%, 34%) 0%, hsl(194, 35%, 49%) 100%);
  color: #ffffff;
  padding: 4rem 0 1rem;
  font-family: 'Crimson Text', serif;
  margin-top: 5rem;
}

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

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

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

footer a:hover {
  color: hsl(194, 35%, 74%);
  padding-left: 5px;
}

.footer-description {
  max-width: 350px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.footer-contact-item i {
  color: hsl(194, 35%, 74%);
  font-size: 1.1rem;
  margin-top: 3px;
  min-width: 20px;
}

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

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

.footer-links a {
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: hsl(194, 35%, 74%);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

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

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

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

.footer-bottom a:hover {
  color: hsl(194, 35%, 74%);
  padding-left: 0;
}

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

.business-hours-list li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  max-width: 280px;
}

.business-hours-list .day {
  font-weight: 500;
}

.business-hours-list .hours {
  color: hsl(194, 35%, 74%);
}

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

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

#cookieNotice h4 {
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.cookie-categories {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid hsl(194, 35%, 49%);
}

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

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

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

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

.cookie-category-required {
  display: inline-block;
  background: hsl(194, 35%, 49%);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 0.5rem;
  font-weight: 500;
}

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

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

.cookie-btn-accept {
  background: #28a745;
  color: #ffffff;
}

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

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

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

.cookie-btn-manage {
  background: transparent;
  color: hsl(194, 35%, 34%);
  border: 2px solid hsl(194, 35%, 49%);
}

.cookie-btn-manage:hover {
  background: hsl(194, 35%, 49%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(84, 153, 171, 0.3);
}

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

  footer h5 {
    margin-top: 2rem;
  }

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

  .footer-description {
    max-width: 100%;
  }

  .business-hours-list li {
    max-width: 100%;
  }

  #cookieNotice {
    padding: 1.5rem 0;
  }

  #cookieNotice h4 {
    font-size: 1.25rem;
  }

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

  .cookie-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }

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

@media (max-width: 576px) {
  .business-hours-list li {
    flex-direction: column;
    gap: 0.25rem;
  }
}

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

.contact-section .section-subtitle {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.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: #222;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.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: 1.05rem;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: hsl(194, 35%, 49%);
    box-shadow: 0 0 0 0.2rem rgba(81, 146, 168, 0.15);
}

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

.contact-form .required-mark {
    color: hsl(194, 35%, 49%);
    margin-left: 3px;
}

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

.contact-form .btn-submit:hover {
    background: hsl(194, 35%, 34%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(81, 146, 168, 0.3);
}

.contact-info-wrapper {
    background: hsl(194, 35%, 49%);
    padding: 40px;
    border-radius: 12px;
    color: #ffffff;
    height: 100%;
}

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

.contact-info-item {
    margin-bottom: 2rem;
    padding-left: 50px;
    position: relative;
}

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

.contact-info-item .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

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

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

.contact-info-item 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;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
}

.contact-hours-list li strong {
    display: inline-block;
    min-width: 100px;
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        margin-top: 2rem;
    }
}

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

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

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

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

@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(194, 35%, 49%);
    --secondary-color: hsl(194, 35%, 34%);
    --accent-color: hsl(194, 35%, 74%);
  }
  
  .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;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 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: rgba(194, 35%, 74%, 0.1);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-info {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-info h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-info a {
    color: white;
    text-decoration: underline;
  }
  
  .last-updated {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
  }
  
  .cookie-table {
    margin: 2rem 0;
  }
  
  .cookie-table th {
    background-color: var(--secondary-color);
    color: white;
    font-family: 'Work Sans', sans-serif;
  }
  
  .cookie-table td {
    background-color: #f8f9fa;
  }

.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;
    font-weight: 700;
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

  .faq-accordion .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    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(194, 35%, 49%);
    color: #ffffff;
    box-shadow: none;
  }

  .faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: hsl(194, 35%, 74%);
  }

  .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 {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    padding: 1.5rem;
    background-color: #ffffff;
  }

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

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

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

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

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

    .faq-section .section-subtitle {
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

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

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

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

  #newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(194, 35%, 49%) 0%, hsl(194, 35%, 34%) 100%);
    position: relative;
    overflow: hidden;
  }

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

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

  .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 25px;
    backdrop-filter: blur(10px);
  }

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

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

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

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

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

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

  .newsletter-email-input:focus {
    outline: none;
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 5px 20px 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(194, 35%, 34%);
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .newsletter-submit-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

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

  .newsletter-privacy-note a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
  }

  .newsletter-privacy-note a:hover {
    opacity: 0.8;
  }

  .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;
    color: #ffffff;
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
  }

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

  .newsletter-benefit-icon svg {
    width: 12px;
    height: 12px;
    fill: #ffffff;
  }

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

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

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

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

    .newsletter-submit-btn {
      width: 100%;
    }

    .newsletter-benefits {
      gap: 20px;
    }

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

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

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

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

    .newsletter-email-input {
      padding: 14px 20px;
    }

    .newsletter-submit-btn {
      padding: 14px 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-color: #ffffff;
    padding: 80px 0 100px;
    font-family: 'Crimson Text', serif;
    color: #333333;
  }

  .hero-section h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: hsl(194, 35%, 34%);
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: hsl(194, 35%, 49%);
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .hero-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1.5rem;
  }

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

  .hero-image-wrapper {
    margin: 2.5rem 0;
  }

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

  .advantages-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 3rem;
    text-align: left;
  }

  .advantages-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: #333333;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
  }

  .advantages-list li i {
    color: hsl(194, 35%, 49%);
    margin-right: 1rem;
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
  }

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

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

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

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

  .btn-secondary-hero:hover {
    background-color: hsl(194, 35%, 74%);
    border-color: hsl(194, 35%, 74%);
    color: #333333;
    transform: translateY(-2px);
  }

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

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

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

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

    .advantages-list li {
      font-size: 1.05rem;
    }

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

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

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

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

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

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

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

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

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

  .blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
  }

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

  .blog-card-meta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: hsl(194, 35%, 49%);
    font-weight: 600;
  }

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

  .blog-card-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
    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(194, 35%, 49%);
  }

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

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

  .blog-card-link:hover {
    color: hsl(194, 35%, 49%);
    gap: 0.8rem;
  }

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

  .view-all-btn {
    display: inline-block;
    background: hsl(194, 35%, 49%);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(194, 35%, 49%);
    margin-top: 3rem;
  }

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

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

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

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

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

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

    .blog-card-meta {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

.offer-description {
  font-family: 'Crimson Text', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.6;
  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);
  max-width: 900px;
  margin: 0 auto;
}

.deadline-box {
  background: linear-gradient(135deg, hsl(194, 35%, 74%) 0%, hsl(194, 35%, 49%) 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: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.offer-benefits {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(194, 35%, 49%) 0%, hsl(194, 35%, 34%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

.benefit-text {
  flex: 1;
}

.benefit-text h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.benefit-text p {
  font-family: 'Crimson Text', serif;
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.discount-highlight {
  background: hsl(194, 35%, 74%);
  color: hsl(194, 35%, 34%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 40px;
  border: 3px dashed hsl(194, 35%, 49%);
}

.discount-percentage {
  font-family: 'Work Sans', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: hsl(194, 35%, 34%);
  margin-bottom: 10px;
  line-height: 1;
}

.discount-text {
  font-family: 'Crimson Text', serif;
  font-size: 18px;
  color: #333;
  margin: 0;
}

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

.btn-offer {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, hsl(194, 35%, 49%) 0%, hsl(194, 35%, 34%) 100%);
  padding: 18px 50px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-offer:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #fff;
}

@media (max-width: 768px) {
  .offer-title {
    font-size: 36px;
  }

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

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

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

  .discount-percentage {
    font-size: 42px;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .btn-offer {
    font-size: 18px;
    padding: 15px 35px;
  }
}

.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.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

  .services-section .lead-text {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: hsl(194, 35%, 49%);
  }

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

  .service-card:hover .service-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, hsl(194, 35%, 34%) 0%, hsl(194, 35%, 49%) 100%);
  }

  .service-content {
    flex: 1;
  }

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

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

  .service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid #e9ecef;
  }

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

  .service-duration {
    font-size: 0.95rem;
    color: #666;
    background: hsl(194, 35%, 74%);
    padding: 5px 15px;
    border-radius: 20px;
  }

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

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

    .service-card {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }

    .service-icon {
      margin: 0 auto;
    }

    .service-footer {
      flex-direction: column;
      gap: 10px;
    }
  }

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

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

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

  #credentials .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 45px;
    font-weight: 400;
  }

  #credentials .credential-card {
    background: #fff;
    border: 1px solid #dee2e6;
    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.05);
  }

  #credentials .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    border-color: hsl(194, 35%, 49%);
  }

  #credentials .credential-icon {
    font-size: 2.8rem;
    color: #28a745;
    margin-bottom: 15px;
  }

  #credentials .credential-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
  }

  #credentials .credential-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
  }

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

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

    #credentials .credential-card {
      margin-bottom: 20px;
    }
  }

.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(194, 35%, 34%);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

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

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

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

.testimonial-card.featured {
  border-left: 4px solid hsl(194, 35%, 49%);
}

.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(194, 35%, 74%) 0%, hsl(194, 35%, 49%) 100%);
  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-info {
  flex-grow: 1;
}

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

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

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

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

.star.empty {
  color: #e0e0e0;
}

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

.testimonial-date {
  color: #999;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: auto;
}

.testimonial-highlight {
  background: hsl(194, 35%, 95%);
  border-left: 3px solid hsl(194, 35%, 49%);
  padding: 15px 20px;
  margin-top: 15px;
  border-radius: 6px;
}

.testimonial-highlight strong {
  color: hsl(194, 35%, 34%);
  font-family: 'Work Sans', sans-serif;
}

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

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

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

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

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

  .disclaimer-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
  }

  .disclaimer-icon {
    text-align: center;
    margin-bottom: 30px;
  }

  .disclaimer-icon i {
    font-size: 3.5rem;
    color: hsl(194, 35%, 49%);
  }

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

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

    .disclaimer-section h2 {
      font-size: 2rem;
      margin-bottom: 30px;
    }

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

    .disclaimer-icon i {
      font-size: 2.8rem;
    }

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

@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(194, 35%, 49%);
    --secondary-color: hsl(194, 35%, 34%);
    --accent-color: hsl(194, 35%, 74%);
  }
  
  .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 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    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-bottom: 1.5rem;
    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(194, 35%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  .contact-details {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 3rem;
  }
  
  .contact-details h2 {
    color: white;
    padding-left: 0;
  }
  
  .contact-details h2::before {
    display: none;
  }
  
  .contact-details a {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }
  
  .contact-details a:hover {
    color: var(--accent-color);
    border-bottom-color: white;
  }

@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(194, 35%, 49%);
    --secondary-color: hsl(194, 35%, 34%);
    --accent-color: hsl(194, 35%, 74%);
  }

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

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

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

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

  .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(--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-content p {
    margin-bottom: 1.25rem;
  }

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

  .intro-box {
    background-color: rgba(194, 35%, 49%, 0.05);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

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

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

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