:root {
            --primary-color: hsl(138, 30%, 41%);
            --secondary-color: hsl(138, 30%, 26%);
            --accent-color: hsl(138, 30%, 66%);
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 600;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(72, 122, 92, 0.25);
        }

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

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(138, 30%, 26%);
  font-weight: 700;
}

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

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

.about-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: hsl(138, 30%, 41%);
}

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

.about-hero {
  background: linear-gradient(135deg, hsl(138, 30%, 41%) 0%, hsl(138, 30%, 26%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
}

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

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  height: 400px;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

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

.value-card {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid hsl(138, 30%, 41%);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.value-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

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

.stats-row {
  background-color: hsl(138, 30%, 96%);
  padding: 50px 30px;
  border-radius: 15px;
  margin: 50px 0;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(138, 30%, 41%);
  font-family: 'Roboto', sans-serif;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
  font-weight: 600;
}

.mission-box {
  background: linear-gradient(135deg, hsl(138, 30%, 26%) 0%, hsl(138, 30%, 41%) 100%);
  color: #ffffff;
  padding: 50px 40px;
  border-radius: 15px;
  margin: 40px 0;
}

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

.mission-box p {
  color: #f8f9fa;
  font-size: 1.1rem;
  margin-bottom: 0;
}

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

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

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

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

  .about-image-wrapper {
    height: 300px;
  }

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

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

  .mission-box {
    padding: 35px 25px;
  }
}

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

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

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

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

  .filter-btn {
    font-family: 'Open Sans', sans-serif;
    padding: 10px 25px;
    border: 2px solid hsl(138, 30%, 41%);
    background: transparent;
    color: hsl(138, 30%, 41%);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }

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

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

  .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 30px rgba(0,0,0,0.2);
  }

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

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

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

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

  .portfolio-content {
    padding: 25px;
  }

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

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

  .portfolio-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
  }

  .portfolio-overlay-text {
    color: #fff;
  }

  .portfolio-overlay-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .portfolio-overlay-category {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: hsl(138, 30%, 66%);
    font-weight: 600;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(138, 30%, 41%) 0%, hsl(138, 30%, 26%) 100%);
    color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 25px 30px;
  }

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

  .modal-body {
    padding: 30px;
  }

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

  .project-detail-category {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: hsl(138, 30%, 41%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .project-detail-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
  }

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

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

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

  .project-details-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
  }

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

  .project-details-list li strong {
    color: #222;
    font-weight: 600;
    margin-right: 10px;
  }

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

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

    #portfolio .section-title {
      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-title {
      font-size: 1.5rem;
    }
  }

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

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

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

.advantage-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    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(138, 30%, 41%) 0%, hsl(138, 30%, 66%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(138, 30%, 26%) 0%, hsl(138, 30%, 41%) 100%);
}

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

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

.advantage-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

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

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

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

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(138, 30%, 41%) 0%, hsl(138, 30%, 26%) 100%);
    position: relative;
    overflow: hidden;
}

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

.statistics-section .section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.statistics-section .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #f8f9fa;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: hsl(138, 30%, 66%);
    background: #ffffff;
}

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

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

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

.stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(138, 30%, 26%);
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #555555;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-context {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: #777777;
    font-style: italic;
}

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

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

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

    .stat-card {
        margin-bottom: 25px;
        padding: 30px 20px;
    }

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

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(138, 30%, 26%) 0%, hsl(138, 30%, 20%) 100%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Open Sans', sans-serif;
  margin-top: 80px;
}

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

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

footer a {
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: hsl(138, 30%, 66%);
  padding-left: 5px;
}

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

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

footer .contact-info i {
  color: hsl(138, 30%, 66%);
  margin-right: 10px;
  width: 20px;
}

footer .footer-description {
  margin-bottom: 25px;
  line-height: 1.7;
}

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

footer .company-name {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

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

.contact-item strong {
  color: hsl(138, 30%, 66%);
  min-width: 120px;
  display: inline-block;
}

#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: 30px 0;
  border-top: 3px solid hsl(138, 30%, 41%);
  animation: slideUp 0.5s ease-out;
}

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

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

#cookieNotice p {
  color: #555;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.cookie-category {
  margin-bottom: 15px;
  padding: 12px;
  background: #ffffff;
  border-radius: 6px;
  border-left: 3px solid hsl(138, 30%, 41%);
}

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

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

.cookie-category.required {
  border-left-color: hsl(138, 30%, 41%);
}

.cookie-category.optional {
  border-left-color: #6c757d;
}

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

#cookieNotice .btn-accept-all {
  background: hsl(138, 30%, 41%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
}

#cookieNotice .btn-accept-all:hover {
  background: hsl(138, 30%, 35%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#cookieNotice .btn-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
}

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

#cookieNotice .btn-manage {
  background: transparent;
  color: hsl(138, 30%, 41%);
  border: 2px solid hsl(138, 30%, 41%);
  padding: 10px 28px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

#cookieNotice .btn-manage:hover {
  background: hsl(138, 30%, 41%);
  color: #ffffff;
  transform: translateY(-2px);
}

.cookie-buttons {
  margin-top: 25px;
}

@media (max-width: 768px) {
  #cookieNotice {
    padding: 20px 0;
  }
  
  #cookieNotice h4 {
    font-size: 1.2rem;
  }
  
  .cookie-buttons {
    display: flex;
    flex-direction: column;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-top: 30px;
  }
}

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

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

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

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

.contact-section .lead-text {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: hsl(138, 30%, 41%);
    box-shadow: 0 0 0 0.2rem rgba(76, 132, 93, 0.15);
    outline: none;
}

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

.contact-form .required-mark {
    color: hsl(138, 30%, 41%);
    margin-left: 3px;
}

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

.contact-form .btn-submit:hover {
    background: hsl(138, 30%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 132, 93, 0.3);
}

.contact-info-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid hsl(138, 30%, 41%);
}

.contact-info-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e8e8e8;
}

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(138, 30%, 41%) 0%, hsl(138, 30%, 26%) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

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

.contact-info-content h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.contact-info-content p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-content a {
    color: hsl(138, 30%, 41%);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: hsl(138, 30%, 26%);
    text-decoration: underline;
}

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

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

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

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

