:root {
            --primary-color: hsl(167, 56%, 45%);
            --secondary-color: hsl(167, 56%, 30%);
            --accent-color: hsl(167, 56%, 70%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .navbar {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .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 {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
            background: rgba(59, 178, 153, 0.08);
        }
        
        .nav-link.active {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(59, 178, 153, 0.25);
        }
        
        .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='rgb%2859, 178, 153%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                margin-top: 1rem;
                padding: 1rem;
                background: #f8f9fa;
                border-radius: 8px;
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                margin: 0.25rem 0;
            }
        }

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

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

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

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

.about-content {
  color: #444;
  line-height: 1.9;
  font-size: 1.05rem;
}

.about-content p {
  margin-bottom: 20px;
}

.about-image {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

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

.values-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.values-list li {
  padding: 15px 0 15px 45px;
  position: relative;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  border-bottom: 1px solid #e9ecef;
}

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

.values-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 15px;
  width: 32px;
  height: 32px;
  background: hsl(167, 56%, 45%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.stats-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-top: 40px;
  border-left: 4px solid hsl(167, 56%, 45%);
}

.stats-box p {
  margin: 0;
  color: #555;
  font-size: 1.05rem;
}

.highlight-text {
  color: hsl(167, 56%, 30%);
  font-weight: 600;
}

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

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

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

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

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

  .portfolio-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    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(167, 56%, 45%);
    border-radius: 2px;
  }

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

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

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

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(167, 56%, 45%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 178, 152, 0.3);
  }

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

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

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

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

  .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(180deg, transparent 0%, rgba(59, 178, 152, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
  }

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

  .overlay-icon {
    color: #fff;
    font-size: 1.8rem;
    margin-left: auto;
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: hsl(167, 56%, 45%);
    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: 15px;
  }

  .view-details {
    font-family: 'Nunito', sans-serif;
    color: hsl(167, 56%, 45%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }

  .view-details:hover {
    gap: 12px;
    color: hsl(167, 56%, 30%);
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(167, 56%, 45%) 0%, hsl(167, 56%, 30%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
    border: none;
  }

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

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

  .modal-body {
    padding: 35px;
  }

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

  .modal-category {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: hsl(167, 56%, 45%);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .modal-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
  }

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

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

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

  .project-details li {
    font-family: 'Nunito', sans-serif;
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
  }

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

  .project-details li strong {
    color: #333;
    font-weight: 600;
  }

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

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

    .portfolio-image {
      height: 220px;
    }

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

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

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

    .modal-header {
      padding: 20px;
    }

    .modal-header .modal-title {
      font-size: 1.3rem;
    }
  }

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

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

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

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

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

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

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

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

  .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(42, 157, 143, 0.2);
    border-color: hsl(167, 56%, 45%);
  }

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

  .advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(167, 56%, 30%) 0%, hsl(167, 56%, 45%) 100%);
  }

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

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

  .advantage-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
  }

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

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

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

    .advantage-card {
      padding: 30px 25px;
    }

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

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

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

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

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

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(167, 56%, 45%) 0%, hsl(167, 56%, 30%) 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"><rect width="2" height="2" fill="white" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

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

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

.statistics-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

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

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

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(167, 56%, 45%), hsl(167, 56%, 70%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(167, 56%, 30%);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-context {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

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

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

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

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

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

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

    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

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

footer {
    background: linear-gradient(135deg, hsl(167, 56%, 30%) 0%, hsl(167, 56%, 25%) 100%);
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: 80px;
    font-family: 'Nunito', sans-serif;
  }

  footer h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: hsl(167, 56%, 70%);
    position: relative;
    padding-bottom: 12px;
  }

  footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: hsl(167, 56%, 45%);
    border-radius: 2px;
  }

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

  footer a {
    color: #f0f0f0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.95rem;
  }

  footer a:hover {
    color: hsl(167, 56%, 70%);
    transform: translateX(5px);
  }

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

  .footer-contact-item i {
    color: hsl(167, 56%, 45%);
    margin-right: 12px;
    font-size: 1.1rem;
    margin-top: 3px;
  }

  .footer-contact-item a {
    margin-bottom: 0;
  }

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

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

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

  .footer-links-list li {
    margin-bottom: 12px;
  }

  #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(167, 56%, 45%);
    animation: slideUp 0.4s ease-out;
  }

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

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

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

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

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

  .cookie-category-icon {
    color: hsl(167, 56%, 45%);
    margin-right: 12px;
    font-size: 1.2rem;
    margin-top: 2px;
  }

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

  .cookie-category-content p {
    color: #666;
    margin: 0;
    font-size: 0.88rem;
  }

  .cookie-required {
    display: inline-block;
    background: hsl(167, 56%, 45%);
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
  }

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

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

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

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

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

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

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

  .btn-manage:hover {
    background: hsl(167, 56%, 45%);
    color: #ffffff;
    transform: translateY(-2px);
  }

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

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

    #cookieNotice {
      padding: 20px 0;
    }

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

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

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

    .cookie-categories {
      padding: 15px;
    }
  }

