:root {
            --primary-color: hsl(179, 44%, 43%);
            --secondary-color: hsl(179, 44%, 28%);
            --accent-color: hsl(179, 44%, 68%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .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: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Raleway', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--primary-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, 0.75%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 12px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

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

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

.about-section h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(179, 44%, 28%);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

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

.about-intro {
  background: linear-gradient(135deg, hsl(179, 44%, 43%) 0%, hsl(179, 44%, 28%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
}

.about-intro h2 {
  color: #ffffff;
  text-align: center;
  font-size: 3rem;
}

.about-intro p.lead {
  color: #f8f9fa;
  text-align: center;
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.values-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

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

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

.values-list li strong {
  color: hsl(179, 44%, 28%);
  font-weight: 600;
}

.highlight-box {
  background-color: hsl(179, 44%, 95%);
  border-left: 4px solid hsl(179, 44%, 43%);
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
}

.highlight-box p {
  margin-bottom: 0;
  color: #333;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-intro h2 {
    font-size: 2rem;
  }
  
  .about-intro p.lead {
    font-size: 1.1rem;
  }
  
  .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(179, 44%, 68%, 0.1);
    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: 'Inter', 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(179, 44%, 43%);
    border-radius: 2px;
  }

  .portfolio-header p {
    font-family: 'Raleway', 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: 'Raleway', sans-serif;
    padding: 12px 30px;
    background: #ffffff;
    border: 2px solid hsl(179, 44%, 43%);
    color: hsl(179, 44%, 28%);
    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(179, 44%, 43%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

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

  .portfolio-item {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px 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;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsl(179, 44%, 43%, 0.9), hsl(179, 44%, 28%, 0.9));
    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: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(179, 44%, 43%);
    font-size: 24px;
    transform: scale(0);
    transition: transform 0.4s ease 0.1s;
  }

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

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: hsl(179, 44%, 43%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

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

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

  .view-project-btn {
    font-family: 'Raleway', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(179, 44%, 43%);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
  }

  .view-project-btn:hover {
    gap: 12px;
    color: hsl(179, 44%, 28%);
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(179, 44%, 43%), hsl(179, 44%, 28%));
    color: #ffffff;
    border: none;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 30px;
  }

  .modal-project-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
  }

  .modal-category {
    font-family: 'Raleway', sans-serif;
    display: inline-block;
    padding: 8px 20px;
    background: hsl(179, 44%, 68%, 0.2);
    color: hsl(179, 44%, 28%);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

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

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

  .project-details-list li {
    font-family: 'Raleway', sans-serif;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    color: #444;
  }

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

  .detail-label {
    font-weight: 700;
    min-width: 140px;
    color: #222;
  }

  .detail-value {
    color: #666;
  }

  @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: 10px 20px;
      font-size: 0.9rem;
    }

    .modal-project-image {
      height: 250px;
    }

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

    .project-details-list li {
      flex-direction: column;
      gap: 5px;
    }

    .detail-label {
      min-width: auto;
    }
  }

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

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

    .portfolio-content {
      padding: 20px;
    }
  }

#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(179, 44%, 68%);
    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-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

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

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    border-color: hsl(179, 44%, 68%);
    box-shadow: 0 12px 35px rgba(72, 156, 148, 0.2);
  }

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

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

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

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

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

  #advantages .advantage-description {
    font-family: 'Raleway', sans-serif;
    font-size: 0.98rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
  }

  #advantages .row {
    margin-top: 20px;
  }

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

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

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

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

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

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

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

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

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

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

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(179, 44%, 98%) 0%, hsl(179, 44%, 95%) 100%);
    font-family: 'Raleway', sans-serif;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(179, 44%, 43%), hsl(179, 44%, 68%));
}

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

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

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

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

.stat-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(179, 44%, 43%), hsl(179, 44%, 68%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(51, 153, 153, 0.15);
    border-color: hsl(179, 44%, 68%);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(179, 44%, 43%), hsl(179, 44%, 28%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(179, 44%, 28%), hsl(179, 44%, 43%));
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(179, 44%, 28%);
    margin: 15px 0 8px;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.5;
}

