:root {
            --primary-color: hsl(103, 69%, 38%);
            --secondary-color: hsl(103, 69%, 23%);
            --accent-color: hsl(103, 69%, 63%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lora', serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Lora', serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(103, 169, 38, 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='rgba%28103, 169, 38, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

#about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Lora', serif;
    color: #333;
  }

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

  #about .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: hsl(103, 69%, 23%);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
  }

  #about .section-header .divider {
    width: 80px;
    height: 4px;
    background: hsl(103, 69%, 38%);
    margin: 0 auto 25px;
  }

  #about .section-header p {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
  }

  #about .content-block {
    margin-bottom: 50px;
  }

  #about .content-block h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    color: hsl(103, 69%, 38%);
    margin-bottom: 25px;
    font-weight: 500;
  }

  #about .content-block p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
  }

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

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

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

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

  #about .value-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid hsl(103, 69%, 38%);
  }

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

  #about .value-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: hsl(103, 69%, 23%);
    margin-bottom: 15px;
    font-weight: 500;
  }

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

  #about .highlight-box {
    background: hsl(103, 69%, 38%);
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }

  #about .highlight-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
  }

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

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

    #about .section-header h2 {
      font-size: 2.2rem;
    }

    #about .content-block h3 {
      font-size: 1.6rem;
    }

    #about .content-block p {
      text-align: left;
    }

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

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

  .portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(103, 69%, 38%) 0%, hsl(103, 69%, 63%) 100%);
  }

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

  .portfolio-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

  .filter-btn {
    font-family: 'Oswald', sans-serif;
    padding: 12px 30px;
    border: 2px solid hsl(103, 69%, 38%);
    background: transparent;
    color: hsl(103, 69%, 38%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(103, 69%, 38%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 153, 51, 0.3);
  }

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

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

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

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

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
  }

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

  .portfolio-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
  }

  .portfolio-item:hover .portfolio-content {
    transform: translateY(0);
  }

  .portfolio-category {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: hsl(103, 69%, 63%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 500;
  }

  .portfolio-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .portfolio-description {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .view-details-btn {
    font-family: 'Oswald', sans-serif;
    display: inline-block;
    padding: 10px 25px;
    background: hsl(103, 69%, 38%);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  .view-details-btn:hover {
    background: hsl(103, 69%, 63%);
    color: #222;
    transform: scale(1.05);
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(103, 69%, 38%) 0%, hsl(103, 69%, 23%) 100%);
    color: #fff;
    border: none;
    padding: 25px 30px;
  }

  .modal-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

  .modal-body {
    padding: 30px;
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.8;
  }

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

  .modal-category {
    display: inline-block;
    padding: 8px 20px;
    background: hsl(103, 69%, 63%);
    color: #222;
    border-radius: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }

  .modal-description {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 25px;
  }

  .project-details h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: hsl(103, 69%, 38%);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
  }

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

  .project-details li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #555;
  }

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

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

    .portfolio-image {
      height: 250px;
    }

    .modal-title {
      font-size: 1.5rem;
    }
  }

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

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

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

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

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

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(103, 69%, 63%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
  }

  #advantages::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(103, 69%, 38%);
    opacity: 0.03;
    border-radius: 50%;
    z-index: 0;
  }

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

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

  #advantages .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

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

  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(103, 69%, 63%);
  }

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

  #advantages .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(103, 69%, 38%) 0%, hsl(103, 69%, 23%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(103, 69%, 63%) 0%, hsl(103, 69%, 38%) 100%);
  }

  #advantages .icon-wrapper i {
    font-size: 2.2rem;
    color: #ffffff;
  }

  #advantages .advantage-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 18px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  #advantages .advantage-card p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
    margin: 0;
  }

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

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

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

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

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

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

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

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

    #advantages .icon-wrapper i {
      font-size: 2rem;
    }

    #advantages .advantage-card h3 {
      font-size: 1.3rem;
    }
  }

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(103, 69%, 38%) 0%, hsl(103, 69%, 23%) 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"><path d="M50 10 L60 40 L90 40 L65 60 L75 90 L50 70 L25 90 L35 60 L10 40 L40 40 Z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    opacity: 0.5;
}

