:root {
            --primary-color: hsl(191, 47%, 42%);
            --secondary-color: hsl(191, 47%, 27%);
            --accent-color: hsl(191, 47%, 67%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--secondary-color);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-nav {
            gap: 0.5rem;
        }
        
        .nav-link {
            font-family: 'Nunito', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent-color);
        }
        
        .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%2851, 51, 51, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #fff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            }
            
            .nav-link::after {
                display: none;
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                border-radius: 6px;
            }
            
            .nav-link:hover {
                background-color: rgba(72, 156, 178, 0.1);
            }
        }

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

.about-section h1, .about-section h2, .about-section h3 {
  font-family: 'Poppins', sans-serif;
  color: hsl(191, 47%, 27%);
}

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

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

.about-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(191, 47%, 42%);
}

.about-intro {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-text {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  margin-bottom: 2rem;
}

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

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

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

.value-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 4px solid hsl(191, 47%, 42%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: hsl(191, 47%, 27%);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

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

.mission-box {
  background: hsl(191, 47%, 42%);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  margin: 2.5rem 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.mission-box h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.mission-box p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

.highlight-text {
  background: linear-gradient(120deg, hsl(191, 47%, 67%) 0%, hsl(191, 47%, 42%) 100%);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h1 {
    font-size: 2.2rem;
  }
  
  .about-section h2 {
    font-size: 1.7rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

  .portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(191, 47%, 42%), hsl(191, 47%, 67%));
  }

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

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

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

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

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

  .filter-btn {
    font-family: 'Nunito', sans-serif;
    padding: 12px 30px;
    border: 2px solid hsl(191, 47%, 42%);
    background: #fff;
    color: hsl(191, 47%, 42%);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(191, 47%, 42%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 134, 154, 0.3);
  }

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

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

  .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52, 134, 154, 0.25);
  }

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

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

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 134, 154, 0.9), rgba(36, 92, 106, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

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

  .overlay-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: hsl(191, 47%, 42%);
    transform: scale(0.8);
    transition: transform 0.3s ease;
  }

  .portfolio-item:hover .overlay-icon {
    transform: scale(1);
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: hsl(191, 47%, 42%);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

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

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

  .modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
  }

  .modal-header {
    background: linear-gradient(135deg, hsl(191, 47%, 42%), hsl(191, 47%, 27%));
    color: #fff;
    border: none;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 35px;
  }

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

  .modal-category {
    display: inline-block;
    background: hsl(191, 47%, 67%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .modal-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
  }

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

    .portfolio-header h2 {
      font-size: 2.2rem;
    }

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

    .filter-buttons {
      gap: 10px;
    }

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

    .portfolio-image {
      height: 240px;
    }
  }

