:root {
            --primary-color: hsl(191, 48%, 35%);
            --secondary-color: hsl(191, 48%, 20%);
            --accent-color: hsl(191, 48%, 60%);
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: #ffffff;
            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(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-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(52, 121, 136, 0.25);
        }

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

.about-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(191, 48%, 20%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-section h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(191, 48%, 35%);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.about-intro {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 50px;
}

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

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

.value-card {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid hsl(191, 48%, 35%);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.value-card h4 {
  font-family: 'Roboto', sans-serif;
  color: hsl(191, 48%, 20%);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.stats-row {
  background-color: hsl(191, 48%, 35%);
  color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.stat-label {
  font-size: 1rem;
  color: #ffffff;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
  
  .about-intro {
    padding: 25px;
  }
}

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

  #portfolio h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(191, 48%, 20%);
    margin-bottom: 1rem;
    text-align: center;
  }

  #portfolio .section-subtitle {
    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 {
    padding: 10px 28px;
    border: 2px solid hsl(191, 48%, 35%);
    background: #fff;
    color: hsl(191, 48%, 35%);
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(191, 48%, 35%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 108, 0.25);
  }

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

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

  .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(37, 99, 108, 0.2);
  }

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

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

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    display: inline-block;
    padding: 6px 16px;
    background: hsl(191, 48%, 60%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .portfolio-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(191, 48%, 20%);
    margin-bottom: 12px;
  }

  .portfolio-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .view-details {
    color: hsl(191, 48%, 35%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .view-details:hover {
    color: hsl(191, 48%, 20%);
    gap: 12px;
  }

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

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

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

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

  .modal-body {
    padding: 30px;
  }

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

  .modal-body h5 {
    font-family: 'Roboto', sans-serif;
    color: hsl(191, 48%, 20%);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .modal-body p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
  }

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

  .project-details-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
  }

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

  .project-details-list strong {
    color: hsl(191, 48%, 20%);
    font-weight: 600;
    margin-right: 10px;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

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

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(191, 48%, 60%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  #advantages .section-header h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(191, 48%, 20%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

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

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

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

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

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

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(35, 102, 117, 0.2);
    border-color: hsl(191, 48%, 60%);
  }

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

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

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

  .advantage-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(191, 48%, 20%);
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
  }

  .advantage-card:hover h3 {
    color: hsl(191, 48%, 35%);
  }

  .advantage-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

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

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

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

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

    #advantages .section-header h2 {
      font-size: 1.75rem;
    }

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

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

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

    .advantage-card h3 {
      font-size: 1.15rem;
    }
  }

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(191, 48%, 35%) 0%, hsl(191, 48%, 20%) 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.05)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

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

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

.statistics-header h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(191, 48%, 60%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: hsl(191, 48%, 60%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(360deg);
    background: #ffffff;
    color: hsl(191, 48%, 35%);
}

.stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    display: block;
}

.stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-context {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-style: italic;
}

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

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

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

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

    .stat-card {
        padding: 30px 15px;
    }

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

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

footer h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: hsl(191, 48%, 60%);
}

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

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

footer a:hover {
  color: hsl(191, 48%, 60%);
  padding-left: 5px;
}

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

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

footer ul li i {
  margin-right: 8px;
  color: hsl(191, 48%, 60%);
}

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

.footer-contact-item i {
  color: hsl(191, 48%, 60%);
  margin-right: 12px;
  margin-top: 4px;
  font-size: 1.1rem;
}

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

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

#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(191, 48%, 35%);
}

#cookieNotice h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: hsl(191, 48%, 20%);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

#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-bottom: 25px;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}

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

.cookie-category-icon {
  color: hsl(191, 48%, 35%);
  margin-right: 12px;
  font-size: 1.2rem;
  margin-top: 3px;
}

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

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

.cookie-required-badge {
  display: inline-block;
  background: hsl(191, 48%, 35%);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: 8px;
  font-weight: 600;
}

.cookie-optional-badge {
  display: inline-block;
  background: #6c757d;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: 8px;
  font-weight: 600;
}

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

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

.btn-accept-all:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

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

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

.btn-manage-settings {
  background: transparent;
  color: hsl(191, 48%, 35%);
  border: 2px solid hsl(191, 48%, 35%);
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-manage-settings:hover {
  background: hsl(191, 48%, 35%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 115, 129, 0.3);
}

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

  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact-item {
    justify-content: center;
    text-align: left;
  }

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

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

  #cookieNotice {
    padding: 20px 0;
  }
}

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

