:root {
            --primary-color: hsl(74, 47%, 42%);
            --secondary-color: hsl(74, 47%, 27%);
            --accent-color: hsl(74, 47%, 67%);
        }
        
        body {
            font-family: 'Lora', serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
        }
        
        .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(--secondary-color);
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .nav-link {
            font-family: 'Lora', serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .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(126, 155, 75, 0.25);
        }

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

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

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

  #about .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(74, 47%, 27%);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #about .section-header .underline {
    width: 80px;
    height: 4px;
    background: hsl(74, 47%, 42%);
    margin: 0 auto 25px;
  }

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

  #about .content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
  }

  #about .content-wrapper.reverse {
    flex-direction: row-reverse;
  }

  #about .text-content {
    flex: 1;
  }

  #about .text-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(74, 47%, 27%);
    margin-bottom: 25px;
  }

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

  #about .text-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
  }

  #about .text-content ul li {
    font-size: 1.05rem;
    color: #333;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
  }

  #about .text-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(74, 47%, 42%);
    font-weight: bold;
    font-size: 1.3rem;
  }

  #about .image-content {
    flex: 1;
  }

  #about .image-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }

  #about .image-content img:hover {
    transform: scale(1.02);
  }

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

  #about .value-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(74, 47%, 42%);
  }

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

  #about .value-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(74, 47%, 27%);
    margin-bottom: 15px;
  }

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

  #about .stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    padding: 40px 0;
    background: hsl(74, 47%, 42%);
    border-radius: 10px;
  }

  #about .stat-item {
    text-align: center;
    color: #ffffff;
  }

  #about .stat-item .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
  }

  #about .stat-item .stat-label {
    font-size: 1.1rem;
    font-weight: 500;
  }

  @media (max-width: 992px) {
    #about .content-wrapper {
      flex-direction: column;
      gap: 40px;
    }

    #about .content-wrapper.reverse {
      flex-direction: column;
    }

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

    #about .text-content h3 {
      font-size: 1.7rem;
    }
  }

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

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

    #about .text-content h3 {
      font-size: 1.5rem;
    }

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

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

.portfolio-section {
    padding: 80px 0;
    background-color: #ffffff;
  }

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

  .portfolio-section .section-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .filter-btn {
    font-family: 'Oswald', sans-serif;
    padding: 10px 25px;
    border: 2px solid hsl(74, 47%, 42%);
    background-color: transparent;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background-color: hsl(74, 47%, 42%);
    color: #fff;
  }

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

  .portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
  }

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

  .portfolio-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
  }

  .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.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
  }

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

  .portfolio-overlay-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
  }

  .portfolio-overlay-content .category {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: hsl(74, 47%, 67%);
    margin-bottom: 10px;
  }

  .portfolio-content {
    padding: 20px;
  }

  .portfolio-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .portfolio-content .category-tag {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    color: hsl(74, 47%, 27%);
    background-color: hsl(74, 47%, 90%);
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  .view-details-btn {
    font-family: 'Oswald', sans-serif;
    background-color: hsl(74, 47%, 42%);
    color: #fff;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    width: 100%;
  }

  .view-details-btn:hover {
    background-color: hsl(74, 47%, 27%);
  }

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

  .modal-header {
    background-color: hsl(74, 47%, 42%);
    color: #fff;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 20px 30px;
  }

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

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

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

  .modal-body .modal-category {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: hsl(74, 47%, 27%);
    background-color: hsl(74, 47%, 90%);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

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

  .modal-body h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #222;
    margin-top: 25px;
    margin-bottom: 15px;
    text-transform: uppercase;
  }

  .modal-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
  }

  .modal-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .modal-body ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

    .filter-btn {
      padding: 8px 18px;
      font-size: 0.85rem;
    }
  }

@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: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, hsla(74, 47%, 67%, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, hsla(74, 47%, 42%, 0.06) 0%, transparent 50%);
    pointer-events: none;
  }

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

  #advantages .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    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.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    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(74, 47%, 42%), hsl(74, 47%, 67%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    border-color: hsl(74, 47%, 67%);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  }

  #advantages .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(74, 47%, 42%), hsl(74, 47%, 27%));
    border-radius: 20px;
    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(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }

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

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

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

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

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

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

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

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

    #advantages .section-header {
      margin-bottom: 40px;
    }

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

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

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

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

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

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

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

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

  .statistics-header p {
    font-family: 'Lora', serif;
    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;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(74, 47%, 42%) 0%, hsl(74, 47%, 67%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

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

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: hsl(74, 47%, 67%);
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(74, 47%, 42%) 0%, hsl(74, 47%, 27%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s ease;
  }

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

  .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(74, 47%, 27%);
    margin-bottom: 10px;
    line-height: 1;
    display: block;
  }

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

  .stat-context {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: #888;
    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-out forwards;
  }

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

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

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

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

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

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

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

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

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

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

footer {
  background: hsl(74, 47%, 27%);
  color: #f8f9fa;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  font-family: 'Lora', serif;
}

footer h5 {
  font-family: 'Oswald', sans-serif;
  color: hsl(74, 47%, 67%);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

footer a:hover {
  color: hsl(74, 47%, 67%);
}

footer .company-description {
  max-width: 350px;
  margin-bottom: 1.5rem;
}

footer .contact-info i {
  color: hsl(74, 47%, 67%);
  width: 20px;
  margin-right: 8px;
}

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

footer ul li {
  margin-bottom: 0.6rem;
}

footer .bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  padding: 1.5rem 0;
  border-top: 3px solid hsl(74, 47%, 42%);
}

#cookieNotice .container {
  max-width: 1200px;
}

#cookieNotice h4 {
  font-family: 'Oswald', sans-serif;
  color: #222;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

#cookieNotice p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

#cookieNotice .cookie-categories {
  margin: 1rem 0 1.2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
}

#cookieNotice .cookie-category {
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  color: #333;
}

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

#cookieNotice .cookie-category.required {
  color: #666;
}

#cookieNotice .btn-accept-all {
  background: hsl(74, 47%, 42%);
  color: #fff;
  border: none;
  padding: 0.7rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#cookieNotice .btn-accept-all:hover {
  background: hsl(74, 47%, 37%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#cookieNotice .btn-reject {
  background: #6c757d;
  color: #fff;
  border: none;
  padding: 0.7rem 1.8rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#cookieNotice .btn-reject:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

#cookieNotice .btn-manage {
  background: transparent;
  color: hsl(74, 47%, 42%);
  border: 2px solid hsl(74, 47%, 42%);
  padding: 0.65rem 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#cookieNotice .btn-manage:hover {
  background: hsl(74, 47%, 42%);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #cookieNotice {
    padding: 1.2rem 0;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

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

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

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

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

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

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

.contact-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-form-wrapper {
  flex: 1;
  background: #ffffff;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(74, 47%, 42%);
}

.contact-form-wrapper h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
  text-transform: uppercase;
}

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

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

.contact-form .form-control:focus {
  border-color: hsl(74, 47%, 42%);
  box-shadow: 0 0 0 0.2rem rgba(139, 159, 75, 0.15);
  background: #ffffff;
  outline: none;
}

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

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

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

.submit-btn:hover {
  background: hsl(74, 47%, 27%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 159, 75, 0.3);
}

.contact-info-wrapper {
  flex: 0 0 380px;
}

.contact-info-card {
  background: hsl(74, 47%, 42%);
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  margin-bottom: 30px;
}

.contact-info-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
}

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

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

.info-icon {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  flex-shrink: 0;
}

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

.info-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-content p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

.info-content a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.info-content a:hover {
  color: hsl(74, 47%, 27%);
  text-decoration: underline;
}

.working-hours-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-top: 4px solid hsl(74, 47%, 42%);
}

.working-hours-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  color: #333;
  font-size: 0.95rem;
}

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

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

.time {
  color: #555;
  font-weight: 500;
}

.closed {
  color: #999;
  font-style: italic;
}

@media (max-width: 991px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-info-wrapper {
    flex: 1;
    width: 100%;
  }

  .contact-form-wrapper {
    padding: 35px 25px;
  }

  .contact-header h2 {
    font-size: 2.3rem;
  }
}

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

  .contact-header {
    margin-bottom: 40px;
  }

  .contact-header h2 {
    font-size: 1.9rem;
  }

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

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }

  .contact-info-card {
    padding: 30px 25px;
  }

  .working-hours-card {
    padding: 25px 20px;
  }

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

@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(74, 47%, 42%);
    --secondary-color: hsl(74, 47%, 27%);
    --accent-color: hsl(74, 47%, 67%);
  }

  .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;
    font-weight: 600;
    color: var(--secondary-color);
    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;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    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: 1rem;
    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(--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-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

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

  .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: 1.5rem 0;
    overflow-x: auto;
  }

  .cookie-table table {
    width: 100%;
    border-collapse: collapse;
  }

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

  .cookie-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #dee2e6;
  }

  .cookie-table tr:hover {
    background-color: rgba(74, 47%, 42%, 0.05);
  }

  .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: 1.5rem;
  }

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

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

.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-accordion {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-accordion .accordion-item:hover {
    border-color: hsl(74, 47%, 42%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

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

.faq-accordion .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
    padding: 1.8rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    background: #ffffff;
}

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

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

.faq-accordion .accordion-body strong {
    color: hsl(74, 47%, 27%);
    font-weight: 600;
}

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

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

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

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

    .faq-accordion .accordion-button {
        font-size: 1.1rem;
        padding: 1.2rem 1.3rem;
    }

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

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

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

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

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

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

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

.newsletter-icon {
    width: 80px;
    height: 80px;
    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: 40px;
    height: 40px;
    fill: #ffffff;
}

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

.newsletter-description {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #ffffff;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0.95;
}

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

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

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

.newsletter-email-input::placeholder {
    color: #666666;
    opacity: 0.7;
}

.newsletter-submit-btn {
    padding: 18px 45px;
    background: #ffffff;
    color: hsl(74, 47%, 27%);
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

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

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

    .newsletter-submit-btn {
        width: 100%;
    }

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

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

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

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

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

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

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

  .hero-section {
    background-color: #ffffff;
    padding: 80px 0 60px;
    overflow: hidden;
  }

  .hero-section h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(74, 47%, 27%);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: hsl(74, 47%, 42%);
    margin-bottom: 25px;
  }

  .hero-section p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
  }

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

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

  .hero-advantages li::before {
    content: "\F26B";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(74, 47%, 42%);
    font-size: 1.3rem;
    font-weight: bold;
  }

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

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

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

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

  .hero-btn-primary:hover {
    background-color: hsl(74, 47%, 27%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

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

  .hero-btn-secondary:hover {
    background-color: hsl(74, 47%, 42%);
    color: #ffffff;
    border-color: hsl(74, 47%, 42%);
    transform: translateY(-2px);
  }

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

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

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

    .hero-image-wrapper {
      margin-top: 40px;
    }
  }

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

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

    .hero-section p {
      font-size: 1rem;
    }

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

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

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

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

.testimonials-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: hsl(74, 47%, 27%);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.testimonials-section .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  border-left: 4px solid hsl(74, 47%, 67%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-left-color: hsl(74, 47%, 42%);
}

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

.testimonial-card.featured .testimonial-text {
  color: #ffffff;
}

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

.testimonial-card.featured .customer-location {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card.compact {
  padding: 1.5rem;
  background: #f8f9fa;
  border-left: 3px solid hsl(74, 47%, 42%);
}

.testimonial-card.detailed {
  padding: 2.5rem;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.rating-stars {
  color: hsl(74, 47%, 42%);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.testimonial-card.featured .rating-stars {
  color: #fff;
}

.rating-stars.rating-4 {
  color: hsl(45, 70%, 50%);
}

.rating-stars.rating-3 {
  color: hsl(30, 70%, 55%);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

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

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

.customer-info {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

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

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: hsl(74, 47%, 67%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: hsl(74, 47%, 27%);
  margin-right: 1rem;
  flex-shrink: 0;
}

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

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

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

.customer-location {
  font-size: 0.9rem;
  color: #666;
}

.testimonial-grid {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-card.detailed {
    padding: 2rem;
  }
}

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

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

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

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

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-left: 4px solid hsl(74, 47%, 42%);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    height: 100%;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-left-color: hsl(74, 47%, 27%);
  }

  .service-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(74, 47%, 42%) 0%, hsl(74, 47%, 27%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

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

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

  .service-content {
    flex: 1;
  }

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

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

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

  .service-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(74, 47%, 27%);
  }

  .service-price-label {
    font-size: 0.85rem;
    color: #777;
    display: block;
    margin-top: 3px;
  }

  .service-terms {
    font-size: 0.9rem;
    color: #666;
    background: hsl(74, 47%, 95%);
    padding: 8px 15px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .service-terms i {
    color: hsl(74, 47%, 42%);
    font-size: 1rem;
  }

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

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

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

    .service-icon-wrapper {
      margin: 0 auto;
    }

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

    .service-title {
      font-size: 1.4rem;
    }
  }

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

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

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

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

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

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

.offer-badge {
    display: inline-block;
    background: hsl(74, 47%, 67%);
    color: #222;
    padding: 8px 24px;
    border-radius: 30px;
    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: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.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-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}

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

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

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

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

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

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

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

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

.discount-badge {
    background: hsl(74, 47%, 27%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 30px;
}

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

.discount-text {
    font-family: 'Lora', serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-cta {
    background: hsl(74, 47%, 42%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.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.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

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

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

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

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

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

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

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

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

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

  .blog-card h3 a:hover {
    color: hsl(74, 47%, 42%);
  }

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

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

  .blog-read-more:hover {
    color: hsl(74, 47%, 27%);
    gap: 0.8rem;
  }

  .blog-read-more i {
    transition: transform 0.3s ease;
  }

  .blog-read-more:hover i {
    transform: translateX(4px);
  }

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

  .view-all-btn:hover {
    background: hsl(74, 47%, 27%);
    border-color: hsl(74, 47%, 27%);
    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 h2 {
      font-size: 2rem;
    }

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

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

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

    .view-all-btn {
      padding: 12px 32px;
      font-size: 0.95rem;
    }
  }

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

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

.credential-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  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: 1rem;
  color: #333;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

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

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

.disclaimer-section .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: hsl(74, 47%, 42%);
  border-radius: 50%;
  margin-bottom: 25px;
}

.disclaimer-section .icon-wrapper i {
  font-size: 32px;
  color: #fff;
}

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

.disclaimer-section .disclaimer-content {
  background: #fff;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(74, 47%, 42%);
}

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

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

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

  .disclaimer-section .disclaimer-content {
    padding: 30px 20px;
  }

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

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

  .disclaimer-section .icon-wrapper i {
    font-size: 28px;
  }
}

@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(74, 47%, 42%);
    --secondary-color: hsl(74, 47%, 27%);
    --accent-color: hsl(74, 47%, 67%);
  }
  
  .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);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .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: 1.25rem;
    font-size: 1.05rem;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 10px;
  }
  
  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
    padding: 0;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
  }
  
  .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);
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), 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(74, 47%, 42%);
    --secondary-color: hsl(74, 47%, 27%);
    --accent-color: hsl(74, 47%, 67%);
  }
  
  .policy-content {
    font-family: 'Lora', serif;
    color: #2c3e50;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    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;
    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: 1rem;
    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(--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: 700;
  }
  
  .effective-date {
    background-color: var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-style: italic;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(74, 47%, 77%) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    border: 2px solid var(--primary-color);
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--secondary-color);
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--primary-color));
    margin: 2.5rem 0;
    border: none;
  }