.statistics-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.statistics-section .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.statistics-section .section-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, hsl(103, 69%, 63%), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: #ffffff;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(103, 69%, 38%), hsl(103, 69%, 63%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

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

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

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(103, 69%, 23%);
    margin-bottom: 10px;
    line-height: 1.2;
}

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

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

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

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

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

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

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

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

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

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

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

footer {
    background: linear-gradient(135deg, hsl(103, 69%, 23%) 0%, hsl(103, 69%, 38%) 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Lora', serif;
    margin-top: 80px;
  }

  footer h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

  footer a:hover {
    color: hsl(103, 69%, 63%);
    padding-left: 5px;
  }

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

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

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

  .footer-contact-item i {
    margin-right: 10px;
    color: hsl(103, 69%, 63%);
    font-size: 1.1rem;
    margin-top: 3px;
  }

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

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

  .footer-policies {
    margin-top: 15px;
  }

  .footer-policies a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 15px;
    font-size: 0.9rem;
  }

  .footer-policies a:hover {
    color: hsl(103, 69%, 63%);
    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);
    z-index: 9999;
    padding: 30px 0;
    border-top: 4px solid hsl(103, 69%, 38%);
    animation: slideUp 0.5s ease-out;
  }

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

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

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

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

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

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

  .cookie-category-title {
    font-family: 'Oswald', sans-serif;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-category-desc {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    font-family: 'Lora', serif;
  }

  .cookie-required-badge {
    background: hsl(103, 69%, 38%);
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .cookie-optional-badge {
    background: #6c757d;
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  .cookie-btn {
    font-family: 'Oswald', sans-serif;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .cookie-btn-accept {
    background: hsl(103, 69%, 38%);
    color: #ffffff;
  }

  .cookie-btn-accept:hover {
    background: hsl(103, 69%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #ffffff;
  }

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

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

  .cookie-btn-manage {
    background: transparent;
    color: hsl(103, 69%, 38%);
    border: 2px solid hsl(103, 69%, 38%);
  }

  .cookie-btn-manage:hover {
    background: hsl(103, 69%, 38%);
    color: #ffffff;
    transform: translateY(-2px);
  }

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

    footer h5 {
      margin-top: 30px;
    }

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

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

    #cookieNotice {
      padding: 20px 0;
    }

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

    .cookie-btn {
      width: 100%;
      text-align: center;
    }
  }

.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: Lora, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(103, 69%, 38%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Oswald, sans-serif; color: hsl(103, 69%, 23%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(103, 69%, 38%); }
.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(103, 69%, 23%); font-family: Oswald, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(103, 69%, 23%); font-family: Oswald, sans-serif; }
.blog-article a { color: hsl(103, 69%, 38%); }
.blog-article a:hover { color: hsl(103, 69%, 63%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(103, 69%, 38%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

.contact-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(103, 69%, 23%);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid hsl(103, 69%, 38%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: hsl(103, 69%, 38%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.contact-info-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: hsl(103, 69%, 23%);
    margin-bottom: 8px;
    font-weight: 600;
}

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

.contact-info-content a {
    color: hsl(103, 69%, 38%);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: hsl(103, 69%, 23%);
    text-decoration: underline;
}

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

.contact-form-wrapper h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: hsl(103, 69%, 23%);
    margin-bottom: 30px;
    font-weight: 600;
}

.form-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control, .form-control:focus {
    font-family: 'Lora', serif;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: hsl(103, 69%, 38%);
    box-shadow: 0 0 0 0.2rem rgba(103, 169, 38, 0.15);
    outline: 0;
}

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

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

.btn-submit {
    font-family: 'Oswald', sans-serif;
    background: hsl(103, 69%, 38%);
    color: #ffffff;
    border: none;
    padding: 14px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.btn-submit:hover {
    background: hsl(103, 69%, 23%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 169, 38, 0.3);
}

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

.hours-list li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
}

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

.hours-day {
    font-weight: 600;
    color: #333;
}

.hours-time {
    color: #666;
}

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

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

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

  :root {
    --primary-color: hsl(103, 69%, 38%);
    --secondary-color: hsl(103, 69%, 23%);
    --accent-color: hsl(103, 69%, 63%);
  }

  body {
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.8;
  }

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

  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
  }

  .policy-content h2 {
    font-size: 2rem;
    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: 80%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }

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

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

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

  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--accent-color);
  }

  .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-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .policy-intro p {
    margin-bottom: 0;
    font-size: 1.1rem;
  }

  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }

  .contact-box strong {
    color: var(--secondary-color);
  }

  .cookie-table {
    margin: 2rem 0;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
  }

  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

  .faq-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: hsl(103, 69%, 23%);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
  }

  .faq-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

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

  .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }

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

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

  .accordion-button:not(.collapsed) {
    background-color: hsl(103, 69%, 38%);
    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;
    background-color: #ffffff;
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    border-top: 1px solid #e9ecef;
  }

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

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

  .accordion-body strong {
    color: hsl(103, 69%, 23%);
    font-weight: 600;
  }

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

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

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(103, 69%, 38%) 0%, hsl(103, 69%, 23%) 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-content {
  position: relative;
  z-index: 2;
}

