:root {
            --primary-color: hsl(154, 35%, 48%);
            --secondary-color: hsl(154, 35%, 33%);
            --accent-color: hsl(154, 35%, 73%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51, 51, 51, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

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

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

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

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

  #about .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

  #about .about-image {
    flex: 1;
    position: relative;
  }

  #about .about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  #about .about-image img:hover {
    transform: translateY(-5px);
  }

  #about .about-text {
    flex: 1;
  }

  #about .about-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 20px;
  }

  #about .about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
  }

  #about .values-section {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 60px;
  }

  #about .values-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
  }

  #about .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  #about .value-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid hsl(154, 35%, 48%);
    transition: all 0.3s ease;
  }

  #about .value-card:hover {
    background: hsl(154, 35%, 73%);
    transform: translateX(5px);
  }

  #about .value-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: hsl(154, 35%, 33%);
    margin-bottom: 12px;
  }

  #about .value-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
  }

  #about .mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }

  #about .mission-box,
  #about .vision-box {
    background: linear-gradient(135deg, hsl(154, 35%, 48%) 0%, hsl(154, 35%, 33%) 100%);
    padding: 40px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }

  #about .mission-box h3,
  #about .vision-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
  }

  #about .mission-box p,
  #about .vision-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: #f8f9fa;
    margin: 0;
  }

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

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

    #about .values-section {
      padding: 30px;
    }
  }

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

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

    #about .about-text h3 {
      font-size: 1.5rem;
    }

    #about .values-title {
      font-size: 1.6rem;
    }

    #about .values-grid {
      grid-template-columns: 1fr;
    }

    #about .mission-vision {
      grid-template-columns: 1fr;
      gap: 25px;
    }
  }

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

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

  .portfolio-section .lead-text {
    font-family: 'Source Sans Pro', sans-serif;
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

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

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

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(154, 35%, 48%);
    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 bottom, transparent 0%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

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

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Source Sans Pro', sans-serif;
    color: hsl(154, 35%, 48%);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

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

  .portfolio-description {
    font-family: 'Source Sans Pro', sans-serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .view-details-btn {
    font-family: 'Source Sans Pro', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(154, 35%, 48%);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .view-details-btn:hover {
    color: hsl(154, 35%, 33%);
    gap: 12px;
  }

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

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

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

  .modal-body {
    padding: 35px;
  }

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

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

  .modal-description {
    font-family: 'Source Sans Pro', sans-serif;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
  }

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

  .project-details-list li {
    font-family: 'Source Sans Pro', sans-serif;
    color: #555;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
  }

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

  .detail-label {
    font-weight: 600;
    color: #333;
  }

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

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

  #advantages .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(154, 35%, 48%), hsl(154, 35%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(68, 138, 108, 0.3);
  }

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

  #advantages .advantage-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  #advantages .advantage-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
  }

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

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

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

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

    #advantages .icon-wrapper {
      width: 60px;
      height: 60px;
    }

    #advantages .icon-wrapper i {
      font-size: 28px;
    }

    #advantages .advantage-title {
      font-size: 1.2rem;
    }
  }

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

    #advantages .advantage-card {
      padding: 25px 18px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;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(154, 35%, 48%) 0%, hsl(154, 35%, 73%) 100%);
  }

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

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

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

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

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

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

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

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

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

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

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

  #statistics .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: hsl(154, 35%, 33%);
    margin-bottom: 10px;
    line-height: 1.2;
  }

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

  #statistics .stat-context {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
  }

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

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

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

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

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

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(154, 35%, 33%) 0%, hsl(154, 35%, 28%) 100%);
  color: #ffffff;
  padding: 60px 0 0;
  font-family: 'Source Sans Pro', sans-serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: hsl(154, 35%, 73%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

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

.footer-contact-info {
  margin-bottom: 15px;
}

.footer-contact-info i {
  color: hsl(154, 35%, 73%);
  margin-right: 10px;
  width: 20px;
}

.footer-bottom {
  background: hsl(154, 35%, 25%);
  padding: 25px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #d0d0d0;
}

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

.business-hours-list {
  font-size: 0.9rem;
}

.business-hours-list li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

#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: 4px solid hsl(154, 35%, 48%);
  animation: slideUp 0.5s ease-out;
}

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

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

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

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

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

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