.stat-context {
    font-size: 0.85rem;
    color: #777;
    margin-top: 8px;
    font-style: italic;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    animation: countUp 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; opacity: 0; }
.stat-card:nth-child(2) { animation-delay: 0.15s; opacity: 0; }
.stat-card:nth-child(3) { animation-delay: 0.2s; opacity: 0; }
.stat-card:nth-child(4) { animation-delay: 0.25s; opacity: 0; }
.stat-card:nth-child(5) { animation-delay: 0.3s; opacity: 0; }
.stat-card:nth-child(6) { animation-delay: 0.35s; opacity: 0; }
.stat-card:nth-child(7) { animation-delay: 0.4s; opacity: 0; }
.stat-card:nth-child(8) { animation-delay: 0.45s; opacity: 0; }
.stat-card:nth-child(9) { animation-delay: 0.5s; opacity: 0; }
.stat-card:nth-child(10) { animation-delay: 0.55s; opacity: 0; }
.stat-card:nth-child(11) { animation-delay: 0.6s; opacity: 0; }
.stat-card:nth-child(12) { animation-delay: 0.65s; opacity: 0; }
.stat-card:nth-child(13) { animation-delay: 0.7s; opacity: 0; }
.stat-card:nth-child(14) { animation-delay: 0.75s; opacity: 0; }

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-section .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

footer {
  background: linear-gradient(135deg, hsl(179, 44%, 28%) 0%, hsl(179, 44%, 20%) 100%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Raleway', sans-serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

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

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

footer a:hover {
  color: hsl(179, 44%, 68%);
  padding-left: 5px;
}

footer .company-description {
  max-width: 350px;
  margin-bottom: 25px;
  color: #d0d0d0;
}

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

footer .contact-info li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

footer .contact-info i {
  color: hsl(179, 44%, 68%);
  margin-right: 10px;
  margin-top: 3px;
  font-size: 1.1rem;
}

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

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

footer .footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px;
}

footer .copyright {
  text-align: center;
  color: #b0b0b0;
  font-size: 0.9rem;
  padding-top: 20px;
}

footer .policy-links {
  text-align: center;
  margin-bottom: 15px;
}

footer .policy-links a {
  margin: 0 15px;
  color: #c0c0c0;
  font-size: 0.9rem;
}

footer .policy-links a:hover {
  color: hsl(179, 44%, 68%);
  padding-left: 0;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 30px 0;
  z-index: 9999;
  border-top: 3px solid hsl(179, 44%, 43%);
  font-family: 'Raleway', sans-serif;
}

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

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

#cookieNotice .cookie-categories {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

#cookieNotice .cookie-categories li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
  font-size: 0.9rem;
}

#cookieNotice .cookie-categories li:last-child {
  border-bottom: none;
}

#cookieNotice .cookie-categories strong {
  color: #222;
  font-weight: 600;
}

#cookieNotice .cookie-categories .required {
  color: hsl(179, 44%, 43%);
  font-size: 0.85rem;
  font-weight: 600;
}

#cookieNotice .cookie-categories .optional {
  color: #888;
  font-size: 0.85rem;
}

#cookieNotice .btn-accept-all {
  background: #28a745;
  border: none;
  color: #ffffff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-right: 10px;
  font-size: 0.95rem;
}

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

#cookieNotice .btn-reject {
  background: #6c757d;
  border: none;
  color: #ffffff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-right: 10px;
  font-size: 0.95rem;
}

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

#cookieNotice .btn-manage {
  background: transparent;
  border: 2px solid hsl(179, 44%, 43%);
  color: hsl(179, 44%, 43%);
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
}

#cookieNotice .btn-manage:hover {
  background: hsl(179, 44%, 43%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(72, 156, 144, 0.3);
}

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

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

  #cookieNotice .cookie-title {
    font-size: 1.2rem;
  }

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

  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  footer {
    padding: 40px 0 20px;
  }

  footer .policy-links a {
    display: block;
    margin: 10px 0;
  }
}

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

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Raleway, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(179, 44%, 43%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Inter, sans-serif; color: hsl(179, 44%, 28%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(179, 44%, 43%); }
.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(179, 44%, 28%); font-family: Inter, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(179, 44%, 28%); font-family: Inter, sans-serif; }
.blog-article a { color: hsl(179, 44%, 43%); }
.blog-article a:hover { color: hsl(179, 44%, 68%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(179, 44%, 43%); 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: 'Raleway', sans-serif;
}

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

.contact-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

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

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

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

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: hsl(179, 44%, 43%);
    box-shadow: 0 0 0 0.2rem rgba(70, 165, 159, 0.15);
    outline: none;
}

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