.newsletter-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

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

.newsletter-input-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.newsletter-email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
}

.newsletter-email-input:focus {
  outline: none;
  border-color: hsl(103, 69%, 63%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

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

.newsletter-submit-btn {
  padding: 16px 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  background: hsl(103, 69%, 63%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

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

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

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

.newsletter-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

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

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

.newsletter-benefit-text {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: #f8f9fa;
}

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

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

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

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

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

  .newsletter-submit-btn {
    width: 100%;
    padding: 14px 30px;
  }

  .newsletter-benefits {
    gap: 25px;
    margin-top: 40px;
  }

  .newsletter-benefit-item {
    flex-basis: 100%;
    justify-content: center;
  }
}

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

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

  .newsletter-email-input {
    padding: 14px 18px;
  }
}

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

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(103, 69%, 63%);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
  }

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

  .hero-section h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .hero-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: hsl(103, 69%, 38%);
    margin-bottom: 1.8rem;
    line-height: 1.4;
  }

  .hero-description {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
  }

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

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

  .hero-advantages li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: hsl(103, 69%, 38%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-advantages li::after {
    content: '✓';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
  }

  .hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }

  .btn-hero-primary {
    font-family: 'Oswald', sans-serif;
    background: hsl(103, 69%, 38%);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .btn-hero-primary:hover {
    background: hsl(103, 69%, 23%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  .btn-hero-secondary {
    font-family: 'Oswald', sans-serif;
    background: transparent;
    color: hsl(103, 69%, 38%);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid hsl(103, 69%, 38%);
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .btn-hero-secondary:hover {
    background: hsl(103, 69%, 38%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  .hero-image-wrapper {
    margin-top: 3.5rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  }

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

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

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

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

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

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

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

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

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

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

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

    .hero-advantages li::before {
      width: 24px;
      height: 24px;
    }

    .hero-advantages li::after {
      left: 7px;
      font-size: 1rem;
    }
  }

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

  .services-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(103, 69%, 38%) 0%, hsl(103, 69%, 63%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: hsl(103, 69%, 38%);
  }

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

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

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(81, 145, 49, 0.3);
  }

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

  .service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .service-description {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: center;
  }

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

  .service-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(103, 69%, 38%);
  }

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

  .service-terms {
    background: #f8f9fa;
    border-left: 4px solid hsl(103, 69%, 38%);
    padding: 25px 30px;
    margin-top: 60px;
    border-radius: 8px;
  }

  .service-terms h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    text-transform: uppercase;
  }

  .service-terms ul {
    margin: 0;
    padding-left: 20px;
    color: #555;
    line-height: 1.9;
  }

  .service-terms li {
    margin-bottom: 8px;
  }

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

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

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

    .service-price {
      font-size: 1.5rem;
    }
  }

.credentials-section {
    padding: 60px 0;
    background: #ffffff;
  }

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

  .credential-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 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: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 500;
  }

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

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

    .credential-card {
      padding: 20px 10px;
    }

    .credential-icon {
      font-size: 2rem;
    }

    .credential-title {
      font-size: 1rem;
    }
  }

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

