:root {
            --primary: hsl(147, 57%, 34%);
            --secondary: hsl(147, 57%, 19%);
            --accent: hsl(147, 57%, 59%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }
        
        .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: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .navbar-brand:hover {
            color: var(--secondary);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Raleway', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent);
        }
        
        .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='%23333' 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: #ffffff;
                padding: 1rem 0;
                margin-top: 1rem;
                border-top: 1px solid #e0e0e0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

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

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

.about-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(147, 57%, 19%);
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: hsl(147, 57%, 34%);
}

.about-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: hsl(147, 57%, 34%);
}

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

.about-intro {
  background: linear-gradient(135deg, hsl(147, 57%, 34%) 0%, hsl(147, 57%, 19%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
}

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

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

.about-content {
  margin-bottom: 50px;
}

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

.story-block {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
  border-left: 4px solid hsl(147, 57%, 34%);
}

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

.value-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  border: 2px solid hsl(147, 57%, 59%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
  width: 50px;
  height: 50px;
  background-color: hsl(147, 57%, 34%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
}

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

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

.expertise-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(147, 57%, 34%);
  font-weight: bold;
  font-size: 1.3rem;
}

.stats-row {
  background-color: hsl(147, 57%, 19%);
  padding: 50px 0;
  margin-top: 60px;
  color: #ffffff;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(147, 57%, 59%);
  font-family: 'Inter', sans-serif;
}

.stat-label {
  font-size: 1.1rem;
  color: #f8f9fa;
  margin-top: 10px;
}

@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: 40px 0;
    margin-bottom: 40px;
  }

  .story-block {
    padding: 25px;
  }

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

#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: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

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

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

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

  .filter-btn {
    font-family: 'Raleway', sans-serif;
    padding: 10px 28px;
    border: 2px solid hsl(147, 57%, 34%);
    background: transparent;
    color: hsl(147, 57%, 34%);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(147, 57%, 34%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 133, 90, 0.3);
  }

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

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

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

  .portfolio-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
  }

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

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(47, 133, 90, 0.7), rgba(26, 74, 50, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .overlay-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  .portfolio-item:hover .overlay-icon {
    transform: scale(1.1) rotate(90deg);
  }

  .portfolio-content {
    padding: 25px;
  }

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

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

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

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

  .modal-header {
    background: linear-gradient(135deg, hsl(147, 57%, 34%), hsl(147, 57%, 19%));
    color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 25px 30px;
    border: none;
  }

  .modal-header .modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
  }

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

  .modal-header .btn-close:hover {
    opacity: 1;
  }

  .modal-body {
    padding: 35px;
  }

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

  .project-detail-category {
    display: inline-block;
    background: hsl(147, 57%, 59%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .project-details-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
  }

  .project-details-list li {
    font-family: 'Raleway', sans-serif;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    color: #333;
  }

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

  .project-details-list strong {
    font-weight: 700;
    color: hsl(147, 57%, 34%);
    min-width: 140px;
    font-family: 'Inter', sans-serif;
  }

  .project-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-top: 20px;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

    .modal-body {
      padding: 25px;
    }

    .project-details-list li {
      flex-direction: column;
      gap: 5px;
    }

    .project-details-list strong {
      min-width: auto;
    }
  }

#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(147, 57%, 59%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  #advantages .section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: hsl(147, 57%, 59%);
  }

  .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(147, 57%, 34%) 0%, hsl(147, 57%, 59%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  .advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(49, 138, 86, 0.3);
  }

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

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

  .advantage-card:hover .advantage-title {
    color: hsl(147, 57%, 34%);
  }

  .advantage-description {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin: 0;
  }

  .advantages-row {
    margin-top: 40px;
  }

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

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

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

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

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

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

    .advantage-title {
      font-size: 1.15rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

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

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

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

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

  #statistics .section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

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

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(147, 57%, 34%), hsl(147, 57%, 59%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: hsl(147, 57%, 59%);
  }

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

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

  #statistics .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
  }

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

  #statistics .stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(147, 57%, 34%);
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
  }

  #statistics .stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.5;
  }

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

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

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

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

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

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

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

    #statistics .stat-icon i {
      font-size: 28px;
    }
  }

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

footer {
  background: linear-gradient(135deg, hsl(147, 57%, 19%) 0%, hsl(147, 57%, 34%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Raleway', sans-serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

footer a:hover {
  color: hsl(147, 57%, 59%);
  padding-left: 5px;
}

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

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

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

.footer-description {
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.contact-item i {
  color: hsl(147, 57%, 59%);
  margin-right: 12px;
  margin-top: 3px;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.policy-links a {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 10px;
  font-size: 0.85rem;
}

.policy-links a:hover {
  color: hsl(147, 57%, 59%);
  padding-left: 0;
}

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

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

.cookie-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.cookie-text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.6;
}

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

.cookie-category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

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

.cookie-category strong {
  color: #222;
  min-width: 180px;
  font-family: 'Inter', sans-serif;
}

.cookie-category span {
  color: #666;
  flex: 1;
}

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

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

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

.btn-accept-all {
  background: hsl(147, 57%, 34%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept-all:hover {
  background: hsl(147, 57%, 29%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reject:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.btn-manage {
  background: transparent;
  color: hsl(147, 57%, 34%);
  border: 2px solid hsl(147, 57%, 34%);
  padding: 10px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-manage:hover {
  background: hsl(147, 57%, 34%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

  .footer-brand {
    font-size: 1.5rem;
  }

  footer h5 {
    margin-top: 30px;
  }

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

  .btn-accept-all,
  .btn-reject,
  .btn-manage {
    width: 100%;
    text-align: center;
  }

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

  .cookie-category strong {
    margin-bottom: 5px;
  }
}

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

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

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

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(147, 57%, 59%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

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

.contact-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(147, 57%, 19%);
  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;
  line-height: 1.7;
}

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

.contact-form-container {
  flex: 1;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid #e9ecef;
}

.contact-form-container h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: hsl(147, 57%, 34%);
  margin-bottom: 1.5rem;
}

.contact-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

.contact-form .form-control:focus {
  border-color: hsl(147, 57%, 34%);
  box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.15);
  background: #ffffff;
  outline: none;
}

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

.contact-form .btn-submit {
  background: hsl(147, 57%, 34%);
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
}

.contact-form .btn-submit:hover {
  background: hsl(147, 57%, 19%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.contact-info-container {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  border-left: 4px solid hsl(147, 57%, 34%);
}

.contact-info-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(147, 57%, 19%);
  margin-bottom: 1.2rem;
}

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

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

.contact-info-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, hsl(147, 57%, 34%) 0%, hsl(147, 57%, 59%) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

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

.contact-info-text {
  flex: 1;
}

.contact-info-text .label {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-text .value {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
}

.contact-info-text a {
  color: hsl(147, 57%, 34%);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.contact-info-text a:hover {
  color: hsl(147, 57%, 19%);
  text-decoration: underline;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  font-size: 0.95rem;
}

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

.hours-list .day {
  font-weight: 600;
  color: #555;
}

.hours-list .time {
  color: hsl(147, 57%, 34%);
  font-weight: 500;
}

@media (max-width: 991px) {
  .contact-content-wrapper {
    flex-direction: column;
  }
  
  .contact-info-container {
    flex: 1;
  }
  
  .contact-section h2 {
    font-size: 2.2rem;
  }
  
  .contact-form-container,
  .contact-info-card {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-section h2 {
    font-size: 1.9rem;
  }
  
  .contact-form-container,
  .contact-info-card {
    padding: 25px 20px;
  }
  
  .contact-info-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-info-icon svg {
    width: 20px;
    height: 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');
  
  :root {
    --primary-color: hsl(147, 57%, 34%);
    --secondary-color: hsl(147, 57%, 19%);
    --accent-color: hsl(147, 57%, 59%);
  }
  
  .policy-content {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    font-weight: 400;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-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-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .info-box {
    background-color: hsl(147, 57%, 95%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-card h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-card a {
    color: var(--accent-color);
    font-weight: 600;
  }
  
  .contact-card a:hover {
    color: white;
  }
  
  .last-updated {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    font-style: italic;
    color: #6c757d;
    margin-bottom: 2rem;
  }
  
  .cookie-table {
    margin: 1.5rem 0;
  }
  
  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Inter', sans-serif;
  }
  
  .cookie-table td {
    vertical-align: middle;
  }

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

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

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

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

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

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

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

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

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

  .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.75rem;
    background: #ffffff;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
  }

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

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

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

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(147, 57%, 34%) 0%, hsl(147, 57%, 19%) 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"><rect width="100" height="100" fill="none"/><path d="M0 50 Q 25 25, 50 50 T 100 50" stroke="rgba(255,255,255,0.05)" fill="none" stroke-width="2"/></svg>');
  opacity: 0.3;
}

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

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

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

.newsletter-description {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  margin-bottom: 40px;
  line-height: 1.6;
}

.newsletter-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group-newsletter {
  margin-bottom: 0;
}

.email-input-wrapper {
  display: flex;
  gap: 15px;
  align-items: stretch;
}

.newsletter-email-input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
}

.newsletter-email-input:focus {
  outline: none;
  border-color: hsl(147, 57%, 34%);
  box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.1);
}

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

.newsletter-submit-btn {
  padding: 16px 40px;
  background: hsl(147, 57%, 34%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: hsl(147, 57%, 19%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  color: #555;
  font-size: 0.95rem;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  background: hsl(147, 57%, 34%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
  flex-shrink: 0;
}

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

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

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

  .newsletter-form {
    padding: 30px 20px;
  }

  .email-input-wrapper {
    flex-direction: column;
  }

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

  .newsletter-benefits {
    gap: 15px;
  }

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

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

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

  .hero-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: hsl(147, 57%, 34%);
    margin-bottom: 1.8rem;
  }

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

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

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

  .hero-advantages li::before {
    content: "\f26b";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(147, 57%, 34%);
    font-size: 1.3rem;
    font-weight: bold;
  }

  .hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  }

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

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

  .hero-btn-primary {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    background-color: hsl(147, 57%, 34%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(147, 57%, 34%);
    font-size: 1.05rem;
  }

  .hero-btn-primary:hover {
    background-color: hsl(147, 57%, 19%);
    border-color: hsl(147, 57%, 19%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

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

  .hero-btn-secondary:hover {
    background-color: hsl(147, 57%, 34%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

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

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

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

    .hero-image-wrapper {
      margin-top: 2rem;
    }
  }

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

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

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

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

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

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

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

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

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(147, 57%, 34%), hsl(147, 57%, 59%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .service-card:hover {
    border-color: hsl(147, 57%, 34%);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

  .service-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #222;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .service-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .service-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: hsl(147, 57%, 34%);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .service-terms {
    color: #777;
    font-size: 0.85rem;
    font-style: italic;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

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

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

    .services-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .service-card {
      padding: 1.5rem;
    }
  }

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

    .service-title {
      font-size: 1.2rem;
    }

    .service-price {
      font-size: 1.3rem;
    }
  }

.credentials-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.credential-card {
  background: #ffffff;
  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: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

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

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

.testimonials-section h2 {
  font-family: 'Inter', 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;
}

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

.testimonial-card.featured {
  border-left: 4px solid hsl(147, 57%, 34%);
}

.testimonial-card.standard {
  border-left: 4px solid hsl(147, 57%, 59%);
}

.testimonial-card.balanced {
  border-left: 4px solid #95a5a6;
}

.rating {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

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

.rating i.empty {
  color: #e0e0e0;
}

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

.testimonial-text.short {
  font-size: 1.05rem;
  font-weight: 500;
}

.testimonial-text.long {
  font-size: 0.95rem;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(147, 57%, 34%), hsl(147, 57%, 59%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.customer-details h5 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 0.25rem 0;
}

.customer-location {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.customer-location i {
  color: hsl(147, 57%, 34%);
  font-size: 0.85rem;
}

.testimonial-highlight {
  background: hsl(147, 57%, 95%);
  border-left: 3px solid hsl(147, 57%, 34%);
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  border-radius: 4px;
  font-style: italic;
  color: #333;
}

.stats-row {
  background: hsl(147, 57%, 34%);
  color: #ffffff;
  padding: 3rem 0;
  margin-top: 4rem;
  border-radius: 12px;
}

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

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(147, 57%, 59%);
  color: hsl(147, 57%, 19%);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.offer-description {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #f8f9fa;
  margin-bottom: 40px;
  max-width: 700px;
}

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

.deadline-block {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  border: 3px solid hsl(147, 57%, 59%);
}

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

.deadline-date {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: hsl(147, 57%, 34%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 50px;
  height: 50px;
  color: hsl(147, 57%, 34%);
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

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

.discount-badge {
  display: inline-block;
  background: hsl(147, 57%, 34%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.offer-btn {
  display: inline-block;
  background: hsl(147, 57%, 34%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-btn:hover {
  background: hsl(147, 57%, 19%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

  .discount-badge {
    font-size: 24px;
    padding: 12px 25px;
  }

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

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

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

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

  #blog .section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }

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

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

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

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

  #blog .blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
  }

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

  #blog .blog-meta i {
    color: hsl(147, 57%, 34%);
  }

  #blog .blog-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
  }

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

  #blog .blog-card h3 a:hover {
    color: hsl(147, 57%, 34%);
  }

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

  #blog .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(147, 57%, 34%);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
  }

  #blog .read-more:hover {
    gap: 12px;
    color: hsl(147, 57%, 19%);
  }

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

  #blog .view-all-btn .btn {
    background: hsl(147, 57%, 34%);
    color: #ffffff;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  #blog .view-all-btn .btn:hover {
    background: hsl(147, 57%, 19%);
    transform: translateY(-2px);
  }

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

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

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

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

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

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

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

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

.disclaimer-icon {
  font-size: 48px;
  color: hsl(147, 57%, 34%);
}

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

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

.disclaimer-content p {
  margin-bottom: 0;
}

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

  .disclaimer-container {
    padding: 40px 25px;
    margin: 0 15px;
  }

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

  .disclaimer-icon {
    font-size: 40px;
  }

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

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

  .disclaimer-container {
    padding: 30px 20px;
  }

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

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');
  
  :root {
    --primary-color: hsl(147, 57%, 34%);
    --secondary-color: hsl(147, 57%, 19%);
    --accent-color: hsl(147, 57%, 59%);
  }
  
  .policy-content {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    font-weight: 400;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .policy-intro {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .policy-intro p {
    margin-bottom: 0;
    font-size: 1.1rem;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
  }
  
  .contact-box strong {
    color: var(--primary-color);
  }
  
  .section-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-top: 3px solid var(--accent-color);
  }
  
  .effective-date {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

  .policy-content {
    font-family: 'Raleway', sans-serif;
    color: #2c3e50;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: hsl(147, 57%, 19%);
  }

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid hsl(147, 57%, 34%);
  }

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: hsl(147, 57%, 34%);
    position: relative;
    padding-left: 20px;
  }

  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background-color: hsl(147, 57%, 59%);
    border-radius: 3px;
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: hsl(147, 57%, 34%);
  }

  .policy-content p {
    margin-bottom: 1.25rem;
    font-weight: 400;
  }

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

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

  .policy-content a {
    color: hsl(147, 57%, 34%);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }

  .policy-content a:hover {
    color: hsl(147, 57%, 59%);
    border-bottom-color: hsl(147, 57%, 59%);
  }

  .policy-content strong {
    color: hsl(147, 57%, 19%);
    font-weight: 600;
  }

  .contact-box {
    background: linear-gradient(135deg, hsl(147, 57%, 34%) 0%, hsl(147, 57%, 19%) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .contact-box h3 {
    color: white !important;
    margin-bottom: 1.25rem;
  }

  .contact-box p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
  }

  .contact-box a {
    color: hsl(147, 57%, 89%);
    border-bottom-color: hsl(147, 57%, 89%);
  }

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

  .effective-date {
    background-color: hsl(147, 57%, 95%);
    padding: 1rem 1.5rem;
    border-left: 4px solid hsl(147, 57%, 34%);
    margin-bottom: 2rem;
    border-radius: 4px;
  }

  .effective-date p {
    margin-bottom: 0;
    font-weight: 500;
    color: hsl(147, 57%, 19%);
  }

  @media (max-width: 768px) {
    .policy-content h1 {
      font-size: 2rem;
    }

    .policy-content h2 {
      font-size: 1.5rem;
    }

    .policy-content h3 {
      font-size: 1.2rem;
    }
  }