.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 {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  #contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(191, 48%, 60%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  #contact .section-header h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(191, 48%, 20%);
    margin-bottom: 15px;
  }

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

  #contact .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

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

  #contact .contact-form-box h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(191, 48%, 20%);
    margin-bottom: 25px;
  }

  #contact .form-group {
    margin-bottom: 20px;
  }

  #contact .form-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
  }

  #contact .form-label .required {
    color: #dc3545;
    margin-left: 3px;
  }

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

  #contact .form-control:focus {
    border-color: hsl(191, 48%, 35%);
    box-shadow: 0 0 0 0.2rem rgba(44, 127, 140, 0.15);
    outline: none;
  }

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

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

  #contact .btn-submit:hover {
    background: hsl(191, 48%, 20%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 127, 140, 0.3);
  }

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

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

  #contact .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

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

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

  #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;
    margin-bottom: 8px;
    color: #ffffff;
  }

  #contact .info-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }

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

  #contact .info-content a:hover {
    color: hsl(191, 48%, 60%);
    transform: translateX(3px);
  }

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

  #contact .hours-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
  }

  #contact .hours-list li span:first-child {
    font-weight: 600;
  }

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

    #contact .contact-wrapper {
      grid-template-columns: 1fr;
      gap: 30px;
    }

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

    #contact .contact-form-box,
    #contact .contact-info-box {
      padding: 30px;
    }
  }

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

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

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

    #contact .contact-form-box,
    #contact .contact-info-box {
      padding: 25px;
    }

    #contact .contact-form-box h3,
    #contact .contact-info-box h3 {
      font-size: 1.5rem;
    }

    #contact .info-icon {
      width: 45px;
      height: 45px;
      margin-right: 15px;
    }

    #contact .btn-submit {
      font-size: 1rem;
      padding: 12px 30px;
    }
  }

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

.faq-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(191, 48%, 20%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

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

.accordion-button {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(191, 48%, 20%);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  border: none;
  transition: all 0.3s ease;
}

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

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

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23267c8f'%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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: 20px;
  text-align: center;
}

.newsletter-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 40px;
  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: 15px;
  flex-wrap: wrap;
}