@media (max-width: 767px) {
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper h3,
    .contact-info-card h3 {
        font-size: 1.5rem;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(138, 30%, 41%);
    --secondary-color: hsl(138, 30%, 26%);
    --accent-color: hsl(138, 30%, 66%);
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.7;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Roboto', 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.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .info-box {
    background-color: hsl(138, 30%, 95%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .cookie-table {
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
  }
  
  .cookie-table td {
    background-color: white;
  }
  
  .contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-section h2 {
    color: white;
    border-left-color: white;
  }
  
  .contact-section a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-section a:hover {
    color: var(--accent-color);
  }

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

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

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

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

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

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

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

  .faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(138, 30%, 41%);
    color: #ffffff;
    box-shadow: none;
  }

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

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

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

  .faq-accordion .accordion-body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    padding: 1.75rem;
    background-color: #ffffff;
  }

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

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

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

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

  .faq-cta {
    text-align: center;
    margin-top: 3.5rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-cta h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
  }

  .faq-cta p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
  }

  .faq-cta-btn {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    background-color: hsl(138, 30%, 41%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .faq-cta-btn:hover {
    background-color: hsl(138, 30%, 26%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  }

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

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

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

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

    .faq-cta {
      padding: 2rem 1.5rem;
    }

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(138, 30%, 26%) 0%, hsl(138, 30%, 41%) 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: 2;
}

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

.newsletter-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.newsletter-input-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-email-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
}

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

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

.newsletter-submit-btn {
  padding: 1rem 2.5rem;
  background: hsl(138, 30%, 66%);
  color: #222;
  border: none;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: hsl(138, 30%, 56%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

.newsletter-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f8f9fa;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
}

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

.newsletter-benefit-icon::before {
  content: '✓';
  color: #222;
  font-weight: bold;
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

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

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

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

.hero-section h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: hsl(138, 30%, 41%);
  margin-bottom: 25px;
}

.hero-section .description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

.hero-section .advantages-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.hero-section .advantages-list li {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #333;
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}

.hero-section .advantages-list li i {
  position: absolute;
  left: 0;
  top: 12px;
  color: hsl(138, 30%, 41%);
  font-size: 1.3rem;
}

.hero-section .cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-section .btn-primary-custom {
  background-color: hsl(138, 30%, 41%);
  border: 2px solid hsl(138, 30%, 41%);
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-section .btn-primary-custom:hover {
  background-color: hsl(138, 30%, 26%);
  border-color: hsl(138, 30%, 26%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-section .btn-secondary-custom {
  background-color: transparent;
  border: 2px solid hsl(138, 30%, 41%);
  color: hsl(138, 30%, 41%);
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-section .btn-secondary-custom:hover {
  background-color: hsl(138, 30%, 41%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.hero-section .hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

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

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

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

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

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

.services-section {
    padding: 80px 0;
    background: #f8f9fa;
    font-family: 'Open Sans', sans-serif;
}

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

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

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

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

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

.service-card:hover .service-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, hsl(138, 30%, 26%), hsl(138, 30%, 41%));
}

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

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

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.service-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.price-amount {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(138, 30%, 41%);
    margin-right: 0.5rem;
}

.price-period {
    font-size: 0.9rem;
    color: #777;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    color: #555;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
}

.service-features li:before {
    content: "✓";
    color: hsl(138, 30%, 41%);
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.service-btn {
    width: 100%;
    padding: 0.8rem;
    background: hsl(138, 30%, 41%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.service-btn:hover {
    background: hsl(138, 30%, 26%);
    color: #ffffff;
    transform: scale(1.02);
}

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

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

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

    .service-card p {
        min-height: auto;
    }
}

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

.credentials-section .section-title {
  font-family: 'Roboto', 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%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.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: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .credentials-section {
    padding: 50px 0;
  }
  
  .credentials-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 35px;
  }
}

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

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

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

.testimonials-section .subtitle {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  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%;
  border-left: 4px solid hsl(138, 30%, 41%);
}

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

.testimonial-card.style-2 {
  border-left: none;
  border-top: 4px solid hsl(138, 30%, 66%);
}

.testimonial-card.style-3 {
  border-left: none;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid hsl(138, 30%, 66%);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.customer-info h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.3rem;
}

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

.customer-location i {
  color: hsl(138, 30%, 41%);
  font-size: 0.85rem;
}

.rating {
  display: flex;
  gap: 0.2rem;
}

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

.rating i.filled {
  color: #ffc107;
}

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

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

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

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

.service-tag {
  display: inline-block;
  background: hsl(138, 30%, 95%);
  color: hsl(138, 30%, 26%);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: hsl(138, 30%, 41%);
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 1rem;
}

.verified-badge i {
  font-size: 0.9rem;
}

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

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

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

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

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

  #blog .section-header p {
    font-family: 'Open Sans', sans-serif;
    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-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  #blog .blog-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  #blog .blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: #777;
  }

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

  #blog .blog-meta i {
    color: hsl(138, 30%, 41%);
  }

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

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

  #blog .blog-card-title a:hover {
    color: hsl(138, 30%, 41%);
  }

  #blog .blog-card-excerpt {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  #blog .blog-read-more {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: hsl(138, 30%, 41%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }

  #blog .blog-read-more:hover {
    gap: 12px;
    color: hsl(138, 30%, 26%);
  }

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

  #blog .view-all-btn .btn {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 40px;
    background-color: hsl(138, 30%, 41%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  #blog .view-all-btn .btn:hover {
    background-color: hsl(138, 30%, 26%);
    transform: translateY(-2px);
  }

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

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

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

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

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

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

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

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

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

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsl(138, 30%, 41%) 0%, hsl(138, 30%, 26%) 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.offer-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.offer-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #444;
    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 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.deadline-wrapper {
    background: linear-gradient(135deg, hsl(138, 30%, 41%) 0%, hsl(138, 30%, 26%) 100%);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.deadline-wrapper::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="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.deadline-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.deadline-date {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: hsl(138, 30%, 98%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: hsl(138, 30%, 96%);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, hsl(138, 30%, 41%) 0%, hsl(138, 30%, 26%) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.discount-badge {
    display: inline-block;
    background: hsl(138, 30%, 41%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.offer-cta {
    text-align: center;
    margin-top: 40px;
}

.offer-btn {
    display: inline-block;
    background: linear-gradient(135deg, hsl(138, 30%, 41%) 0%, hsl(138, 30%, 26%) 100%);
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border: none;
}

.offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

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

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

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

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

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

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

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

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

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

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: hsl(138, 30%, 41%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.disclaimer-icon i {
  font-size: 36px;
  color: #ffffff;
}

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

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

.disclaimer-text p {
  margin-bottom: 20px;
}

.disclaimer-text p:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

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

@media (max-width: 480px) {
  .disclaimer-title {
    font-size: 1.75rem;
  }

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

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(138, 30%, 41%);
    --secondary-color: hsl(138, 30%, 26%);
    --accent-color: hsl(138, 30%, 66%);
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.7;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4,
  .policy-content h5,
  .policy-content h6 {
    font-family: 'Roboto', 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.8rem;
    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.3rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }
  
  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.375rem;
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--primary-color);
  }
  
  .info-highlight {
    background-color: rgba(138, 30%, 41%, 0.1);
    padding: 1.5rem;
    border-radius: 0.375rem;
    margin: 1.5rem 0;
    border: 1px solid var(--accent-color);
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 2rem 0;
    border: none;
  }

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(138, 30%, 41%);
    --secondary-color: hsl(138, 30%, 26%);
    --accent-color: hsl(138, 30%, 66%);
  }
  
  .policy-content {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Roboto', sans-serif;
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .info-box {
    background-color: rgba(138, 30%, 41%, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-details {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2.5rem;
  }
  
  .contact-details h3 {
    color: white;
    margin-bottom: 1.25rem;
  }
  
  .contact-details a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-details a:hover {
    color: var(--accent-color);
  }
  
  .last-updated {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
  }