.cookie-category-title {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.cookie-category-desc {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.cookie-required {
  display: inline-block;
  background: hsl(154, 35%, 48%);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 8px;
}

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

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

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

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

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

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

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

.btn-manage-settings:hover {
  background: hsl(154, 35%, 48%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

  footer h5 {
    margin-top: 30px;
  }

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

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

  #cookieNotice {
    padding: 20px 0;
  }
}

.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; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid #eee; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

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

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

.contact-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.contact-form .form-control:focus {
    border-color: hsl(154, 35%, 48%);
    box-shadow: 0 0 0 0.2rem rgba(76, 153, 117, 0.15);
    outline: none;
}

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

.contact-form .required-mark {
    color: hsl(154, 35%, 48%);
    font-weight: 700;
}

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

.contact-form .btn-submit:hover {
    background: hsl(154, 35%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 153, 117, 0.3);
}

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

.contact-info-wrapper h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 1.75rem;
}

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

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

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

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

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

.contact-info-content a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info-content a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

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

.hours-list li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

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

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-info-item {
        margin-bottom: 25px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

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

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

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

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

  #faq .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
  }

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

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

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

  #faq .accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    background: #ffffff;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed) {
    background: hsl(154, 35%, 48%);
    color: #ffffff;
    box-shadow: none;
  }

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

  #faq .accordion-button::after {
    width: 24px;
    height: 24px;
    background-size: 24px;
    transition: transform 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
  }

  #faq .accordion-body {
    padding: 30px;
    background: #ffffff;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    border-top: 1px solid #e9ecef;
  }

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

  #faq .accordion-body ul {
    margin: 15px 0;
    padding-left: 25px;
  }

  #faq .accordion-body li {
    margin-bottom: 8px;
    color: #555;
  }

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

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

    #faq .accordion-button {
      font-size: 1.05rem;
      padding: 20px 20px;
    }

    #faq .accordion-body {
      padding: 25px 20px;
      font-size: 1rem;
    }
  }

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

    #faq .section-header p {
      font-size: 1rem;
    }

    #faq .accordion-button {
      font-size: 0.95rem;
      padding: 18px 15px;
    }
  }