#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, 47%, 67%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
  }

  #advantages::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(191, 47%, 42%);
    opacity: 0.05;
    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: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    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, 47%, 42%);
    border-radius: 2px;
  }

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

  .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    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, 47%, 42%), hsl(191, 47%, 67%));
    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(44, 130, 153, 0.2);
    border-color: hsl(191, 47%, 67%);
  }

  .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(191, 47%, 42%), hsl(191, 47%, 67%));
    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);
  }

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

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

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

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

  .advantage-card .card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: hsl(191, 47%, 67%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #ffffff;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }

  .advantage-card:hover .card-number {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(191, 47%, 42%), hsl(191, 47%, 67%));
  }

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

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

  #statistics .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  #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: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 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: linear-gradient(90deg, hsl(191, 47%, 42%), hsl(191, 47%, 67%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(43, 114, 128, 0.15);
  }

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

  #statistics .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(191, 47%, 42%), hsl(191, 47%, 67%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

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

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

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

  #statistics .stat-label {
    font-size: 1.05rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
  }

  #statistics .stat-context {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.4;
  }

  @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-icon {
      width: 70px;
      height: 70px;
    }

    #statistics .stat-icon i {
      font-size: 1.9rem;
    }
  }

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

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

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

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

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

  footer a:hover {
    color: hsl(191, 47%, 67%);
    transform: translateX(5px);
  }

  footer .contact-info i {
    margin-right: 10px;
    color: hsl(191, 47%, 67%);
  }

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

  footer .contact-item i {
    margin-top: 3px;
    min-width: 20px;
  }

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

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

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

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

  .footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
  }

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

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

  .policy-links a:hover {
    color: hsl(191, 47%, 67%);
    transform: translateX(0);
  }

  #cookieNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 30px 0;
    border-top: 4px solid hsl(191, 47%, 42%);
    animation: slideUp 0.5s ease;
  }

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

  #cookieNotice h4 {
    font-family: 'Poppins', sans-serif;
    color: hsl(191, 47%, 27%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.4rem;
  }

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

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

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

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

  .cookie-category strong {
    color: hsl(191, 47%, 27%);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 5px;
  }

  .cookie-category span {
    color: #666;
    font-size: 0.9rem;
  }

  .cookie-category.required {
    border-left-color: #28a745;
  }

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

  .cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
  }

  .cookie-buttons .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
  }

  .cookie-buttons .btn-accept {
    background: #28a745;
    color: #ffffff;
  }

  .cookie-buttons .btn-accept:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
  }

  .cookie-buttons .btn-reject {
    background: #6c757d;
    color: #ffffff;
  }

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

  .cookie-buttons .btn-manage {
    background: transparent;
    color: hsl(191, 47%, 42%);
    border: 2px solid hsl(191, 47%, 42%);
  }

  .cookie-buttons .btn-manage:hover {
    background: hsl(191, 47%, 42%);
    color: #ffffff;
    transform: translateY(-2px);
  }

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

    footer h5 {
      margin-top: 30px;
      font-size: 1rem;
    }

    footer h5:first-child {
      margin-top: 0;
    }

    .policy-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .policy-links a {
      margin: 0;
    }

    #cookieNotice {
      padding: 20px 0;
    }

    #cookieNotice h4 {
      font-size: 1.2rem;
    }

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

    .cookie-buttons .btn {
      width: 100%;
    }
  }

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

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Nunito, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(191, 47%, 42%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Poppins, sans-serif; color: hsl(191, 47%, 27%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(191, 47%, 42%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(191, 47%, 27%); font-family: Poppins, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(191, 47%, 27%); font-family: Poppins, sans-serif; }
.blog-article a { color: hsl(191, 47%, 42%); }
.blog-article a:hover { color: hsl(191, 47%, 67%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(191, 47%, 42%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

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

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

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

  .contact-info-item {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, hsl(191, 47%, 42%) 0%, hsl(191, 47%, 27%) 100%);
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

  .contact-info-item:hover {
    transform: translateY(-5px);
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #ffffff;
  }

  .contact-info-item h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .contact-info-item p,
  .contact-info-item a {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none;
  }

  .contact-info-item a:hover {
    text-decoration: underline;
  }

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

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

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

  .form-control:focus,
  .form-select:focus {
    border-color: hsl(191, 47%, 42%);
    box-shadow: 0 0 0 0.2rem rgba(52, 140, 163, 0.15);
    background: #ffffff;
    color: #333;
  }

  .form-control::placeholder {
    color: #999;
  }

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

  .btn-submit {
    background: linear-gradient(135deg, hsl(191, 47%, 42%) 0%, hsl(191, 47%, 27%) 100%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    margin-top: 10px;
  }

  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 140, 163, 0.3);
    background: linear-gradient(135deg, hsl(191, 47%, 27%) 0%, hsl(191, 47%, 42%) 100%);
    color: #ffffff;
  }

  .required-mark {
    color: hsl(191, 47%, 42%);
    font-weight: 700;
  }

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

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

    .contact-card {
      padding: 30px;
      margin-bottom: 30px;
    }

    .contact-info-item {
      margin-bottom: 20px;
    }
  }

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

    .contact-card {
      padding: 25px;
    }

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

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

  :root {
    --primary-color: hsl(191, 47%, 42%);
    --secondary-color: hsl(191, 47%, 27%);
    --accent-color: hsl(191, 47%, 67%);
  }

  .policy-content {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }

  .policy-content h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
  }

  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }

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

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

  .policy-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
    padding: 0;
  }

  .info-box {
    background-color: rgba(191, 47%, 67%, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }

  .contact-box {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .contact-box h2 {
    color: white;
    margin-top: 0;
  }

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

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
  }

  strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

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

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

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

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

  .faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #ffffff;
  }

  .faq-accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    background: #ffffff;
    padding: 1.5rem 1.75rem;
    border: none;
    box-shadow: none;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(191, 47%, 42%);
    color: #ffffff;
  }

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

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

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

  .faq-accordion .accordion-body {
    padding: 1.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    background: #ffffff;
  }

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

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

  .faq-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: hsl(191, 47%, 42%);
  }

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(191, 47%, 42%) 0%, hsl(191, 47%, 27%) 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: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.newsletter-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.newsletter-form {
  max-width: 550px;
  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: 'Nunito', 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: #ffffff;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit-btn {
  padding: 16px 40px;
  background: #ffffff;
  color: hsl(191, 47%, 27%);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', 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, 47%, 67%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.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: #ffffff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
}

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

