:root {
            --primary-color: hsl(109, 51%, 49%);
            --secondary-color: hsl(109, 51%, 34%);
            --accent-color: hsl(109, 51%, 74%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Crimson Text', serif;
            font-size: 18px;
            line-height: 1.7;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            color: var(--secondary-color);
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Work Sans', 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: 'Work Sans', sans-serif;
            font-weight: 500;
            font-size: 1rem;
            color: #333;
            padding: 0.5rem 1.2rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(109, 176, 76, 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='hsl(109, 51%, 49%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.7rem 1rem;
            }
        }

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

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

  .about-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: hsl(109, 51%, 34%);
    font-size: 2.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
  }

  .about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: hsl(109, 51%, 49%);
    border-radius: 2px;
  }

  .about-section h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: hsl(109, 51%, 49%);
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 20px;
  }

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

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

  .about-text {
    flex: 1;
    padding-right: 20px;
  }

  .about-images {
    flex: 1;
    position: relative;
    min-height: 500px;
  }

  .about-img-main {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
  }

  .about-img-secondary {
    width: 60%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 3;
    border: 5px solid white;
  }

  .about-highlight {
    background: hsl(109, 51%, 74%, 0.2);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid hsl(109, 51%, 49%);
    margin: 30px 0;
  }

  .about-highlight p {
    margin-bottom: 0;
    font-weight: 600;
    color: hsl(109, 51%, 34%);
  }

  @media (max-width: 992px) {
    .about-content {
      flex-direction: column-reverse;
      gap: 40px;
    }

    .about-text {
      padding-right: 0;
    }

    .about-images {
      width: 100%;
      min-height: 400px;
    }

    .about-img-main {
      height: 350px;
    }

    .about-img-secondary {
      width: 55%;
      height: 220px;
    }

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

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

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

    .about-section h3 {
      font-size: 1.3rem;
    }

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

    .about-images {
      min-height: 350px;
    }

    .about-img-main {
      height: 300px;
    }

    .about-img-secondary {
      width: 50%;
      height: 180px;
      left: -15px;
      bottom: -20px;
    }
  }

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

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

  #portfolio h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(109, 51%, 34%);
    text-align: center;
    margin-bottom: 1rem;
  }

  #portfolio .section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .portfolio-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
  }

  .portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(109, 161, 78, 0.25);
    border-color: hsl(109, 51%, 49%);
  }

  .portfolio-card-header {
    background: linear-gradient(135deg, hsl(109, 51%, 49%) 0%, hsl(109, 51%, 34%) 100%);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .portfolio-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
  }

  .portfolio-icon {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }

  .portfolio-card-body {
    padding: 25px;
  }

  .portfolio-category {
    display: inline-block;
    background: hsl(109, 51%, 74%);
    color: hsl(109, 51%, 34%);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Work Sans', sans-serif;
  }

  .portfolio-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: hsl(109, 51%, 34%);
    margin-bottom: 15px;
  }

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

  .portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
  }

  .portfolio-date {
    font-size: 0.875rem;
    color: #888;
    font-family: 'Work Sans', sans-serif;
  }

  .portfolio-link {
    color: hsl(109, 51%, 49%);
    font-weight: 600;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    transition: color 0.3s ease;
  }

  .portfolio-link:hover {
    color: hsl(109, 51%, 34%);
  }

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

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

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

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

  .modal-body {
    padding: 30px;
    font-family: 'Crimson Text', serif;
  }

  .modal-body h5 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(109, 51%, 34%);
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .modal-body p {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
  }

  .modal-body ul {
    list-style: none;
    padding-left: 0;
  }

  .modal-body ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
  }

  .modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(109, 51%, 49%);
    font-weight: bold;
    font-size: 1.2rem;
  }

  .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
  }

  .tech-tag {
    background: hsl(109, 51%, 74%);
    color: hsl(109, 51%, 34%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
  }

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  #advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Crimson Text', serif;
  }
  
  #advantages .section-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(109, 51%, 34%);
    text-align: center;
    margin-bottom: 1rem;
  }
  
  #advantages .section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  #advantages .advantage-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
  }
  
  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: hsl(109, 51%, 49%);
  }
  
  #advantages .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(109, 51%, 49%) 0%, hsl(109, 51%, 34%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
  }
  
  #advantages .advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(109, 51%, 34%) 0%, hsl(109, 51%, 49%) 100%);
  }
  
  #advantages .advantage-icon i {
    font-size: 32px;
    color: white;
  }
  
  #advantages .advantage-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: hsl(109, 51%, 34%);
    margin-bottom: 15px;
    text-align: center;
  }
  
  #advantages .advantage-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    #advantages {
      padding: 50px 0;
    }
    
    #advantages .section-title {
      font-size: 2rem;
    }
    
    #advantages .advantage-card {
      padding: 25px 20px;
    }
  }

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

  #statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(109, 51%, 97%) 0%, hsl(109, 51%, 92%) 100%);
    font-family: 'Crimson Text', serif;
  }

  #statistics .section-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(109, 51%, 34%);
    text-align: center;
    margin-bottom: 1rem;
  }

  #statistics .section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: hsl(109, 51%, 40%);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .stat-circle {
    text-align: center;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
  }

  .stat-circle:hover {
    transform: translateY(-10px);
  }

  .circle-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
  }

  .circle-bg {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 30px rgba(109, 151, 49, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 4px solid hsl(109, 51%, 74%);
    position: relative;
    overflow: hidden;
  }

  .circle-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsl(109, 51%, 49%) 0%, hsl(109, 51%, 34%) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
  }

  .stat-circle:hover .circle-bg::before {
    opacity: 0.1;
  }

  .stat-icon {
    font-size: 2.5rem;
    color: hsl(109, 51%, 49%);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }

  .stat-number {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: hsl(109, 51%, 34%);
    line-height: 1;
    position: relative;
    z-index: 1;
  }

  .stat-label {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: hsl(109, 51%, 40%);
    font-weight: 600;
    margin-top: 10px;
  }

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

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

    #statistics .section-subtitle {
      font-size: 1rem;
      margin-bottom: 40px;
    }

    .circle-wrapper {
      width: 150px;
      height: 150px;
    }

    .circle-bg {
      width: 150px;
      height: 150px;
    }

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(109, 51%, 34%) 0%, hsl(109, 51%, 29%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Crimson Text', serif;
  margin-top: 80px;
}

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

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

.footer-section h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: hsl(109, 51%, 74%);
  margin-bottom: 20px;
}

.footer-section p {
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.footer-section a:hover {
  color: hsl(109, 51%, 74%);
  padding-left: 10px;
}

.contact-info {
  margin-top: 15px;
}

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

.contact-info i {
  margin-right: 10px;
  color: hsl(109, 51%, 74%);
  margin-top: 5px;
}

.phone-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: hsl(109, 51%, 74%);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
  font-size: 0.95rem;
}

.policy-links {
  margin-bottom: 15px;
}

.policy-links a {
  display: inline;
  padding: 0 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.policy-links a:last-child {
  border-right: none;
}

.policy-links a:hover {
  padding-left: 15px;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(109, 51%, 34%) 0%, hsl(109, 51%, 39%) 100%);
  color: #ffffff;
  padding: 25px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  font-family: 'Crimson Text', serif;
}

#cookieNotice.show {
  display: block;
  animation: slideUp 0.5s ease-out;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.cookie-text strong {
  font-family: 'Work Sans', sans-serif;
  color: hsl(109, 51%, 74%);
  font-weight: 600;
}

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

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

.cookie-btn-accept {
  background: hsl(109, 51%, 49%);
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: hsl(109, 51%, 54%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-learn {
  background: transparent;
  color: #ffffff;
  border: 2px solid hsl(109, 51%, 74%);
}

.cookie-btn-learn:hover {
  background: hsl(109, 51%, 74%);
  color: hsl(109, 51%, 34%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 140px;
  }
  
  .policy-links a {
    display: block;
    padding: 8px 0;
    border-right: none;
  }
}

.cookies-policy {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.cookies-policy h1 {
    color: #1a5490;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookies-policy .last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 0.95em;
}

.cookies-policy h2 {
    color: #2c5f8d;
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #4a90e2;
    font-weight: 600;
}

.cookies-policy h3 {
    color: #3a7bc8;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cookies-policy p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.05em;
}

.cookies-policy ul, .cookies-policy ol {
    margin: 20px 0;
    padding-left: 30px;
}

.cookies-policy li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.cookies-policy strong {
    color: #1a5490;
    font-weight: 600;
}

.cookie-type-box {
    background: #e3f2fd;
    border-left: 5px solid #2196f3;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.cookie-type-box h4 {
    color: #1565c0;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.consent-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.control-options {
    background: #f1f8e9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    border-left: 5px solid #8bc34a;
}

.intro-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.third-party-section {
    background: #fce4ec;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    border-left: 5px solid #e91e63;
}

.privacy-policy {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.8;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  }
  
  .privacy-policy h1 {
    font-size: 2.5em;
    color: #1a5490;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .privacy-policy .last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 0.95em;
  }
  
  .privacy-policy h2 {
    font-size: 1.8em;
    color: #2c5f8d;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #4a90d9;
    font-weight: 600;
  }
  
  .privacy-policy h3 {
    font-size: 1.3em;
    color: #3d6a99;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
  }
  
  .privacy-policy p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.05em;
  }
  
  .privacy-policy ul {
    margin: 15px 0;
    padding-left: 30px;
  }
  
  .privacy-policy li {
    margin-bottom: 10px;
    line-height: 1.7;
  }
  
  .privacy-policy .highlight-box {
    background: #e8f4fd;
    border-left: 5px solid #4a90d9;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
  }
  
  .privacy-policy .important-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    font-weight: 500;
  }
  
  .privacy-policy strong {
    color: #1a5490;
    font-weight: 600;
  }
  
  .privacy-policy .section-intro {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
  }

.blog-page { padding: 4rem 0; }
        .blog-page h1 { margin-bottom: 3rem; text-align: center; }
        .blog-card { margin-bottom: 2rem; transition: transform 0.3s; }
        .blog-card:hover { transform: translateY(-5px); }
        .blog-card .card-title { font-size: 1.5rem; margin-bottom: 1rem; }
        .blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

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

  #contact {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, hsl(109, 51%, 96%) 0%, hsl(109, 51%, 92%) 100%);
    padding: 80px 0;
  }

  #contact h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(109, 51%, 34%);
    margin-bottom: 1rem;
  }

  #contact .section-subtitle {
    font-size: 1.2rem;
    color: hsl(109, 51%, 40%);
    margin-bottom: 3rem;
  }

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

  #contact .form-label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: hsl(109, 51%, 34%);
    margin-bottom: 0.5rem;
    display: block;
  }

  #contact .form-control,
  #contact .form-select {
    font-family: 'Crimson Text', serif;
    border: 2px solid hsl(109, 51%, 85%);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  #contact .form-control:focus,
  #contact .form-select:focus {
    border-color: hsl(109, 51%, 49%);
    box-shadow: 0 0 0 0.2rem hsla(109, 51%, 49%, 0.25);
    outline: none;
  }

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

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

  #contact .btn-submit:hover {
    background: hsl(109, 51%, 34%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

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

  #contact .info-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: hsl(109, 51%, 34%);
    margin-bottom: 1.5rem;
  }

  #contact .info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(0, 0%, 30%);
    margin-bottom: 2rem;
  }

  #contact .info-block {
    background: hsl(109, 51%, 96%);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid hsl(109, 51%, 49%);
  }

  #contact .info-block h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: hsl(109, 51%, 34%);
    margin-bottom: 0.8rem;
  }

  #contact .info-block p {
    font-size: 1rem;
    color: hsl(0, 0%, 35%);
    margin-bottom: 0;
    line-height: 1.6;
  }

  #contact .working-hours {
    background: linear-gradient(135deg, hsl(109, 51%, 49%) 0%, hsl(109, 51%, 34%) 100%);
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
  }

  #contact .working-hours h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  #contact .working-hours p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

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

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

    #contact .contact-form,
    #contact .contact-info {
      margin-bottom: 30px;
    }
  }

  @media (max-width: 576px) {
    #contact .contact-form,
    #contact .contact-info {
      padding: 25px;
    }

    #contact h2 {
      font-size: 1.75rem;
    }
  }

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

:root {
    --primary: hsl(109, 51%, 49%);
    --secondary: hsl(109, 51%, 34%);
    --accent: hsl(109, 51%, 74%);
}

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

.hero-content {
    text-align: center;
    padding: 0 20px 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-section h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: left;
}

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

.benefits-list li {
    font-size: 1.15rem;
    color: #495057;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: bold;
}

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

.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.btn-secondary-custom {
    background-color: transparent;
    color: var(--secondary);
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 40px;
    border: 2px solid var(--secondary);
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

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

.hero-image-container {
    width: 100%;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1.05rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

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

:root {
  --primary: hsl(109, 51%, 49%);
  --secondary: hsl(109, 51%, 34%);
  --accent: hsl(109, 51%, 74%);
}

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

.services-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 2.5rem;
  text-align: center;
}

.services-section .lead {
  text-align: center;
  color: #6c757d;
  margin-bottom: 60px;
  font-size: 1.2rem;
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

.service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(360deg);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-content p {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.service-price {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.4rem;
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent);
  border-radius: 25px;
}

@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }
  
  .services-section h2 {
    font-size: 2rem;
  }
}

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

  #video {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(109, 51%, 97%) 0%, hsl(109, 51%, 92%) 100%);
    font-family: 'Crimson Text', serif;
  }

  #video h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: hsl(109, 51%, 34%);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  #video .video-intro {
    font-size: 1.1rem;
    color: hsl(109, 51%, 25%);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
  }

  #video .video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #video .video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
  }

  #video .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: hsl(109, 51%, 20%);
  }

  #video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  #video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsla(109, 51%, 34%, 0.85) 0%, hsla(109, 51%, 49%, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
  }

  #video .video-overlay:hover {
    background: linear-gradient(135deg, hsla(109, 51%, 34%, 0.75) 0%, hsla(109, 51%, 49%, 0.75) 100%);
  }

  #video .video-overlay:hover .play-button {
    transform: scale(1.1);
  }

  #video .play-button {
    color: white;
    font-size: 6rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  }

  #video .video-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  #video .video-cta p {
    font-size: 1.15rem;
    color: hsl(109, 51%, 30%);
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }

  #video .cta-button {
    display: inline-block;
    padding: 14px 40px;
    background: hsl(109, 51%, 49%);
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px hsla(109, 51%, 49%, 0.3);
  }

  #video .cta-button:hover {
    background: hsl(109, 51%, 34%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(109, 51%, 49%, 0.4);
    color: white;
  }

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

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

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

    #video .play-button {
      font-size: 4rem;
    }

    #video .video-cta p {
      font-size: 1rem;
    }
  }

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

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

  #blog .section-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(109, 51%, 34%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
  }

  #blog .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(109, 51%, 49%);
    border-radius: 2px;
  }

  #blog .featured-article {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
  }

  #blog .featured-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: hsl(109, 51%, 74%);
  }

  #blog .featured-badge {
    display: inline-block;
    background: hsl(109, 51%, 49%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Work Sans', sans-serif;
  }

  #blog .article-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
  }

  #blog .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: hsl(109, 51%, 74%);
  }

  #blog .article-category {
    display: inline-block;
    background: hsl(109, 51%, 74%);
    color: hsl(109, 51%, 34%);
    padding: 5px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Work Sans', sans-serif;
  }

  #blog .article-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: hsl(109, 51%, 34%);
    margin-bottom: 15px;
    line-height: 1.4;
  }

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

  #blog .article-description {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  #blog .article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #777;
    padding-top: 15px;
    border-top: 1px solid #e8f5e8;
    margin-top: auto;
  }

  #blog .article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  #blog .article-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  #blog .view-all-btn {
    display: inline-block;
    background: hsl(109, 51%, 49%);
    color: white;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 40px;
  }

  #blog .view-all-btn:hover {
    background: hsl(109, 51%, 34%);
    transform: scale(1.05);
    color: white;
  }

  #blog .btn-container {
    text-align: center;
  }

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

    #blog .section-title {
      font-size: 2rem;
      margin-bottom: 40px;
    }

    #blog .featured-article {
      padding: 30px;
    }

    #blog .featured-article .article-title {
      font-size: 1.6rem;
    }

    #blog .article-card {
      margin-bottom: 20px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  #offer {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, hsl(109, 51%, 49%) 0%, hsl(109, 51%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  #offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(109, 51%, 74%, 0.3) 0%, transparent 70%);
    border-radius: 50%;
  }
  
  #offer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(109, 51%, 74%, 0.2) 0%, transparent 70%);
    border-radius: 50%;
  }
  
  .offer-container {
    position: relative;
    z-index: 1;
  }
  
  .offer-badge {
    display: inline-block;
    background: hsl(109, 51%, 74%);
    color: hsl(109, 51%, 34%);
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
  }
  
  .offer-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  
  .offer-description {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .offer-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
  }
  
  .validity-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, hsl(109, 51%, 96%) 0%, hsl(109, 51%, 90%) 100%);
    border-radius: 15px;
    border: 3px dashed hsl(109, 51%, 49%);
  }
  
  .validity-label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: hsl(109, 51%, 34%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }
  
  .validity-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
  
  .calendar-icon {
    width: 50px;
    height: 50px;
    background: hsl(109, 51%, 49%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
  }
  
  .date-text {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: hsl(109, 51%, 34%);
    line-height: 1;
  }
  
  .discount-banner {
    background: linear-gradient(135deg, hsl(109, 51%, 49%) 0%, hsl(109, 51%, 34%) 100%);
    color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .discount-text {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 56px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .discount-subtext {
    font-size: 20px;
    margin: 10px 0 0 0;
    opacity: 0.95;
  }
  
  .benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
  }
  
  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: hsl(109, 51%, 96%);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
    background: hsl(109, 51%, 49%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
  }
  
  .benefit-text {
    font-size: 18px;
    color: hsl(109, 51%, 34%);
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
  }
  
  .offer-cta {
    text-align: center;
    margin-top: 40px;
  }
  
  .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, hsl(109, 51%, 49%) 0%, hsl(109, 51%, 34%) 100%);
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #ffffff;
  }
  
  @media (max-width: 768px) {
    .offer-title {
      font-size: 36px;
    }
    
    .offer-card {
      padding: 30px 20px;
    }
    
    .date-text {
      font-size: 32px;
    }
    
    .discount-text {
      font-size: 42px;
    }
    
    .benefit-item {
      flex-direction: column;
      gap: 15px;
    }
    
    .cta-button {
      padding: 18px 40px;
      font-size: 18px;
    }
  }

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

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

  .newsletter-content {
    position: relative;
    z-index: 1;
  }

  .newsletter-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
  }

  .newsletter-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
  }

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

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

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

  .form-wrapper {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .newsletter-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    background: #ffffff;
    color: hsl(109, 51%, 34%);
    outline: none;
  }

  .newsletter-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
  }

  .newsletter-button {
    padding: 1rem 2.5rem;
    background: hsl(109, 51%, 34%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .newsletter-button:hover {
    background: hsl(109, 51%, 24%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

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

  .privacy-note {
    text-align: center;
    margin-top: 1.5rem;
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
  }

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

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

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

    .newsletter-benefits {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .form-wrapper {
      flex-direction: column;
      border-radius: 20px;
      gap: 0.75rem;
    }

    .newsletter-input {
      border-radius: 20px;
    }

    .newsletter-button {
      border-radius: 20px;
      width: 100%;
    }
  }

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

#testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(109, 51%, 96%) 0%, hsl(109, 51%, 98%) 100%);
  font-family: 'Crimson Text', serif;
}

#testimonials h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(109, 51%, 34%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

#testimonials .section-subtitle {
  font-family: 'Crimson Text', serif;
  color: hsl(109, 51%, 49%);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin: 0 15px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px 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(109, 51%, 74%) 0%, hsl(109, 51%, 49%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

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

.testimonial-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: hsl(109, 51%, 34%);
  margin-bottom: 0.25rem;
}

.testimonial-location {
  color: hsl(109, 51%, 49%);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

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

.testimonial-rating i {
  color: hsl(45, 100%, 51%);
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: hsl(0, 0%, 30%);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-date {
  font-size: 0.9rem;
  color: hsl(0, 0%, 60%);
  font-style: italic;
  text-align: right;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: hsl(109, 51%, 49%);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: -70px;
}

.carousel-control-next {
  right: -70px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: hsl(109, 51%, 34%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

.carousel-indicators {
  margin-bottom: -3rem;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: hsl(109, 51%, 74%);
  border: none;
}

.carousel-indicators button.active {
  background-color: hsl(109, 51%, 49%);
}

@media (max-width: 992px) {
  .carousel-control-prev {
    left: -40px;
  }
  .carousel-control-next {
    right: -40px;
  }
}

@media (max-width: 768px) {
  #testimonials {
    padding: 60px 0;
  }
  
  #testimonials h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem;
    min-height: 350px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }
}

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

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

  #faq .section-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(109, 51%, 34%);
    text-align: center;
    margin-bottom: 1rem;
  }

  #faq .section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  #faq .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: hsl(109, 51%, 34%);
    background-color: #ffffff;
    border: 2px solid hsl(109, 51%, 74%);
    border-radius: 8px !important;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed) {
    background-color: hsl(109, 51%, 49%);
    color: #ffffff;
    border-color: hsl(109, 51%, 49%);
    box-shadow: 0 4px 12px rgba(109, 179, 63, 0.2);
  }

  #faq .accordion-button:hover {
    background-color: hsl(109, 51%, 74%);
    border-color: hsl(109, 51%, 49%);
    color: hsl(109, 51%, 34%);
  }

  #faq .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(109, 179, 63, 0.25);
    border-color: hsl(109, 51%, 49%);
  }

  #faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a8a3a'%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-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-item {
    border: none;
    margin-bottom: 1rem;
    background: transparent;
  }

  #faq .accordion-body {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 2px solid hsl(109, 51%, 74%);
    border-top: none;
    border-radius: 0 0 8px 8px;
  }

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

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

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

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

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

.disclaimer-section {
  background: linear-gradient(135deg, hsl(109, 51%, 97%) 0%, hsl(109, 51%, 95%) 100%);
  padding: 3rem 0;
  font-family: 'Crimson Text', serif;
}

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  border-left: 4px solid hsl(109, 51%, 49%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.disclaimer-icon {
  color: hsl(109, 51%, 49%);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.disclaimer-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(109, 51%, 34%);
  margin: 0;
}

.disclaimer-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 2rem 0;
  }
  
  .disclaimer-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .disclaimer-title {
    font-size: 1.25rem;
  }
  
  .disclaimer-text {
    font-size: 0.85rem;
  }
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
    line-height: 1.8;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  }
  
  .terms-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #3498db;
  }
  
  .terms-header h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .terms-effective {
    font-size: 0.95em;
    color: #7f8c8d;
    font-style: italic;
  }
  
  .terms-intro {
    background: #e8f4f8;
    padding: 25px;
    border-left: 5px solid #3498db;
    margin-bottom: 35px;
    border-radius: 5px;
  }
  
  .terms-section {
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  
  .terms-section h2 {
    color: #2980b9;
    font-size: 1.75em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ecf0f1;
    font-weight: 600;
  }
  
  .terms-section h3 {
    color: #34495e;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .terms-section p {
    margin-bottom: 15px;
    text-align: justify;
  }
  
  .terms-list {
    margin: 20px 0;
    padding-left: 20px;
  }
  
  .terms-list li {
    margin-bottom: 12px;
    padding-left: 10px;
    position: relative;
  }
  
  .terms-list li:before {
    content: "▸";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: -15px;
  }
  
  .highlight-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
  }
  
  .important-notice {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
    font-weight: 500;
  }
  
  strong {
    color: #2c3e50;
    font-weight: 600;
  }