.newsletter-section {
  background: linear-gradient(135deg, hsl(154, 35%, 48%) 0%, hsl(154, 35%, 33%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.newsletter-description {
  font-family: 'Source Sans Pro', 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-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
}

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

.newsletter-input::placeholder {
  color: #6c757d;
}

.newsletter-submit {
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(154, 35%, 33%);
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: hsl(154, 35%, 73%);
  border-color: hsl(154, 35%, 73%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.newsletter-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
}

.newsletter-feature svg {
  width: 20px;
  height: 20px;
  fill: hsl(154, 35%, 73%);
}

@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-input {
    min-width: 100%;
  }
  
  .newsletter-submit {
    width: 100%;
  }
  
  .newsletter-features {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .newsletter-feature {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .newsletter-heading {
    font-size: 1.75rem;
  }
  
  .newsletter-description {
    font-size: 0.95rem;
  }
  
  .newsletter-features {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Source+Sans+Pro:wght@300;400;600&display=swap');

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(154, 35%, 48%, 0.05);
    border-radius: 50%;
    z-index: 0;
  }

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

  .hero-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  .hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: #222;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-align: center;
  }

  .hero-subheading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: hsl(154, 35%, 33%);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.4;
  }

  .hero-image-wrapper {
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

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

  .hero-image-wrapper:hover .hero-image {
    transform: scale(1.03);
  }

  .hero-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2.5rem;
    text-align: left;
  }

  .hero-description p {
    margin-bottom: 1.2rem;
  }

  .hero-advantages {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid hsl(154, 35%, 48%);
    margin: 2.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }

  .hero-advantages ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .hero-advantages li {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.05rem;
    color: #333;
    padding: 0.8rem 0;
    padding-left: 2.2rem;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
  }

  .hero-advantages li::before {
    content: '\f26b';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(154, 35%, 48%);
    font-size: 1.2rem;
    font-weight: bold;
  }

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

  .hero-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
  }

  .hero-btn-primary {
    background: hsl(154, 35%, 48%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(74, 158, 123, 0.3);
  }

  .hero-btn-primary:hover {
    background: hsl(154, 35%, 33%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 123, 0.4);
  }

  .hero-btn-secondary {
    background: transparent;
    color: hsl(154, 35%, 33%);
    border: 2px solid hsl(154, 35%, 48%);
  }

  .hero-btn-secondary:hover {
    background: hsl(154, 35%, 48%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 158, 123, 0.3);
  }

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

    .hero-heading {
      font-size: 2.2rem;
    }

    .hero-subheading {
      font-size: 1.2rem;
    }

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

    .hero-advantages {
      padding: 1.5rem;
    }

    .hero-advantages li {
      font-size: 1rem;
    }

    .hero-btn {
      font-size: 1rem;
      padding: 12px 28px;
      width: 100%;
      justify-content: center;
    }

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

  @media (max-width: 480px) {
    .hero-heading {
      font-size: 1.8rem;
    }

    .hero-subheading {
      font-size: 1.1rem;
    }
  }

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

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

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

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(68, 138, 109, 0.2);
    border-color: hsl(154, 35%, 48%);
  }

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

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(154, 35%, 33%) 0%, hsl(154, 35%, 48%) 100%);
  }

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

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

  .service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

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

  .service-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: hsl(154, 35%, 48%);
  }

  .price-label {
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-bottom: 5px;
  }

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

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

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

    .service-card {
      padding: 25px 20px;
    }

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

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

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

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

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

.offer-badge {
    display: inline-block;
    background: hsl(154, 35%, 73%);
    color: hsl(154, 35%, 33%);
    padding: 8px 24px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.offer-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.deadline-block {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, hsl(154, 35%, 73%) 0%, hsl(154, 35%, 48%) 100%);
    border-radius: 15px;
}

