:root {
            --primary-color: hsl(166, 56%, 34%);
            --secondary-color: hsl(166, 56%, 19%);
            --accent-color: hsl(166, 56%, 59%);
        }
        
        body {
            font-family: 'Lora', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .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(39, 128, 105, 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(39, 128, 105, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Oswald', sans-serif;
  color: hsl(166, 56%, 19%);
  font-weight: 600;
}

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  margin-top: 3rem;
}

.about-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: hsl(166, 56%, 34%);
}

.about-intro {
  background: linear-gradient(135deg, hsl(166, 56%, 34%) 0%, hsl(166, 56%, 19%) 100%);
  color: #ffffff;
  padding: 60px 0;
  margin-bottom: 60px;
}

.about-intro h1 {
  color: #ffffff;
}

.about-intro .lead {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 0;
}

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

.about-content p {
  margin-bottom: 1.5rem;
  color: #333;
}

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

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

.value-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid hsl(166, 56%, 34%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.value-card p {
  margin-bottom: 0;
  color: #444;
}

.stats-row {
  background: hsl(166, 56%, 59%);
  padding: 50px 0;
  margin: 60px 0;
  border-radius: 8px;
}

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

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

.stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
}

.mission-box {
  background: linear-gradient(135deg, hsl(166, 56%, 19%) 0%, hsl(166, 56%, 34%) 100%);
  color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
}

.mission-box h2 {
  color: #ffffff;
  margin-top: 0;
}

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