.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: 12px;
  }

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

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

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

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

  .hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(191, 47%, 42%);
    margin-bottom: 25px;
    line-height: 1.4;
  }

  .hero-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-advantages {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 700px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: left;
  }

  .hero-advantages li {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: #333;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .hero-advantages li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
  }

  .hero-advantages li i {
    font-size: 1.5rem;
    color: hsl(191, 47%, 42%);
    flex-shrink: 0;
  }

  .hero-cta {
    margin: 45px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-hero-primary {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 40px;
    background: hsl(191, 47%, 42%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 131, 151, 0.3);
  }

  .btn-hero-primary:hover {
    background: hsl(191, 47%, 27%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(52, 131, 151, 0.4);
  }

  .btn-hero-secondary {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 40px;
    background: transparent;
    color: hsl(191, 47%, 42%);
    border: 2px solid hsl(191, 47%, 42%);
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }

  .btn-hero-secondary:hover {
    background: hsl(191, 47%, 42%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(52, 131, 151, 0.25);
  }

  .hero-image-wrapper {
    margin-top: 50px;
    padding: 0 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
  }

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

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

    .hero-title {
      font-size: 2.5rem;
    }

    .hero-subtitle {
      font-size: 1.4rem;
    }

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

    .hero-advantages {
      grid-template-columns: 1fr;
    }

    .hero-cta {
      flex-direction: column;
      align-items: center;
    }

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

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

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

    .hero-advantages li {
      font-size: 0.95rem;
      padding: 12px 15px;
    }
  }

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

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

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

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

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

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

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

  #blog .blog-meta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
  }

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

  #blog .blog-meta-item i {
    color: hsl(191, 47%, 42%);
    font-size: 0.95rem;
  }

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

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

  #blog .blog-title a:hover {
    color: hsl(191, 47%, 42%);
  }

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

  #blog .blog-link {
    color: hsl(191, 47%, 42%);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
  }

  #blog .blog-link:hover {
    gap: 0.75rem;
    color: hsl(191, 47%, 27%);
  }

  #blog .blog-link i {
    font-size: 0.875rem;
  }

  #blog .view-all-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 0.875rem 2.5rem;
    background: hsl(191, 47%, 42%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(191, 47%, 42%);
  }

  #blog .view-all-btn:hover {
    background: hsl(191, 47%, 27%);
    border-color: hsl(191, 47%, 27%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 116, 134, 0.25);
  }

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

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

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

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

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

    #blog .blog-content {
      padding: 1.5rem;
    }
  }

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

  #credentials .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    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: 'Poppins', 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;
    }
  }

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

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px 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, 47%, 42%);
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(191, 47%, 42%) 0%, hsl(191, 47%, 27%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(191, 47%, 67%);
}

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

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

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

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(191, 47%, 67%) 0%, hsl(191, 47%, 42%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-right: 15px;
  flex-shrink: 0;
}

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

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

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