.deadline-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: hsl(154, 35%, 33%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

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

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

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

.benefits-list li {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #333333;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.benefit-icon {
    width: 40px;
    height: 40px;
    background: hsl(154, 35%, 73%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(154, 35%, 33%);
    font-size: 20px;
    flex-shrink: 0;
}

.discount-badge {
    display: inline-block;
    background: hsl(154, 35%, 48%);
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    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(154, 35%, 48%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    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);
}

.offer-btn:hover {
    background: hsl(154, 35%, 33%);
    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-title {
        font-size: 36px;
    }

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

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

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

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

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

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

.blog-preview-section {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Source Sans Pro', sans-serif;
}

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

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

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

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

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

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

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

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

.blog-meta-item i {
  color: hsl(154, 35%, 48%);
  font-size: 1rem;
}

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

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

.blog-card-title a:hover {
  color: hsl(154, 35%, 48%);
}

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

.blog-read-more {
  color: hsl(154, 35%, 48%);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  gap: 0.75rem;
  color: hsl(154, 35%, 33%);
}

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

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

.btn-view-all:hover {
  background: hsl(154, 35%, 33%);
  color: #fff;
  transform: translateY(-2px);
}

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

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

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

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

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

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

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

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

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

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

.testimonial-card.compact {
  padding: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(154, 35%, 48%) 0%, hsl(154, 35%, 33%) 100%);
  color: #ffffff;
  border-left: none;
  border-top: 4px solid hsl(154, 35%, 73%);
}

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

.testimonial-card.featured .stars i {
  color: hsl(154, 35%, 73%);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(154, 35%, 73%) 0%, hsl(154, 35%, 48%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(154, 35%, 48%);
}

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

.customer-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

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

.customer-location i {
  color: hsl(154, 35%, 48%);
  font-size: 0.85rem;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

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

.stars i.far {
  color: #ddd;
}

.review-text {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
  flex-grow: 1;
}

.review-highlight {
  background: hsl(154, 35%, 95%);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  border-left: 3px solid hsl(154, 35%, 48%);
  font-style: italic;
  color: #333;
}

.testimonial-card.featured .review-highlight {
  background: rgba(255,255,255,0.15);
  border-left-color: #ffffff;
  color: #ffffff;
}

.review-date {
  color: #999;
  font-size: 0.85rem;
  margin-top: 15px;
  text-align: right;
}

.testimonial-card.featured .review-date {
  color: rgba(255,255,255,0.8);
}

.service-tag {
  display: inline-block;
  background: hsl(154, 35%, 95%);
  color: hsl(154, 35%, 33%);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 15px;
  font-weight: 600;
}

.testimonial-card.featured .service-tag {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
    margin-bottom: 20px;
  }
  
  .customer-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

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

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

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

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

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

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

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

    #credentials .section-title {
      font-size: 1.75rem;
      margin-bottom: 30px;
    }

    #credentials .trust-icon {
      font-size: 2rem;
    }

    #credentials .trust-title {
      font-size: 0.95rem;
    }
  }

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

    #credentials .trust-card {
      padding: 20px 10px;
    }
  }

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
}

.disclaimer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(154, 35%, 48%), hsl(154, 35%, 73%));
}

.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-header {
  text-align: center;
  margin-bottom: 40px;
}

.disclaimer-icon {
  font-size: 48px;
  color: hsl(154, 35%, 48%);
  margin-bottom: 20px;
  display: inline-block;
}

.disclaimer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.disclaimer-content {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.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: 35px 25px;
  }
  
  .disclaimer-title {
    font-size: 2rem;
  }
  
  .disclaimer-icon {
    font-size: 40px;
  }
  
  .disclaimer-content {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .disclaimer-container {
    padding: 30px 20px;
  }
  
  .disclaimer-title {
    font-size: 1.75rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
  
  .thank-you-section {
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(154, 35%, 98%) 0%, hsl(154, 35%, 95%) 100%);
    padding: 2rem 1rem;
  }
  
  .thank-you-container {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: hsl(154, 35%, 48%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
  }
  
  .success-icon svg {
    width: 60px;
    height: 60px;
  }
  
  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .thank-you-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(154, 35%, 33%);
    margin-bottom: 1rem;
  }
  
  .thank-you-subheading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: hsl(154, 35%, 48%);
    margin-bottom: 1.5rem;
  }
  
  .thank-you-message {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .thank-you-details {
    background: hsl(154, 35%, 96%);
    border-left: 4px solid hsl(154, 35%, 48%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
  }
  
  .thank-you-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .thank-you-details li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
  }
  
  .thank-you-details li::before {
    content: "✓";
    color: hsl(154, 35%, 48%);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
  }
  
  .btn-home {
    background: hsl(154, 35%, 48%);
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .btn-home:hover {
    background: hsl(154, 35%, 33%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  @media (max-width: 576px) {
    .thank-you-container {
      padding: 2rem 1.5rem;
    }
    
    .thank-you-heading {
      font-size: 2rem;
    }
    
    .thank-you-subheading {
      font-size: 1.1rem;
    }
    
    .thank-you-message {
      font-size: 1rem;
    }
    
    .success-icon {
      width: 80px;
      height: 80px;
    }
    
    .success-icon svg {
      width: 48px;
      height: 48px;
    }
  }