@media (max-width: 768px) {
  .about-section h1 {
    font-size: 2.2rem;
  }
  
  .about-section h2 {
    font-size: 1.8rem;
  }
  
  .about-intro {
    padding: 40px 0;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

.filter-btn:hover,
.filter-btn.active {
  background: hsl(166, 56%, 34%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

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

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

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

.portfolio-content {
  padding: 25px;
  position: relative;
}

.portfolio-category {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  color: #fff;
  background: hsl(166, 56%, 34%);
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.portfolio-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.view-details {
  font-family: 'Oswald', sans-serif;
  color: hsl(166, 56%, 34%);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

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

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

.modal-header {
  background: linear-gradient(135deg, hsl(166, 56%, 34%) 0%, hsl(166, 56%, 19%) 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);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

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

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

.project-detail-section {
  margin-bottom: 25px;
}

.project-detail-section h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: hsl(166, 56%, 34%);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-detail-section p,
.project-detail-section ul {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

.project-detail-section ul {
  padding-left: 20px;
}

.project-detail-section li {
  margin-bottom: 8px;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px solid #f0f0f0;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: hsl(166, 56%, 34%);
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

  .filter-buttons {
    gap: 10px;
  }

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

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

  .project-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

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

  .stat-value {
    font-size: 1.6rem;
  }
}

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

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

  .advantages-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(166, 56%, 34%);
    opacity: 0.03;
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .advantages-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: hsl(166, 56%, 19%);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

  .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(166, 56%, 34%), hsl(166, 56%, 59%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

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

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(166, 56%, 59%);
  }

  .advantage-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(166, 56%, 34%), hsl(166, 56%, 59%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  .advantage-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: hsl(166, 56%, 59%);
    opacity: 0;
    transform: scale(1.3);
    transition: all 0.4s ease;
  }

  .advantage-card:hover .advantage-icon::after {
    opacity: 0.2;
    transform: scale(1.5);
  }

  .advantage-icon i {
    font-size: 2rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
  }

  .advantage-card:hover .advantage-icon {
    transform: rotateY(360deg);
  }

  .advantage-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: hsl(166, 56%, 19%);
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  .advantages-row {
    margin-bottom: 30px;
  }

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

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

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

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

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

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

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

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

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

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

@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(166, 56%, 34%), hsl(166, 56%, 59%));
  }

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

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

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

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

  .stat-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(166, 56%, 34%), hsl(166, 56%, 59%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(28, 120, 102, 0.15);
    border-color: hsl(166, 56%, 59%);
  }

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

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

  .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(28, 120, 102, 0.3);
  }

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

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

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

  .stat-context {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
  }

  .stats-note {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 5px solid hsl(166, 56%, 34%);
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  }

  .stats-note p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #444;
    margin: 0;
    line-height: 1.7;
  }

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

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

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

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

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

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

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

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

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

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

    .stats-note {
      padding: 25px 20px;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(166, 56%, 19%) 0%, hsl(166, 56%, 24%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 1.5rem;
  margin-top: 5rem;
  font-family: 'Lora', serif;
}

footer h5 {
  font-family: 'Oswald', sans-serif;
  color: hsl(166, 56%, 59%);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

footer a {
  color: #e9ecef;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

footer a:hover {
  color: hsl(166, 56%, 59%);
  padding-left: 8px;
}

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

.footer-contact-item i {
  color: hsl(166, 56%, 59%);
  margin-right: 0.8rem;
  margin-top: 0.3rem;
  font-size: 1.1rem;
}

.footer-contact-item a {
  display: inline;
  padding: 0;
}

.footer-contact-item a:hover {
  padding-left: 0;
}

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

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

.footer-links-list li {
  margin-bottom: 0.5rem;
}

#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: 2rem 0;
  border-top: 4px solid hsl(166, 56%, 34%);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cookie-title {
  font-family: 'Oswald', sans-serif;
  color: hsl(166, 56%, 19%);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cookie-description {
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-categories {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

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

.cookie-category-desc {
  color: #6c757d;
  font-size: 0.85rem;
  margin: 0;
}

.cookie-required {
  background: hsl(166, 56%, 34%);
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  background: hsl(166, 56%, 34%);
  color: #ffffff;
  border: none;
  padding: 0.8rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 180px;
}

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

.btn-cookie-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 0.8rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 180px;
}

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

.btn-cookie-settings {
  background: transparent;
  color: hsl(166, 56%, 34%);
  border: 2px solid hsl(166, 56%, 34%);
  padding: 0.8rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.btn-cookie-settings:hover {
  background: hsl(166, 56%, 34%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1rem;
  }

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

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

  #cookieNotice {
    padding: 1.5rem 0;
  }

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

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

  .btn-cookie-accept,
  .btn-cookie-reject,
  .btn-cookie-settings {
    width: 100%;
    min-width: 100%;
  }
}

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

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

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

.contact-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: hsl(166, 56%, 19%);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.contact-form-wrapper h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: hsl(166, 56%, 34%);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

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

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

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: hsl(166, 56%, 34%);
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 106, 0.15);
    outline: none;
}

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

.contact-form .btn-submit {
    background: hsl(166, 56%, 34%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 1rem;
}

.contact-form .btn-submit:hover {
    background: hsl(166, 56%, 19%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 106, 0.3);
}

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

.contact-info-wrapper h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-left: 45px;
    position: relative;
}

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

.contact-info-item i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.5rem;
    color: hsl(166, 56%, 59%);
}

.contact-info-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item p,
.contact-info-item a {
    color: #f0f0f0;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-item a {
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-info-item a:hover {
    color: hsl(166, 56%, 59%);
}

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

.working-hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: #f0f0f0;
    font-size: 0.95rem;
}

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

.working-hours-list li strong {
    color: #ffffff;
    display: inline-block;
    min-width: 100px;
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }
    
    .contact-info-item {
        padding-left: 40px;
    }
}

@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(166, 56%, 34%);
    --secondary-color: hsl(166, 56%, 19%);
    --accent-color: hsl(166, 56%, 59%);
  }

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

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

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

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

  h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
  }

  .policy-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }

  .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;
    border-bottom: 2px solid transparent;
  }

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

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

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

  .info-box {
    background-color: rgba(166, 56%, 34%, 0.05);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

  .contact-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

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

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

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

  .last-updated {
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
  }

  .cookie-type {
    background-color: white;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 3px solid var(--accent-color);
  }

  .cookie-type h3 {
    margin-top: 0;
    color: var(--primary-color);
  }

  strong {
    color: var(--secondary-color);
  }

.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-intro {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

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

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

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

  .accordion-button:hover {
    background: hsl(166, 56%, 59%);
    color: #ffffff;
  }

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

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

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

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

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

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

  .accordion-body strong {
    color: hsl(166, 56%, 34%);
    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: 50px 0;
    }

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

    .faq-intro {
      font-size: 1rem;
      margin-bottom: 2rem;
    }

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(166, 56%, 34%) 0%, hsl(166, 56%, 19%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

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

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

.newsletter-description {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 2.5rem;
  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;
  justify-content: center;
}

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

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

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

.newsletter-submit-btn {
  padding: 16px 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: hsl(166, 56%, 59%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-submit-btn:hover {
  background: hsl(166, 56%, 54%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .newsletter-email-input,
  .newsletter-submit-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

@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, hsl(166, 56%, 19%) 0%, hsl(166, 56%, 34%) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.hero-section h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hero-description {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 900px;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  margin-bottom: 3rem;
}

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

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.advantages-list li {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: #ffffff;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.15);
}

.advantages-list li:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.advantages-list li i {
  color: hsl(166, 56%, 59%);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.btn-primary-hero {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  background: hsl(166, 56%, 59%);
  color: #222;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary-hero:hover {
  background: hsl(166, 56%, 49%);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

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

.btn-secondary-hero:hover {
  background: #ffffff;
  color: hsl(166, 56%, 34%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 80px;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.4rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .advantages-list {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    justify-content: center;
  }
}

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

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

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(166, 56%, 34%), hsl(166, 56%, 59%));
}

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

.services-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: hsl(166, 56%, 19%);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(29, 120, 97, 0.2);
  border-color: hsl(166, 56%, 59%);
}

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

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

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

.service-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: hsl(166, 56%, 19%);
  margin-bottom: 18px;
  font-weight: 600;
  line-height: 1.3;
}

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

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

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

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

.service-duration {
  font-size: 0.9rem;
  color: #666;
  background: #f8f9fa;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}

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

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

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

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

  .service-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(166, 56%, 34%) 0%, hsl(166, 56%, 19%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.offer-title {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
  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 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  margin-top: 40px;
}

.deadline-wrapper {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px dashed hsl(166, 56%, 34%);
}

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

.deadline-date {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, hsl(166, 56%, 34%), hsl(166, 56%, 59%));
  color: #fff;
  padding: 20px 40px;
  border-radius: 15px;
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.calendar-icon {
  font-size: 42px;
}

.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: 16px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: hsl(166, 56%, 34%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.discount-highlight {
  background: hsl(166, 56%, 59%);
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 40px;
}

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

.discount-text {
  font-family: 'Lora', serif;
  font-size: 18px;
  opacity: 0.95;
}

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

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

.offer-btn:hover {
  background: hsl(166, 56%, 19%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

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

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

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

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

  .deadline-date {
    font-size: 28px;
    padding: 16px 24px;
    flex-direction: column;
    gap: 8px;
  }

  .calendar-icon {
    font-size: 32px;
  }

  .discount-percentage {
    font-size: 56px;
  }

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

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

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

  .blog-preview 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-subtitle {
    font-size: 1.1rem;
    color: #555;
    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.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
  }

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

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

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

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

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

  .blog-meta {
    display: flex;
    align-items: center;
    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(166, 56%, 34%);
    font-size: 0.9rem;
  }

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

  .blog-card:hover .blog-card-title {
    color: hsl(166, 56%, 34%);
  }

  .blog-card-excerpt {
    color: #555;
    font-size: 0.95rem;
    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(166, 56%, 34%);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  .blog-card-link:hover {
    color: hsl(166, 56%, 19%);
    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(166, 56%, 34%);
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3rem;
    box-shadow: 0 4px 15px rgba(29, 120, 96, 0.2);
  }

  .view-all-btn:hover {
    background: hsl(166, 56%, 19%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(29, 120, 96, 0.3);
    color: #ffffff;
  }

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

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

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

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

    .blog-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }

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

.testimonials-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: hsl(166, 56%, 19%);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  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(166, 56%, 34%);
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  gap: 1rem;
}

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

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

.testimonial-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 0.2rem;
}

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

.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

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

.star.empty {
  color: #ddd;
}

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

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

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

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(166, 56%, 34%) 0%, hsl(166, 56%, 19%) 100%);
  border-left: 4px solid hsl(166, 56%, 59%);
}

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

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

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

.stats-row {
  background: hsl(166, 56%, 34%);
  padding: 3rem 0;
  margin-top: 4rem;
  border-radius: 12px;
}

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

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

.stat-label {
  font-size: 1rem;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stats-row {
    margin-top: 2rem;
    padding: 2rem 0;
  }
}

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

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

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

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

  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: hsl(166, 56%, 34%);
  }

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

  .credential-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .credential-text {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
  }

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

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

    .credential-card {
      margin-bottom: 20px;
    }

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

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

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

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

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

.disclaimer-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.disclaimer-icon i {
  font-size: 48px;
  color: hsl(166, 56%, 34%);
}

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

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

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

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

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

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

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

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

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

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

@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(166, 56%, 34%);
    --secondary-color: hsl(166, 56%, 19%);
    --accent-color: hsl(166, 56%, 59%);
  }
  
  .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;
    font-weight: 700;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
  }
  
  .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 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(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .info-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .info-box a {
    color: white;
    border-bottom: 2px solid white;
    font-weight: 600;
  }
  
  .info-box a:hover {
    color: #f0f0f0;
    border-bottom-color: #f0f0f0;
  }
  
  .section-card {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }
  
  .effective-date {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 500;
  }

@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(166, 56%, 34%);
    --secondary-color: hsl(166, 56%, 19%);
    --accent-color: hsl(166, 56%, 59%);
  }
  
  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;
    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;
    color: var(--primary-color);
  }
  
  .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: 500;
    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;
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .info-box strong {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
  }
  
  .section-divider {
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--primary-color));
    margin: 2.5rem 0;
    border: none;
  }
  
  .highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-section a {
    color: var(--accent-color);
  }
  
  .contact-section a:hover {
    color: white;
  }
  
  .last-updated {
    font-style: italic;
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 1rem;
  }