:root {
            --primary-color: hsl(69, 54%, 43%);
            --secondary-color: hsl(69, 54%, 28%);
            --accent-color: hsl(69, 54%, 68%);
        }
        
        body {
            font-family: 'Merriweather', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Lato', sans-serif;
            font-weight: 700;
        }
        
        .navbar {
            background-color: #ffffff;
            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: 'Lato', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Lato', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(141, 162, 73, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2856, 74, 29, 1%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 {
                background-color: #f8f9fa;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
            }
        }

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

  .about-section h1,
  .about-section h2,
  .about-section h3 {
    font-family: 'Lato', sans-serif;
    color: #222;
    font-weight: 700;
  }

  .about-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: hsl(69, 54%, 28%);
  }

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

  .about-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: hsl(69, 54%, 43%);
  }

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

  .about-intro {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 50px;
  }

  .about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    margin-bottom: 30px;
  }

  .about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }

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

  .values-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid hsl(69, 54%, 43%);
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
  }

  .values-card:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  .values-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
  }

  .mission-vision-box {
    background: linear-gradient(135deg, hsl(69, 54%, 43%) 0%, hsl(69, 54%, 28%) 100%);
    color: #ffffff;
    padding: 45px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  }

  .mission-vision-box h2 {
    color: #ffffff;
    margin-top: 0;
  }

  .mission-vision-box p {
    color: #ffffff;
    margin-bottom: 1.5rem;
  }

  .stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 50px 0;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
  }

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

  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(69, 54%, 43%);
    font-family: 'Lato', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
  }

  .stat-label {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
  }

  .expertise-list {
    list-style: none;
    padding-left: 0;
  }

  .expertise-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: #333;
    font-size: 1.05rem;
  }

  .expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(69, 54%, 43%);
    font-weight: 700;
    font-size: 1.4rem;
  }

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

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

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

    .about-intro {
      padding: 25px;
    }

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

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

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

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

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

  #portfolio .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(69, 54%, 43%);
  }

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

  .portfolio-filters {
    text-align: center;
    margin-bottom: 50px;
  }

  .portfolio-filters .btn-filter {
    font-family: 'Lato', sans-serif;
    background: transparent;
    border: 2px solid hsl(69, 54%, 43%);
    color: hsl(69, 54%, 28%);
    padding: 10px 28px;
    margin: 5px 8px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .portfolio-filters .btn-filter:hover,
  .portfolio-filters .btn-filter.active {
    background: hsl(69, 54%, 43%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .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 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    background: #fff;
    cursor: pointer;
  }

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

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

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

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

  .portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsla(69, 54%, 43%, 0.9), hsla(69, 54%, 28%, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

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

  .portfolio-item-overlay i {
    font-size: 3rem;
    color: #fff;
  }

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

  .portfolio-category {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: hsl(69, 54%, 43%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .portfolio-item-content h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
  }

  .portfolio-item-content p {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(69, 54%, 43%), hsl(69, 54%, 28%));
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
    border: none;
  }

  .modal-header h5 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
  }

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

  .modal-body {
    padding: 35px;
  }

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

  .modal-body h6 {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .modal-body p {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
  }

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

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

  .modal-body .project-details li {
    font-family: 'Merriweather', serif;
    padding: 8px 0;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
  }

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

  .modal-body .project-details strong {
    color: hsl(69, 54%, 28%);
    font-weight: 600;
  }

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

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

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

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

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

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

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(69, 54%, 68%);
    opacity: 0.05;
    border-radius: 50%;
  }

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

  #advantages .section-title {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

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

  #advantages .section-subtitle {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
  }

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
  }

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

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

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

  #advantages .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(69, 54%, 43%), hsl(69, 54%, 28%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  #advantages .advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

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

  #advantages .advantage-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
  }

  #advantages .advantage-card:hover .advantage-title {
    color: hsl(69, 54%, 28%);
  }

  #advantages .advantage-description {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
  }

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

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

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

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

.statistics-section {
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(69, 54%, 43%) 0%, hsl(69, 54%, 28%) 100%);
  position: relative;
  overflow: hidden;
}

.statistics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

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

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