.contact-form .btn-submit {
    background: hsl(179, 44%, 43%);
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.contact-form .btn-submit:hover {
    background: hsl(179, 44%, 28%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(70, 165, 159, 0.3);
}

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

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

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

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: hsl(179, 44%, 43%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.25rem;
}

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

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

.contact-info-content p {
    color: hsl(179, 44%, 68%);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-content a {
    color: hsl(179, 44%, 68%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #ffffff;
}

.deadline-alert {
    background: linear-gradient(135deg, hsl(179, 44%, 43%) 0%, hsl(179, 44%, 28%) 100%);
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(70, 165, 159, 0.25);
}

.deadline-alert h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.deadline-alert p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

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

@media (max-width: 576px) {
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }
    
    .deadline-alert {
        padding: 15px 20px;
    }
    
    .deadline-alert h4 {
        font-size: 1.1rem;
    }
}

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

  :root {
    --primary-color: hsl(179, 44%, 43%);
    --secondary-color: hsl(179, 44%, 28%);
    --accent-color: hsl(179, 44%, 68%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Inter', 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.35rem;
    font-weight: 600;
  }

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

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

  .policy-content p {
    margin-bottom: 1rem;
    font-weight: 400;
  }

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

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

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

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-left: 5px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: #fff;
  }

  .info-box p {
    margin-bottom: 0.5rem;
    color: #fff;
  }

  .cookie-type-card {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cookie-type-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
  }

  .contact-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

  .contact-section h2 {
    color: #fff;
  }

  .contact-section a {
    color: var(--accent-color);
    font-weight: 600;
  }

  .contact-section a:hover {
    color: #fff;
  }

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

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

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

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

.accordion-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

.accordion-button:not(.collapsed) {
  background: hsl(179, 44%, 43%);
  color: #ffffff;
  box-shadow: none;
}

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

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

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

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

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

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

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

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

.faq-highlight {
  background: hsl(179, 44%, 95%);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  color: hsl(179, 44%, 28%);
}

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(179, 44%, 43%) 0%, hsl(179, 44%, 28%) 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%;
    z-index: 1;
}

.newsletter-section::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-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
}

.newsletter-icon svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

.newsletter-heading {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.newsletter-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
}

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

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

.newsletter-submit {
    padding: 18px 45px;
    background: #ffffff;
    color: hsl(179, 44%, 28%);
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background: hsl(179, 44%, 68%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.newsletter-privacy {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: #f8f9fa;
    margin-top: 15px;
}

.newsletter-privacy a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.newsletter-privacy a:hover {
    opacity: 0.8;
}

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

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
}

.newsletter-feature svg {
    width: 20px;
    height: 20px;
    fill: hsl(179, 44%, 68%);
    flex-shrink: 0;
}

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

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

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

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

    .newsletter-submit {
        width: 100%;
        padding: 16px 35px;
    }

    .newsletter-features {
        gap: 25px;
    }

    .newsletter-feature {
        font-size: 0.9rem;
    }
}

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

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

    .newsletter-icon svg {
        width: 30px;
        height: 30px;
    }

    .newsletter-input {
        padding: 16px 20px;
    }

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

.hero-section {
  background-color: #ffffff;
  padding: 80px 0 60px;
  font-family: 'Raleway', sans-serif;
}

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

.hero-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(179, 44%, 28%);
  margin-bottom: 25px;
}