.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(167, 56%, 45%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Poppins, sans-serif; color: hsl(167, 56%, 30%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(167, 56%, 45%); }
.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(167, 56%, 30%); font-family: Poppins, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(167, 56%, 30%); font-family: Poppins, sans-serif; }
.blog-article a { color: hsl(167, 56%, 45%); }
.blog-article a:hover { color: hsl(167, 56%, 70%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(167, 56%, 45%); 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-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
}

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

.contact-info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 2px solid hsl(167, 56%, 70%);
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(167, 56%, 45%) 0%, hsl(167, 56%, 30%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

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

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

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

.contact-info-content a {
    color: hsl(167, 56%, 35%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: hsl(167, 56%, 45%);
}

.contact-form-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: hsl(167, 56%, 45%);
    box-shadow: 0 0 0 0.2rem rgba(59, 178, 146, 0.15);
}

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

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

.btn-submit {
    background: linear-gradient(135deg, hsl(167, 56%, 45%) 0%, hsl(167, 56%, 30%) 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 178, 146, 0.3);
    background: linear-gradient(135deg, hsl(167, 56%, 50%) 0%, hsl(167, 56%, 35%) 100%);
}

.required-mark {
    color: #dc3545;
    margin-left: 3px;
}

.map-container {
    margin-top: 4rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

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

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

    .contact-info-card {
        margin-bottom: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

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

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .btn-submit {
        padding: 0.875rem 2rem;
    }
}

@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(167, 56%, 45%);
    --secondary-color: hsl(167, 56%, 30%);
    --accent-color: hsl(167, 56%, 70%);
  }
  
  .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);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
  }
  
  .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: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: 10px;
    color: white;
    margin-bottom: 2rem;
  }
  
  .policy-intro p {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .info-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-box a:hover {
    color: var(--accent-color);
  }
  
  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-top: 1rem;
  }
  
  .cookie-type-card {
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .cookie-type-card h3 {
    margin-top: 0;
    color: var(--primary-color);
  }

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

  .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 .section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(167, 56%, 45%);
    color: #ffffff;
    box-shadow: none;
  }

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

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

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

  .faq-accordion .accordion-body {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    padding: 1.5rem;
    background-color: #fafafa;
  }

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

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

  .faq-question-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: hsl(167, 56%, 70%);
    color: #222;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 0.75rem;
  }

  .faq-accordion .accordion-button:not(.collapsed) .faq-question-number {
    background-color: #ffffff;
    color: hsl(167, 56%, 45%);
  }

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

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

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

    .faq-question-number {
      width: 24px;
      height: 24px;
      line-height: 24px;
      font-size: 0.75rem;
      margin-right: 0.5rem;
    }

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

#newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(167, 56%, 45%) 0%, hsl(167, 56%, 30%) 100%);
    position: relative;
    overflow: hidden;
  }

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

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

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

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

  #newsletter h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
  }

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

  #newsletter .newsletter-form {
    background: #ffffff;
    padding: 12px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 10px;
    max-width: 550px;
    margin: 0 auto;
  }

  #newsletter .form-control {
    font-family: 'Nunito', sans-serif;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    color: #333;
    background: transparent;
    flex: 1;
  }

  #newsletter .form-control:focus {
    outline: none;
    box-shadow: none;
  }

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

  #newsletter .btn-subscribe {
    font-family: 'Poppins', sans-serif;
    background: hsl(167, 56%, 45%);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  #newsletter .btn-subscribe:hover {
    background: hsl(167, 56%, 30%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

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

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

  #newsletter .benefit-item::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
  }

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

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

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

    #newsletter .newsletter-form {
      flex-direction: column;
      border-radius: 15px;
      padding: 20px;
      gap: 15px;
    }

    #newsletter .form-control {
      padding: 15px 20px;
      text-align: center;
    }

    #newsletter .btn-subscribe {
      width: 100%;
      padding: 15px 30px;
    }

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

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

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

    #newsletter::before,
    #newsletter::after {
      display: none;
    }
  }

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

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

  .hero-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(167, 56%, 30%);
    margin-bottom: 1.5rem;
  }

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

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

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

  .hero-advantages li i {
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: hsl(167, 56%, 45%);
    font-size: 1.3rem;
  }

  .hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }

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

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

  .btn-hero-primary {
    font-family: 'Poppins', sans-serif;
    background-color: hsl(167, 56%, 45%);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(167, 56%, 45%);
  }

  .btn-hero-primary:hover {
    background-color: hsl(167, 56%, 30%);
    border-color: hsl(167, 56%, 30%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 156, 130, 0.3);
    color: #fff;
  }

  .btn-hero-secondary {
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    color: hsl(167, 56%, 30%);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(167, 56%, 45%);
  }

  .btn-hero-secondary:hover {
    background-color: hsl(167, 56%, 45%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 156, 130, 0.2);
  }

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

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

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

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

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

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

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

    .btn-hero-primary,
    .btn-hero-secondary {
      width: 100%;
      justify-content: center;
      padding: 0.9rem 2rem;
      font-size: 1rem;
    }
  }

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

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

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

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

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

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-color: hsl(167, 56%, 70%);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(167, 56%, 45%) 0%, hsl(167, 56%, 30%) 100%);
  color: #ffffff;
  grid-column: span 1;
}

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

.testimonial-card.featured .stars i {
  color: #ffd700;
}

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

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

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.stars i {
  color: #ffd700;
}

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

.testimonial-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
  flex-grow: 1;
}