.testimonials-section h2 {
  font-family: 'Oswald', sans-serif;
  color: hsl(103, 69%, 23%);
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.testimonial-card.style-minimal {
  border-left: none;
  border-top: 3px solid hsl(103, 69%, 63%);
  background: #f8f9fa;
}

.testimonial-card.style-bordered {
  border: 2px solid hsl(103, 69%, 63%);
  border-left-width: 6px;
}

.testimonial-card.style-shadow {
  box-shadow: 0 6px 20px rgba(103, 169, 38, 0.15);
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(103, 69%, 38%), hsl(103, 69%, 63%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

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

.testimonial-location {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-top: 5px;
}

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

.star.empty {
  color: #ddd;
}

.testimonial-text {
  color: #333;
  line-height: 1.8;
  font-size: 1.05rem;
  flex: 1;
  margin-bottom: 15px;
}

.testimonial-text.short {
  font-size: 1.15rem;
  font-weight: 500;
  color: #222;
}

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

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

.testimonial-highlight {
  background: hsl(103, 69%, 95%);
  border-left: 3px solid hsl(103, 69%, 38%);
  padding: 15px 20px;
  margin-top: 15px;
  border-radius: 6px;
  font-style: italic;
  color: #444;
  font-size: 0.95rem;
}

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

  .testimonials-section h2 {
    font-size: 2.2rem;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .testimonial-name {
    font-size: 1.15rem;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(103, 69%, 38%) 0%, hsl(103, 69%, 23%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.offer-deadline-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  margin: 50px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.deadline-date {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: hsl(103, 69%, 63%);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: hsl(103, 69%, 38%);
}

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

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid hsl(103, 69%, 63%);
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.benefit-icon {
  color: hsl(103, 69%, 63%);
  font-size: 24px;
  margin-right: 15px;
  vertical-align: middle;
}

.benefit-text {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: #fff;
  display: inline;
  vertical-align: middle;
}

.offer-cta-btn {
  background: #fff;
  color: hsl(103, 69%, 38%);
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  display: inline-block;
}

.offer-cta-btn:hover {
  background: hsl(103, 69%, 63%);
  color: #222;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.discount-highlight {
  background: hsl(103, 69%, 63%);
  color: #222;
  padding: 5px 15px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
  margin: 0 5px;
}

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

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

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

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

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

  .offer-deadline-box {
    padding: 30px 20px;
  }

  .benefit-item {
    padding: 15px 20px;
  }

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

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

  .blog-preview-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(103, 169, 38, 0.15);
  }

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

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

  .blog-card-image-wrapper {
    overflow: hidden;
    position: relative;
  }

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

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

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

  .blog-card-meta i {
    color: hsl(103, 69%, 38%);
  }

  .blog-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  .blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(103, 69%, 38%);
    font-weight: 600;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  .blog-card-link:hover {
    color: hsl(103, 69%, 23%);
    gap: 0.8rem;
  }

  .blog-card-link i {
    transition: transform 0.3s ease;
  }

  .blog-card-link:hover i {
    transform: translateX(4px);
  }

  .view-all-btn {
    display: inline-block;
    padding: 14px 40px;
    background: hsl(103, 69%, 38%);
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid hsl(103, 69%, 38%);
    margin-top: 3rem;
  }

  .view-all-btn:hover {
    background: hsl(103, 69%, 23%);
    border-color: hsl(103, 69%, 23%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 169, 38, 0.3);
  }

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

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

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

    .blog-card-body {
      padding: 1.5rem;
    }

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

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

  .disclaimer-section .section-icon {
    font-size: 3rem;
    color: hsl(103, 69%, 38%);
    margin-bottom: 1.5rem;
  }

  .disclaimer-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lora:wght@400;500;600&display=swap');
  
  :root {
    --primary-color: hsl(103, 69%, 38%);
    --secondary-color: hsl(103, 69%, 23%);
    --accent-color: hsl(103, 69%, 63%);
  }
  
  .policy-content {
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
  }
  
  .policy-header h1 {
    color: white;
    border-bottom: none;
    margin-bottom: 0.5rem;
  }
  
  .last-updated {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }
  
  .contact-box strong {
    color: var(--secondary-color);
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 2.5rem 0;
  }

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

  :root {
    --primary-color: hsl(103, 69%, 38%);
    --secondary-color: hsl(103, 69%, 23%);
    --accent-color: hsl(103, 69%, 63%);
  }

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

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

  .policy-content h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

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

  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }

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

  .policy-content a:hover {
    color: var(--accent-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;
  }

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

  .intro-box p {
    margin-bottom: 0;
    color: white;
    text-align: left;
  }

  .contact-info {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }

  .section-divider {
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 2rem 0;
    border: none;
  }

  .highlight-box {
    background-color: #f0f8f0;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

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