.customer-location {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
}

.star-rating {
  margin-bottom: 15px;
}

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

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

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

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

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

.quote-icon {
  font-size: 2.5rem;
  color: hsl(191, 47%, 67%);
  opacity: 0.3;
  margin-bottom: 10px;
}

.testimonial-card.featured .quote-icon {
  color: #ffffff;
  opacity: 0.4;
}

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

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

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

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

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

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

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 131, 151, 0.15);
    border-color: hsl(191, 47%, 42%);
  }

  .service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(191, 47%, 42%) 0%, hsl(191, 47%, 27%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
  }

  .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(191, 47%, 27%) 0%, hsl(191, 47%, 42%) 100%);
  }

  .service-content {
    flex: 1;
  }

  .service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
  }

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

  .service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .service-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(191, 47%, 42%);
  }

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

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

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

    .service-card {
      flex-direction: column;
      text-align: center;
      padding: 25px;
    }

    .service-icon {
      margin: 0 auto;
    }

    .service-footer {
      flex-direction: column;
      text-align: center;
    }
  }

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

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

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

  .promo-content-wrapper {
    position: relative;
    z-index: 2;
  }

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

  .promo-offer-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
  }

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

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

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

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

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

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

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

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

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

  .promo-benefit-icon {
    width: 40px;
    height: 40px;
    background: hsl(191, 47%, 42%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
  }

  .promo-discount-badge {
    background: hsl(191, 47%, 27%);
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
  }

  .promo-discount-text {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
  }

  .promo-discount-label {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    opacity: 0.9;
  }

  .promo-cta-button {
    display: inline-block;
    background: hsl(191, 47%, 42%);
    color: #fff;
    font-family: 'Poppins', 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);
  }

  .promo-cta-button:hover {
    background: hsl(191, 47%, 27%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

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

    .promo-offer-section h2 {
      font-size: 36px;
    }

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

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

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

    .promo-discount-text {
      font-size: 42px;
    }

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

    .promo-cta-button {
      padding: 15px 40px;
      font-size: 16px;
    }
  }

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

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

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(191, 47%, 42%) 0%, hsl(191, 47%, 27%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

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

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

.disclaimer-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
  margin-bottom: 0;
}

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

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

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

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

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

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

@media (max-width: 576px) {
  .disclaimer-container {
    padding: 30px 20px;
  }

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

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

  :root {
    --primary-color: hsl(191, 47%, 42%);
    --secondary-color: hsl(191, 47%, 27%);
    --accent-color: hsl(191, 47%, 67%);
  }

  .policy-content {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }

  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
  }

  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }

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

  .policy-content li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }

  .policy-intro {
    background-color: hsl(191, 47%, 95%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 2rem;
  }

  .contact-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

  .contact-box h2 {
    color: white;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
  }

  .contact-box h2::before {
    background-color: var(--accent-color);
  }

  .contact-box a {
    color: var(--accent-color);
  }

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

  .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }

  .highlight-box {
    background-color: hsl(191, 47%, 97%);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

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

  :root {
    --primary-color: hsl(191, 47%, 42%);
    --secondary-color: hsl(191, 47%, 27%);
    --accent-color: hsl(191, 47%, 67%);
  }

  .policy-content {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
  }

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }

  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }

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

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

  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

  .info-box {
    background-color: hsl(191, 47%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .contact-section {
    background-color: var(--accent-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }

  .contact-section h3 {
    color: white;
  }

  .contact-section a {
    color: white;
    text-decoration: underline;
  }

  .contact-section a:hover {
    color: var(--secondary-color);
  }