.hero-section p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-image-wrapper {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.advantages-list li {
  padding: 12px 0 12px 40px;
  position: relative;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
}

.advantages-list li::before {
  content: "\f26b";
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: hsl(179, 44%, 43%);
  font-size: 1.3rem;
  font-weight: bold;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background-color: hsl(179, 44%, 43%);
  border: 2px solid hsl(179, 44%, 43%);
  color: #ffffff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-primary-custom:hover {
  background-color: hsl(179, 44%, 28%);
  border-color: hsl(179, 44%, 28%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary-custom {
  background-color: transparent;
  border: 2px solid hsl(179, 44%, 43%);
  color: hsl(179, 44%, 28%);
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-secondary-custom:hover {
  background-color: hsl(179, 44%, 43%);
  border-color: hsl(179, 44%, 43%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.deadline-badge {
  display: inline-block;
  background-color: hsl(179, 44%, 68%);
  color: #222;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0 40px;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    text-align: center;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(179, 44%, 43%) 0%, hsl(179, 44%, 28%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(179, 44%, 68%);
  color: hsl(179, 44%, 28%);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

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

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

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

.deadline-date {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: hsl(179, 44%, 28%);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: hsl(179, 44%, 43%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calendar-icon svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

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

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: hsl(179, 44%, 68%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-icon i {
  font-size: 24px;
  color: hsl(179, 44%, 28%);
}

.benefit-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.benefit-text {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.offer-cta-wrapper {
  text-align: center;
}

.offer-cta-btn {
  display: inline-block;
  background: #ffffff;
  color: hsl(179, 44%, 28%);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-cta-btn:hover {
  background: hsl(179, 44%, 68%);
  color: hsl(179, 44%, 28%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.discount-highlight {
  display: inline-block;
  background: hsl(179, 44%, 68%);
  color: hsl(179, 44%, 28%);
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 12px;
  margin: 20px 0;
}

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

  .offer-heading {
    font-size: 36px;
  }

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

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

  .deadline-date {
    font-size: 40px;
    flex-direction: column;
    gap: 12px;
  }

  .calendar-icon {
    width: 50px;
    height: 50px;
  }

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

  .discount-highlight {
    font-size: 24px;
  }
}

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

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

  .services-section .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .services-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(179, 44%, 43%);
    border-radius: 2px;
  }

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

  .services-section .nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .services-section .nav-tabs .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 12px 28px;
    transition: all 0.3s ease;
    margin: 0;
  }

  .services-section .nav-tabs .nav-link:hover {
    color: hsl(179, 44%, 43%);
    border-color: hsl(179, 44%, 43%);
    transform: translateY(-2px);
  }

  .services-section .nav-tabs .nav-link.active {
    color: #ffffff;
    background: hsl(179, 44%, 43%);
    border-color: hsl(179, 44%, 43%);
  }

  .services-section .service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
  }

  .services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(179, 44%, 43%), hsl(179, 44%, 68%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .services-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .services-section .service-card:hover::before {
    transform: scaleX(1);
  }

  .services-section .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(179, 44%, 43%), hsl(179, 44%, 68%));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
  }

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

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

  .services-section .service-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
  }

  .services-section .service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .services-section .service-details {
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
  }

  .services-section .service-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(179, 44%, 43%);
    margin-bottom: 15px;
  }

  .services-section .service-price span {
    font-size: 1rem;
    color: #777;
    font-weight: 400;
  }

  .services-section .service-terms {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .services-section .service-terms i {
    color: hsl(179, 44%, 43%);
    font-size: 1rem;
  }

  .services-section .service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: hsl(179, 44%, 43%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid hsl(179, 44%, 43%);
  }

  .services-section .service-btn:hover {
    background: hsl(179, 44%, 28%);
    border-color: hsl(179, 44%, 28%);
    transform: translateX(5px);
    color: #ffffff;
  }

  .services-section .tab-content {
    margin-top: 40px;
  }

  .services-section .countdown-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  }

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

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

    .services-section .service-card {
      margin-bottom: 30px;
    }

    .services-section .nav-tabs {
      gap: 10px;
    }

    .services-section .nav-tabs .nav-link {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
  }

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

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

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

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

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(179, 44%, 43%) 0%, hsl(179, 44%, 28%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(179, 44%, 68%);
}

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

.testimonial-card.featured .stars i {
  color: hsl(179, 44%, 68%);
}

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

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

.featured .customer-avatar {
  background: #ffffff;
  color: hsl(179, 44%, 28%);
}

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

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

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

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

.stars i {
  color: hsl(179, 44%, 43%);
  font-size: 1.1rem;
}

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

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

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

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

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

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

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

.review-highlight {
  background: hsl(179, 44%, 95%);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 0.95rem;
  color: #333;
  border-left: 3px solid hsl(179, 44%, 43%);
}

.featured .review-highlight {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border-left: 3px solid hsl(179, 44%, 68%);
}

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

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

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

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

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

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

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

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

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

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

.blog-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta-item i {
  color: hsl(179, 44%, 43%);
  font-size: 0.95rem;
}

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

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

.blog-card-title a:hover {
  color: hsl(179, 44%, 43%);
}

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

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(179, 44%, 43%);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.blog-read-more:hover {
  color: hsl(179, 44%, 28%);
  gap: 12px;
}

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

.view-all-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 16px 40px;
  background: hsl(179, 44%, 43%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.view-all-btn:hover {
  background: hsl(179, 44%, 28%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

  .blog-preview-section .section-subtitle {
    font-size: 1rem;
  }

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

  .blog-card-content {
    padding: 25px;
  }

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

  .blog-meta {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.credentials-section {
  background: #ffffff;
  padding: 60px 0;
  font-family: 'Raleway', sans-serif;
}

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

.credential-card {
  background: #f8f9fa;
  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;
}

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

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

.credential-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

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

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  font-family: 'Raleway', 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);
  border-left: 5px solid hsl(179, 44%, 43%);
}

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(179, 44%, 43%) 0%, hsl(179, 44%, 28%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(62, 143, 138, 0.3);
}

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

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

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

.disclaimer-text strong {
  color: hsl(179, 44%, 28%);
  font-weight: 600;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-container {
    padding: 35px 25px;
    margin: 0 15px;
  }
  
  .disclaimer-title {
    font-size: 2rem;
  }
  
  .disclaimer-text {
    font-size: 1rem;
  }
  
  .disclaimer-icon {
    width: 60px;
    height: 60px;
  }
  
  .disclaimer-icon i {
    font-size: 30px;
  }
}

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');
  
  .policy-content {
    font-family: 'Raleway', sans-serif;
    color: #2c3e50;
    line-height: 1.8;
  }
  
  .policy-content h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: hsl(179, 44%, 28%);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid hsl(179, 44%, 43%);
  }
  
  .policy-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: hsl(179, 44%, 28%);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-left: 15px;
    border-left: 4px solid hsl(179, 44%, 43%);
  }
  
  .policy-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: hsl(179, 44%, 43%);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .policy-content p {
    margin-bottom: 1.2rem;
    font-weight: 400;
  }
  
  .policy-content a {
    color: hsl(179, 44%, 43%);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: hsl(179, 44%, 28%);
    text-decoration: underline;
  }
  
  .policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.8rem;
  }
  
  .policy-header-box {
    background: linear-gradient(135deg, hsl(179, 44%, 43%) 0%, hsl(179, 44%, 28%) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .policy-header-box h1 {
    color: white;
    border: none;
    margin: 0;
    padding: 0;
  }
  
  .last-updated {
    background-color: hsl(179, 44%, 68%);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    color: hsl(179, 44%, 28%);
  }
  
  .info-box {
    background-color: rgba(74, 175, 175, 0.1);
    border-left: 4px solid hsl(179, 44%, 43%);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }
  
  .contact-details {
    background-color: hsl(179, 44%, 28%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-details h2 {
    color: white;
    border-left: 4px solid hsl(179, 44%, 68%);
    margin-top: 0;
  }
  
  .contact-details a {
    color: hsl(179, 44%, 68%);
  }
  
  .contact-details a:hover {
    color: white;
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');
  
  :root {
    --primary-color: hsl(179, 44%, 43%);
    --secondary-color: hsl(179, 44%, 28%);
    --accent-color: hsl(179, 44%, 68%);
  }
  
  .policy-content {
    font-family: 'Raleway', sans-serif;
    color: #2c3e50;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Inter', 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;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    font-weight: 400;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .info-box p {
    margin-bottom: 0.5rem;
  }
  
  .section-card {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    transition: transform 0.3s ease;
  }
  
  .section-card:hover {
    transform: translateX(5px);
  }
  
  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
  }