.newsletter-email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  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(191, 48%, 60%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

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

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

.newsletter-submit-btn:hover {
  background: hsl(191, 48%, 50%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

  .newsletter-email-input,
  .newsletter-submit-btn {
    padding: 14px 20px;
  }

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

.hero-section {
  background: linear-gradient(135deg, hsl(191, 48%, 98%) 0%, hsl(191, 30%, 95%) 100%);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-section h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: hsl(191, 48%, 20%);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: hsl(191, 48%, 35%);
  margin-bottom: 1.8rem;
}

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

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

.hero-advantages li {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  color: #222;
  padding: 0.7rem 0;
  display: flex;
  align-items: center;
  line-height: 1.6;
}

.hero-advantages li i {
  color: hsl(191, 48%, 35%);
  font-size: 1.3rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

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

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

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

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

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

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

.btn-hero-secondary:hover {
  background: hsl(191, 48%, 35%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

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

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

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

.testimonials-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(191, 48%, 20%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials-section .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(191, 48%, 60%);
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(191, 48%, 35%) 0%, hsl(191, 48%, 25%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(191, 48%, 60%);
}

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

.testimonial-card.featured .star-rating i {
  color: #ffc107;
}

.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(191, 48%, 60%) 0%, hsl(191, 48%, 45%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

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

.customer-info {
  flex: 1;
}

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

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

.customer-location i {
  color: hsl(191, 48%, 60%);
}

.testimonial-card.featured .customer-location i {
  color: #ffffff;
}

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

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

.star-rating i.far {
  color: #ddd;
}

.review-text {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
  flex: 1;
  margin-bottom: 15px;
}

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

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

.testimonial-card.compact {
  padding: 25px;
}

.testimonial-card.compact .review-text {
  font-size: 0.95rem;
}

.testimonial-card.detailed {
  padding: 35px;
}

.service-badge {
  display: inline-block;
  background: hsl(191, 48%, 60%);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.testimonial-card.featured .service-badge {
  background: rgba(255,255,255,0.2);
}

@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: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
  }

  #credentials .trust-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #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-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }

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

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

    #credentials .trust-card {
      margin-bottom: 15px;
    }
  }

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

  .services-section h2 {
    font-family: 'Roboto', sans-serif;
    color: hsl(191, 48%, 20%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

  .services-intro {
    color: #555;
    font-size: 1.1rem;
    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.3s ease;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(32, 107, 122, 0.15);
    border-color: hsl(191, 48%, 60%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(191, 48%, 35%) 0%, hsl(191, 48%, 45%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
  }

  .service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(191, 48%, 45%) 0%, hsl(191, 48%, 60%) 100%);
    transform: rotate(360deg);
  }

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

  .service-card h3 {
    font-family: 'Roboto', sans-serif;
    color: hsl(191, 48%, 20%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
  }

  .service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    min-height: 90px;
  }

  .service-price {
    font-family: 'Roboto', sans-serif;
    color: hsl(191, 48%, 35%);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .service-terms {
    color: #888;
    font-size: 0.85rem;
    text-align: center;
    font-style: italic;
  }

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

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

    .service-description {
      min-height: auto;
    }
  }

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

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

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

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 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: 1px solid #e8e8e8;
}

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

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 260px;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-content {
  padding: 2rem;
  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: hsl(191, 48%, 35%);
  font-weight: 500;
}

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

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

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

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

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

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

.blog-read-more:hover {
  gap: 0.8rem;
  color: hsl(191, 48%, 20%);
}

.blog-cta-wrapper {
  text-align: center;
  margin-top: 3.5rem;
}

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

.btn-view-all:hover {
  background: hsl(191, 48%, 20%);
  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: 220px;
  }
  
  .blog-card-content {
    padding: 1.5rem;
  }
  
  .blog-card-title {
    font-size: 1.3rem;
  }
  
  .blog-meta {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, hsl(191, 48%, 35%), hsl(191, 48%, 60%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.discount-highlight {
    background: hsl(191, 48%, 35%);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
}

.discount-percentage {
    font-family: 'Roboto', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.discount-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    margin: 0;
}

.offer-cta {
    background: linear-gradient(135deg, hsl(191, 48%, 35%), hsl(191, 48%, 60%));
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.offer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, hsl(191, 48%, 40%), hsl(191, 48%, 65%));
    color: #fff;
}

@media (max-width: 768px) {
    .offer-section {
        padding: 60px 0;
    }
    
    .offer-heading {
        font-size: 36px;
    }
    
    .offer-description {
        font-size: 16px;
    }
    
    .offer-card {
        padding: 35px 25px;
    }
    
    .deadline-date {
        font-size: 32px;
        flex-direction: column;
        gap: 10px;
    }
    
    .discount-percentage {
        font-size: 42px;
    }
    
    .benefits-list li {
        font-size: 15px;
    }
}

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

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

.disclaimer-icon {
  font-size: 3.5rem;
  color: hsl(191, 48%, 35%);
  margin-bottom: 1.5rem;
  text-align: center;
  display: block;
}

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

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-section h2 {
    font-size: 2rem;
  }
  
  .disclaimer-content {
    padding: 2rem 1.5rem;
  }
  
  .disclaimer-icon {
    font-size: 2.8rem;
  }
  
  .disclaimer-text {
    font-size: 1rem;
  }
}

@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(191, 48%, 35%);
    --secondary-color: hsl(191, 48%, 20%);
    --accent-color: hsl(191, 48%, 60%);
  }

  .thank-you-section {
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(191, 48%, 95%) 0%, hsl(191, 48%, 98%) 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.1);
    padding: 3rem 2rem;
    text-align: center;
  }

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

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

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

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

  .thank-you-message {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    color: hsl(0, 0%, 40%);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

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

  .thank-you-message strong {
    color: var(--primary-color);
    font-weight: 600;
  }

  .home-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 111, 127, 0.3);
  }

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

  .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
  }

  .info-card {
    background: hsl(191, 48%, 97%);
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
  }

  .info-card-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }

  .info-card-text {
    font-size: 0.875rem;
    color: hsl(0, 0%, 30%);
    font-weight: 600;
  }

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

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

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

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

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

    .home-button {
      font-size: 1rem;
      padding: 0.75rem 2rem;
    }
  }