.statistics-header h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.statistics-header p {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.stat-card:hover::before {
  left: 100%;
}

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

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, hsl(69, 54%, 43%), hsl(69, 54%, 68%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  transition: all 0.4s ease;
}

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

.stat-number {
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(69, 54%, 28%);
  margin-bottom: 10px;
  line-height: 1;
  display: block;
}

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

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

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

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

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

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

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

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

  .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

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

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

footer {
  background: linear-gradient(135deg, hsl(69, 54%, 28%) 0%, hsl(69, 54%, 43%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Merriweather', serif;
}

footer h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.2rem;
}

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

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

footer a:hover {
  color: hsl(69, 54%, 68%);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

.footer-contact-info i {
  margin-right: 8px;
  color: hsl(69, 54%, 68%);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #f8f9fa;
  font-size: 0.9rem;
}

.footer-logo {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 25px 0;
  border-top: 4px solid hsl(69, 54%, 43%);
  font-family: 'Merriweather', serif;
}

#cookieNotice h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

#cookieNotice p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

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

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

.cookie-category h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  font-size: 1rem;
}

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

.cookie-category .badge {
  font-size: 0.7rem;
  padding: 4px 8px;
  margin-left: 8px;
  font-weight: 600;
}

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

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

.btn-accept-all {
  background: hsl(69, 54%, 43%);
  color: #ffffff;
}

.btn-accept-all:hover {
  background: hsl(69, 54%, 38%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.btn-manage-settings {
  background: transparent;
  color: #333;
  border: 2px solid #dee2e6;
}

.btn-manage-settings:hover {
  background: #f8f9fa;
  color: #333;
  border-color: hsl(69, 54%, 43%);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-top: 30px;
    font-size: 1.1rem;
  }
  
  footer h5:first-child {
    margin-top: 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
}

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

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

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

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

.contact-section .lead-text {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    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 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.contact-form-wrapper h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 1.5rem;
}

.contact-section .form-label {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

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

.contact-section .form-control:focus {
    border-color: hsl(69, 54%, 43%);
    box-shadow: 0 0 0 0.2rem rgba(139, 154, 68, 0.15);
    outline: 0;
}

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

.contact-section .btn-submit {
    background: hsl(69, 54%, 43%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.contact-section .btn-submit:hover {
    background: hsl(69, 54%, 28%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 154, 68, 0.3);
}

.contact-info-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info-wrapper h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.contact-info-item h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: hsl(69, 54%, 28%);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-info-item p {
    color: #555;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-info-item a {
    color: hsl(69, 54%, 43%);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: hsl(69, 54%, 28%);
    text-decoration: underline;
}

.contact-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: hsl(69, 54%, 68%);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-bottom: 1rem;
    color: hsl(69, 54%, 28%);
    font-size: 1.3rem;
}

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

.hours-list li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
}

.hours-list li strong {
    color: #333;
    font-weight: 600;
}

@media (max-width: 991px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        margin-bottom: 30px;
    }
}

@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=Lato:wght@300;400;700;900&family=Merriweather:wght@300;400;700&display=swap');

  :root {
    --primary-color: hsl(69, 54%, 43%);
    --secondary-color: hsl(69, 54%, 28%);
    --accent-color: hsl(69, 54%, 68%);
  }

  .policy-content {
    font-family: 'Merriweather', serif;
    color: #333;
    line-height: 1.8;
  }

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

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

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

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

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

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

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

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

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

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

  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
    padding: 0;
  }

  .last-updated {
    background-color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
  }

  .info-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }

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

  .contact-box h2 {
    color: white;
    border-left: 5px solid white;
  }

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

  .contact-box a:hover {
    color: white;
  }

  .cookie-table {
    margin: 1.5rem 0;
  }

  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Lato', sans-serif;
  }

  .cookie-table td {
    background-color: #f8f9fa;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: hsl(69, 54%, 68%);
  border-radius: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 1rem;
}

.faq-cta p {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.faq-cta .btn-contact {
  background-color: hsl(69, 54%, 28%);
  color: #ffffff;
  padding: 0.875rem 2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.faq-cta .btn-contact:hover {
  background-color: hsl(69, 54%, 20%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

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

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

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

  .faq-cta h3 {
    font-size: 1.25rem;
  }
}

.newsletter-section {
  background: linear-gradient(135deg, hsl(69, 54%, 43%) 0%, hsl(69, 54%, 28%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.newsletter-section::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-content {
  position: relative;
  z-index: 2;
}

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

.newsletter-description {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

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

.newsletter-email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  font-family: 'Merriweather', 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 4px 20px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit-btn {
  padding: 16px 40px;
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(69, 54%, 28%);
  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 6px 25px rgba(0, 0, 0, 0.2);
}

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

.newsletter-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: 'Merriweather', serif;
  font-size: 0.95rem;
}

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

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

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

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

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

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

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

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

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

  .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: 15px;
  }
}

.hero-section {
    background-color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
  }

  .hero-section h1 {
    font-family: 'Lato', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: hsl(69, 54%, 28%);
    margin-bottom: 2rem;
  }

  .hero-section p {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

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

  .hero-image-wrapper {
    position: relative;
    z-index: 1;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
  }

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

  .advantages-list li {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #333;
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

  .advantages-list li i {
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: hsl(69, 54%, 43%);
    font-size: 1.3rem;
  }

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

  .btn-primary-hero {
    font-family: 'Lato', sans-serif;
    background-color: hsl(69, 54%, 43%);
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .btn-primary-hero:hover {
    background-color: hsl(69, 54%, 38%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }

  .btn-secondary-hero {
    font-family: 'Lato', sans-serif;
    background-color: transparent;
    color: hsl(69, 54%, 28%);
    padding: 14px 32px;
    border: 2px solid hsl(69, 54%, 28%);
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-secondary-hero:hover {
    background-color: hsl(69, 54%, 28%);
    color: #fff;
    transform: translateY(-2px);
  }

  .decorative-element {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: hsl(69, 54%, 68%);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 0;
    top: -50px;
    right: -50px;
  }

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

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

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

    .hero-image-wrapper img {
      transform: translateY(0);
      margin-top: 2rem;
    }

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

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

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

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

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

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

.offer-section {
  background: linear-gradient(135deg, hsl(69, 54%, 43%) 0%, hsl(69, 54%, 28%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.offer-section::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%;
}

.offer-section::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%;
}

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

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

.offer-heading {
  font-family: 'Lato', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Merriweather', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.7;
  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 {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid #f0f0f0;
}

.deadline-label {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 600;
}

.deadline-date {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, hsl(69, 54%, 43%) 0%, hsl(69, 54%, 28%) 100%);
  color: #fff;
  padding: 20px 40px;
  border-radius: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 32px;
  font-weight: 800;
}

.deadline-icon {
  font-size: 36px;
}

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

.benefits-list li {
  font-family: 'Merriweather', serif;
  font-size: 17px;
  color: #333;
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid #f0f0f0;
}

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

.benefit-icon {
  color: hsl(69, 54%, 43%);
  font-size: 24px;
  min-width: 24px;
  margin-top: 2px;
}

.discount-highlight {
  background: hsl(69, 54%, 68%);
  color: hsl(69, 54%, 28%);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
}

.discount-percentage {
  font-family: 'Lato', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.discount-text {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-block;
  background: hsl(69, 54%, 43%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-button:hover {
  background: hsl(69, 54%, 28%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

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

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

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

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

  .deadline-date {
    font-size: 24px;
    padding: 16px 24px;
    flex-direction: column;
    gap: 8px;
  }

  .deadline-icon {
    font-size: 28px;
  }

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

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

  .cta-button {
    font-size: 16px;
    padding: 16px 40px;
  }
}

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

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

  .blog-preview-section .section-subtitle {
    font-size: 1.1rem;
    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: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
  }

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

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

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

  .blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
  }

  .blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .blog-meta-divider {
    width: 4px;
    height: 4px;
    background: hsl(69, 54%, 43%);
    border-radius: 50%;
  }

  .blog-card-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    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(69, 54%, 43%);
  }

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

  .blog-read-more {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: hsl(69, 54%, 43%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
  }

  .blog-read-more:hover {
    gap: 0.75rem;
    color: hsl(69, 54%, 28%);
  }

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

  .blog-view-all {
    text-align: center;
    margin-top: 3rem;
  }

  .btn-view-all {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 14px 40px;
    background: hsl(69, 54%, 43%);
    color: #fff;
    border: 2px solid hsl(69, 54%, 43%);
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-view-all:hover {
    background: hsl(69, 54%, 28%);
    border-color: hsl(69, 54%, 28%);
    color: #fff;
    transform: scale(1.05);
  }

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

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

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

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

#credentials {
    padding: 60px 0;
    background-color: #f8f9fa;
    font-family: 'Merriweather', serif;
  }

  #credentials h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
  }

  .credential-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
  }

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

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

  .credential-title {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

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

    #credentials h2 {
      font-size: 1.75rem;
      margin-bottom: 30px;
    }

    .credential-card {
      padding: 20px 15px;
    }
  }

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

    #credentials h2 {
      font-size: 1.5rem;
      margin-bottom: 25px;
    }

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

    .credential-title {
      font-size: 0.9rem;
    }
  }

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

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

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    border-color: hsl(69, 54%, 43%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(69, 54%, 43%) 0%, hsl(69, 54%, 28%) 100%);
    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 {
    background: linear-gradient(135deg, hsl(69, 54%, 28%) 0%, hsl(69, 54%, 43%) 100%);
    transform: rotate(360deg);
  }

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

  .service-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
  }

  .service-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .service-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 1.25rem;
    margin-top: auto;
  }

  .service-price {
    font-family: 'Lato', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(69, 54%, 28%);
    margin-bottom: 0.5rem;
  }

  .service-duration {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.25rem;
  }

  .service-capacity {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
  }

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

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

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

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

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  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;
  border-left: 4px solid hsl(69, 54%, 43%);
}

.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: 1.5rem;
  gap: 1rem;
}

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

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

.testimonial-name {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.25rem;
}

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

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: hsl(69, 54%, 43%);
  font-size: 1.2rem;
}

.star.empty {
  color: #ddd;
}

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

.testimonial-text strong {
  color: #222;
  font-weight: 600;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(69, 54%, 68%) 0%, hsl(69, 54%, 43%) 100%);
  border-left: none;
}

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

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

.testimonial-card.featured .star {
  color: #ffffff;
}

.testimonial-card.featured .star.empty {
  color: rgba(255,255,255,0.4);
}

.testimonial-card.compact {
  padding: 1.5rem;
}

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

.testimonial-card.detailed {
  border-left-width: 6px;
}

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

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

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

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

.disclaimer-icon {
  font-size: 3.5rem;
  color: hsl(69, 54%, 43%);
  margin-bottom: 30px;
  display: inline-block;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.disclaimer-title {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 35px;
  text-align: center;
}

.disclaimer-content {
  background: #ffffff;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid hsl(69, 54%, 43%);
}

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

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

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

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

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

  .disclaimer-icon {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .disclaimer-content {
    padding: 25px 20px;
  }

  .disclaimer-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:wght@300;400;700&display=swap');

  :root {
    --primary-color: hsl(69, 54%, 43%);
    --secondary-color: hsl(69, 54%, 28%);
    --accent-color: hsl(69, 54%, 68%);
  }

  .policy-content {
    font-family: 'Merriweather', serif;
    color: #333;
    line-height: 1.8;
  }

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

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

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

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

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

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

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

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

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

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

  .policy-intro p {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
  }

  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }

  .contact-box strong {
    color: var(--secondary-color);
  }

  .section-card {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-top: 3px solid var(--accent-color);
  }

  .effective-date {
    background-color: var(--accent-color);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:wght@300;400;700&display=swap');

  :root {
    --primary-color: hsl(69, 54%, 43%);
    --secondary-color: hsl(69, 54%, 28%);
    --accent-color: hsl(69, 54%, 68%);
  }

  body {
    font-family: 'Merriweather', serif;
    color: #333;
    line-height: 1.8;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

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

  .policy-content h2 {
    font-size: 1.85rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
  }

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

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

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

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

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

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

  .highlight-box {
    background-color: rgba(157, 180, 61, 0.1);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

  .contact-info {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .contact-info h3 {
    color: var(--secondary-color);
    margin-top: 0;
  }

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

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

:root {
    --primary-color: hsl(69, 54%, 43%);
    --secondary-color: hsl(69, 54%, 28%);
    --accent-color: hsl(69, 54%, 68%);
  }

  .thank-you-section {
    font-family: 'Merriweather', serif;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, rgba(69, 54%, 43%, 0.05) 0%, rgba(69, 54%, 68%, 0.1) 100%);
  }

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

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

  .success-icon svg {
    width: 60px;
    height: 60px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmark 0.8s ease-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }

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

  @keyframes checkmark {
    to {
      stroke-dashoffset: 0;
    }
  }

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

  .thank-you-message {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
  }

  .thank-you-message p {
    margin-bottom: 1rem;
  }

  .home-button {
    background-color: var(--primary-color);
    border: none;
    color: white;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

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

  .home-button:active {
    transform: translateY(0);
  }

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

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

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

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

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