.testimonial-text.short {
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-text.medium {
  font-size: 1rem;
}

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

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

.testimonial-card.featured .customer-info {
  border-top-color: rgba(255,255,255,0.2);
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: hsl(167, 56%, 45%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(167, 56%, 45%);
}

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

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

.customer-location {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.customer-location i {
  font-size: 0.85rem;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  color: hsl(167, 56%, 70%);
  opacity: 0.2;
}

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

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: hsl(167, 56%, 45%);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  margin-top: 10px;
}

.testimonial-card.featured .verified-badge {
  background: #ffffff;
  color: hsl(167, 56%, 45%);
}

.rating-summary {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.overall-rating {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(167, 56%, 45%);
  margin-bottom: 10px;
}

.rating-stars {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.rating-count {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: #666;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card.featured {
    grid-column: span 1;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .rating-summary {
    padding: 30px 20px;
  }
  
  .overall-rating {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .customer-avatar {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

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

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

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(47, 168, 139, 0.15);
    border-color: hsl(167, 56%, 45%);
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(167, 56%, 30%) 0%, hsl(167, 56%, 45%) 100%);
}

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

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

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

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

.service-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(167, 56%, 30%);
}

.price-label {
    font-size: 0.85rem;
    color: #777;
    font-weight: 400;
    display: block;
}

.service-terms {
    font-size: 0.9rem;
    color: #666;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.cta-block {
    background: linear-gradient(135deg, hsl(167, 56%, 30%) 0%, hsl(167, 56%, 45%) 100%);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-block h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-block p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-button {
    background: #ffffff;
    color: hsl(167, 56%, 30%);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.cta-button:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-section .section-title {
        font-size: 2rem;
    }
    
    .service-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .cta-block {
        padding: 1.5rem;
    }
}

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

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

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

  .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-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

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

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

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

  .blog-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6c757d;
  }

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

  .blog-meta-item i {
    color: hsl(167, 56%, 45%);
    font-size: 0.9rem;
  }

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

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

  .blog-card h3 a:hover {
    color: hsl(167, 56%, 45%);
  }

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

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

  .blog-read-more:hover {
    gap: 0.75rem;
    color: hsl(167, 56%, 30%);
  }

  .blog-read-more i {
    font-size: 0.875rem;
  }

  .view-all-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 14px 40px;
    background: hsl(167, 56%, 45%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid hsl(167, 56%, 45%);
  }

  .view-all-btn:hover {
    background: hsl(167, 56%, 30%);
    border-color: hsl(167, 56%, 30%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 178, 147, 0.3);
  }

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

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

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

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

    .blog-meta {
      flex-wrap: wrap;
      gap: 0.875rem;
    }
  }

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

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

  .promo-offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(167, 56%, 45%, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .promo-offer-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(167, 56%, 70%, 0.15) 0%, transparent 70%);
    border-radius: 50%;
  }

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

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

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

  .offer-heading .highlight {
    background: linear-gradient(135deg, hsl(167, 56%, 45%) 0%, hsl(167, 56%, 30%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .offer-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
  }

  .offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, hsl(167, 56%, 45%) 0%, hsl(167, 56%, 70%) 100%);
  }

  .offer-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
  }

  .deadline-section {
    background: linear-gradient(135deg, hsl(167, 56%, 45%) 0%, hsl(167, 56%, 30%) 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 35px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .deadline-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
  }

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

  .deadline-date i {
    font-size: 2.2rem;
  }

  .offer-benefits {
    margin: 40px 0;
  }

  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .benefit-item:hover {
    background: hsl(167, 56%, 95%);
    transform: translateX(5px);
  }

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

  .benefit-text {
    flex: 1;
  }

  .benefit-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
  }

  .benefit-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
  }

  .discount-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
    transform: rotate(-15deg);
  }

  .discount-percentage {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
  }

  .discount-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
  }

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

  .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, hsl(167, 56%, 45%) 0%, hsl(167, 56%, 30%) 100%);
    color: #fff;
    padding: 18px 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    color: #fff;
  }

  .cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
  }

  .cta-button:hover i {
    transform: translateX(5px);
  }

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

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

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

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

    .discount-badge {
      width: 80px;
      height: 80px;
      top: 20px;
      right: 20px;
    }

    .discount-percentage {
      font-size: 1.5rem;
    }

    .benefit-item {
      padding: 15px;
    }

    .cta-button {
      padding: 15px 35px;
      font-size: 1rem;
    }
  }

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

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

  #credentials .trust-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  #credentials .trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: hsl(167, 56%, 45%);
  }

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

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

  #credentials .trust-subtitle {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
  }

  @media (max-width: 991px) {
    #credentials .section-title {
      font-size: 2rem;
      margin-bottom: 40px;
    }

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

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

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

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

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

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

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

  .disclaimer-section .icon-wrapper {
    text-align: center;
    margin-bottom: 2rem;
  }

  .disclaimer-section .info-icon {
    font-size: 3.5rem;
    color: hsl(167, 56%, 45%);
    opacity: 0.9;
  }

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

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

  .disclaimer-section .highlight-box {
    background: hsl(167, 56%, 95%);
    border-left: 4px solid hsl(167, 56%, 45%);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 6px;
  }

  .disclaimer-section .highlight-text {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
    font-style: italic;
  }

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

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

    .disclaimer-section .disclaimer-content {
      padding: 2rem 1.5rem;
    }

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

    .disclaimer-section .info-icon {
      font-size: 3rem;
    }
  }

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

    .disclaimer-section .disclaimer-content {
      padding: 1.5rem 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(167, 56%, 45%);
    --secondary-color: hsl(167, 56%, 30%);
    --accent-color: hsl(167, 56%, 70%);
  }
  
  .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);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
  }
  
  .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: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .policy-content p {
    margin-bottom: 1rem;
  }
  
  .info-box {
    background-color: rgba(59, 178, 151, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
  }
  
  .contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact-card h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-card a {
    color: white;
    text-decoration: underline;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 2rem 0;
    border: none;
  }
  
  .highlight {
    background-color: var(--accent-color);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
  }

@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(167, 56%, 45%);
    --secondary-color: hsl(167, 56%, 30%);
    --accent-color: hsl(167, 56%, 70%);
  }
  
  .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: 4px 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: 20px;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }
  
  .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 a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-box h3 {
    color: white;
    margin-bottom: 1rem;
  }
  
  .contact-box p {
    margin-bottom: 0.5rem;
    color: white;
  }
  
  .contact-box a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-box a:hover {
    color: var(--secondary-color);
  }
  
  .highlight-box {
    background-color: rgba(167, 56%, 45%, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }