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

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

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Oswald', sans-serif;
  color: #222;
}

.about-section h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: hsl(182, 56%, 29%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section h2 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: hsl(182, 56%, 29%);
}

.about-section h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: hsl(182, 56%, 44%);
}

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

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

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

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

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

.about-image {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  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(182, 56%, 44%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h3 {
  margin-bottom: 15px;
}

.value-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

.stats-row {
  background: hsl(182, 56%, 69%);
  padding: 50px 0;
  margin: 60px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

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

.stat-label {
  font-size: 1.1rem;
  color: #222;
  font-weight: 500;
}

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

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

  .about-section h2 {
    font-size: 1.8rem;
  }

  .about-intro {
    padding: 40px 0;
    margin-bottom: 40px;
  }

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

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

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

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

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

.filter-btn:hover,
.filter-btn.active {
    background: hsl(182, 56%, 44%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.portfolio-overlay-content {
    color: #ffffff;
}

.portfolio-overlay-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.portfolio-overlay-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.portfolio-content {
    padding: 25px;
}

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

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

.portfolio-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.view-details-btn {
    background: hsl(182, 56%, 44%);
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: hsl(182, 56%, 29%);
    transform: translateX(5px);
}

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

.modal-header {
    background: linear-gradient(135deg, hsl(182, 56%, 44%) 0%, hsl(182, 56%, 29%) 100%);
    color: #ffffff;
    border-radius: 12px 12px 0 0;
    padding: 25px 30px;
}

.modal-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin: 0;
}

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

.modal-body {
    padding: 30px;
}

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

.modal-body h4 {
    font-family: 'Oswald', sans-serif;
    color: #222;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

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

.modal-body ul {
    color: #555;
    line-height: 1.8;
}

.modal-body ul li {
    margin-bottom: 8px;
}

.project-details-list {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.project-details-list strong {
    color: #222;
    font-family: 'Oswald', sans-serif;
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-section h2 {
        font-size: 2.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .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: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(182, 56%, 69%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
  }

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

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

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

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

  #advantages .section-header p {
    font-family: 'Lora', serif;
    font-size: 1.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%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  #advantages .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(182, 56%, 44%) 0%, hsl(182, 56%, 69%) 100%);
    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(-10px);
    box-shadow: 0 12px 35px rgba(39, 166, 154, 0.2);
    border-color: hsl(182, 56%, 69%);
  }

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

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(39, 166, 154, 0.3);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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(182, 56%, 44%) 0%, hsl(182, 56%, 69%) 100%);
  }

  .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.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(182, 56%, 44%) 0%, hsl(182, 56%, 69%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.2);
    border-color: hsl(182, 56%, 69%);
  }

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

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(182, 56%, 44%) 0%, hsl(182, 56%, 29%) 100%);
    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);
    background: linear-gradient(135deg, hsl(182, 56%, 29%) 0%, hsl(182, 56%, 44%) 100%);
  }

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

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

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

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(182, 56%, 29%) 0%, hsl(182, 56%, 20%) 100%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  margin-top: 80px;
  font-family: 'Lora', serif;
}

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

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

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

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

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

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

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

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

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

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: hsl(182, 56%, 44%);
  margin-bottom: 15px;
  font-weight: 600;
}

#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: 25px 0;
  border-top: 3px solid hsl(182, 56%, 44%);
  animation: slideUp 0.5s ease-out;
}

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

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

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

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

.cookie-category {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
  padding: 8px;
  border-left: 3px solid hsl(182, 56%, 69%);
  background: #fff;
}

.cookie-category strong {
  color: #222;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 3px;
}

.cookie-category span {
  color: #666;
  font-size: 0.85rem;
}

.cookie-category.required {
  border-left-color: hsl(182, 56%, 44%);
}

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

.cookie-btn {
  font-family: 'Oswald', sans-serif;
  padding: 12px 28px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-btn-accept {
  background: hsl(182, 56%, 44%);
  color: #fff;
}

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

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

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

.cookie-btn-manage {
  background: transparent;
  color: hsl(182, 56%, 29%);
  border: 2px solid hsl(182, 56%, 29%);
}

.cookie-btn-manage:hover {
  background: hsl(182, 56%, 29%);
  color: #fff;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
}

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

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

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

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

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: hsl(182, 56%, 44%);
    box-shadow: 0 0 0 0.2rem hsla(182, 56%, 44%, 0.15);
    outline: none;
}

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

.contact-form .btn-submit {
    background: hsl(182, 56%, 44%);
    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;
    margin-top: 1rem;
}

.contact-form .btn-submit:hover {
    background: hsl(182, 56%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.contact-info-wrapper {
    background: hsl(182, 56%, 29%);
    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;
}

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

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

.contact-info-item .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: hsl(182, 56%, 44%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: hsl(182, 56%, 69%);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item p {
    margin: 0;
    color: #ffffff;
    line-height: 1.6;
}

.contact-info-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.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);
    display: flex;
    justify-content: space-between;
}

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

.working-hours-list .day {
    font-weight: 600;
}

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

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

@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(182, 56%, 44%);
    --secondary-color: hsl(182, 56%, 29%);
    --accent-color: hsl(182, 56%, 69%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4,
  .policy-content h5,
  .policy-content h6 {
    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;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
  }

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

  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--primary-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.2rem;
    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;
  }

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(182, 56%, 85%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .info-box strong {
    color: var(--secondary-color);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
  }

  .contact-info {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
  }

  .contact-info h3 {
    color: white;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
  }

  .contact-info a {
    color: var(--accent-color);
  }

  .contact-info a:hover {
    color: white;
  }

  .effective-date {
    background-color: var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    color: var(--secondary-color);
  }

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

  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Oswald', sans-serif;
    padding: 1rem;
  }

  .cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--accent-color);
  }

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

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

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

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

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

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

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

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

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

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

.accordion-body {
    padding: 1.5rem;
    background-color: #ffffff;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    border-top: 2px solid hsl(182, 56%, 69%);
}

.accordion-body strong {
    color: hsl(182, 56%, 29%);
    font-weight: 600;
}

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

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

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

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(182, 56%, 44%) 0%, hsl(182, 56%, 29%) 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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

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

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

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

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

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

.newsletter-email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    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: #333;
    transition: all 0.3s ease;
}

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

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

.newsletter-submit-btn {
    padding: 16px 40px;
    background: #ffffff;
    color: hsl(182, 56%, 29%);
    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 6px 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::before {
    content: '✓';
    font-weight: bold;
    font-size: 14px;
}

.newsletter-privacy-note {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    text-align: center;
}

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

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

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

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

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

    .newsletter-benefits {
        gap: 25px;
    }

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

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

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

    .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;700&display=swap');

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

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

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

  .hero-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: hsl(182, 56%, 29%);
    margin-bottom: 1.5rem;
  }

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

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

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

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

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

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

  .hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
  }

  .hero-image:hover {
    transform: scale(1.02);
  }

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

  .btn-hero-primary {
    font-family: 'Oswald', sans-serif;
    background: hsl(182, 56%, 44%);
    color: #fff;
    padding: 14px 36px;
    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(45, 164, 150, 0.3);
  }

  .btn-hero-primary:hover {
    background: hsl(182, 56%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 164, 150, 0.4);
    color: #fff;
  }

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

  .btn-hero-secondary:hover {
    background: hsl(182, 56%, 44%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 164, 150, 0.25);
  }

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

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

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

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

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

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

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

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

    .hero-advantages li {
      font-size: 0.95rem;
    }

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

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

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

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

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

  .services-tabs {
    margin-bottom: 3rem;
  }

  .nav-tabs {
    border-bottom: 3px solid hsl(182, 56%, 44%);
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-tabs .nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #333;
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0.5rem 0.5rem 0;
  }

  .nav-tabs .nav-link:hover {
    color: hsl(182, 56%, 44%);
    border-color: transparent;
  }

  .nav-tabs .nav-link.active {
    color: #fff;
    background: hsl(182, 56%, 44%);
    border-color: hsl(182, 56%, 44%);
    font-weight: 600;
  }

  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    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(45, 166, 153, 0.2);
    border-color: hsl(182, 56%, 44%);
  }

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

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

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

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

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

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

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

  .service-price small {
    font-size: 0.9rem;
    color: #777;
    font-family: 'Lora', serif;
    font-weight: 400;
  }

  .service-duration {
    background: hsl(182, 56%, 69%);
    color: #222;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .tab-pane {
    animation: fadeIn 0.5s ease;
  }

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

  @media (max-width: 768px) {
    .services-section h2 {
      font-size: 2rem;
    }

    .nav-tabs .nav-link {
      padding: 0.75rem 1rem;
      font-size: 0.95rem;
    }

    .service-card {
      padding: 1.5rem;
    }

    .service-footer {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }
  }

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

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

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

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

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

  .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;
    gap: 1.2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }

  .blog-meta-item {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

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

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

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

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

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

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

  .blog-read-more:hover {
    color: hsl(182, 56%, 29%);
    gap: 0.8rem;
  }

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

  .view-all-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2.5rem;
    background: hsl(182, 56%, 44%);
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 138, 135, 0.3);
  }

  .view-all-btn:hover {
    background: hsl(182, 56%, 29%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 138, 135, 0.4);
  }

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

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

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

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

.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: #222;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 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;
}

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

.testimonial-card.featured {
  border-left: 5px solid hsl(182, 56%, 44%);
  background: linear-gradient(135deg, #ffffff 0%, #f8fdfd 100%);
}

.testimonial-card.compact {
  padding: 25px;
  background: #f8f9fa;
  border: 2px solid hsl(182, 56%, 69%);
}

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

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

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

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

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

.testimonial-location i {
  color: hsl(182, 56%, 44%);
}

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

.testimonial-rating i {
  color: #ffc107;
  font-size: 1.1rem;
}

.testimonial-rating i.empty {
  color: #ddd;
}

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

.testimonial-text.short {
  font-size: 1.1rem;
  font-style: italic;
}

.testimonial-text.detailed {
  font-size: 1rem;
  line-height: 1.9;
}

.testimonial-date {
  color: #999;
  font-size: 0.9rem;
  text-align: right;
  margin-top: auto;
}

.testimonial-highlight {
  background: hsl(182, 56%, 95%);
  border-left: 3px solid hsl(182, 56%, 44%);
  padding: 15px 20px;
  margin: 15px 0;
  font-style: italic;
  color: #444;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: hsl(182, 56%, 44%);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  color: #666;
  font-size: 1rem;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2.2rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .stats-row {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

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

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

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

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

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

.offer-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.offer-deadline-box {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.deadline-date {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(182, 56%, 29%);
  margin: 0;
  line-height: 1.2;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: hsl(182, 56%, 44%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.calendar-icon svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}

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

.benefit-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

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

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

.benefit-icon i {
  font-size: 1.5rem;
  color: hsl(182, 56%, 29%);
}

.benefit-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit-content p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #fff;
  margin: 0;
  line-height: 1.6;
}

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

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

.discount-highlight {
  display: inline-block;
  background: hsl(182, 56%, 69%);
  color: #222;
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .offer-title {
    font-size: 2rem;
  }
  
  .offer-description {
    font-size: 1rem;
  }
  
  .deadline-date {
    font-size: 2.5rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .discount-highlight {
    font-size: 2rem;
    padding: 12px 25px;
  }
  
  .offer-section {
    padding: 60px 0;
  }
}

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

  #credentials {
    padding: 50px 0;
    background-color: #f8f9fa;
    font-family: 'Lora', serif;
  }

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

  #credentials .credential-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

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

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

  #credentials .credential-text {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

    #credentials .credential-card {
      margin-bottom: 15px;
      padding: 20px 10px;
    }

    #credentials .credential-icon {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    #credentials .credential-text {
      font-size: 0.85rem;
    }
  }

.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;
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(182, 56%, 44%);
}

.disclaimer-icon {
  text-align: center;
  margin-bottom: 30px;
}

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

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

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

.disclaimer-text p {
  margin-bottom: 20px;
}

.disclaimer-highlight {
  background: hsl(182, 56%, 95%);
  padding: 25px;
  border-radius: 8px;
  margin-top: 25px;
  border-left: 3px solid hsl(182, 56%, 44%);
}

.disclaimer-highlight p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #333;
  font-style: italic;
}

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

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

@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(182, 56%, 44%);
    --secondary-color: hsl(182, 56%, 29%);
    --accent-color: hsl(182, 56%, 69%);
  }

  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;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
  }

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

  h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
  }

  .policy-content {
    background: linear-gradient(135deg, #f8fcfc 0%, #ffffff 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
  }

  .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(--secondary-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;
  }

  .highlight-box {
    background-color: rgba(42, 180, 180, 0.08);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
  }

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

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

  .contact-info p {
    margin-bottom: 0.5rem;
  }

  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
  }

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

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

  :root {
    --primary-color: hsl(182, 56%, 44%);
    --secondary-color: hsl(182, 56%, 29%);
    --accent-color: hsl(182, 56%, 69%);
  }

  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;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-top: 2.5rem;
  }

  h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
  }

  .policy-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

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

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

  .intro-box {
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 2rem;
  }

  .contact-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
  }

  .contact-box h3 {
    color: white;
  }

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

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

  ul, ol {
    margin-bottom: 1.5rem;
  }

  li {
    margin-bottom: 0.75rem;
  }

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

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

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

  :root {
    --primary: hsl(182, 56%, 44%);
    --secondary: hsl(182, 56%, 29%);
    --accent: hsl(182, 56%, 69%);
  }

  .thank-you-section {
    font-family: 'Lora', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
    padding: 2rem 1rem;
  }

  .thank-you-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
  }

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

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out 0.2s backwards;
  }

  @keyframes scaleIn {
    from {
      transform: scale(0);
    }
    to {
      transform: scale(1);
    }
  }

  .success-icon svg {
    width: 60px;
    height: 60px;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmark 0.6s ease-out 0.4s backwards;
  }

  @keyframes checkmark {
    0% {
      stroke-dasharray: 100;
      stroke-dashoffset: 100;
    }
    100% {
      stroke-dasharray: 100;
      stroke-dashoffset: 0;
    }
  }

  .thank-you-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .thank-you-message {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .thank-you-message p {
    margin-bottom: 1rem;
  }

  .thank-you-message strong {
    color: var(--secondary);
    font-weight: 600;
  }

  .info-cards {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .info-card {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    padding: 1.5rem;
    border-radius: 12px;
    color: var(--secondary);
  }

  .info-card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .info-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  .info-card-text {
    font-size: 0.875rem;
    opacity: 0.9;
  }

  .btn-home {
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--primary);
    color: #ffffff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .btn-home:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 768px) {
    .thank-you-heading {
      font-size: 2.25rem;
    }

    .thank-you-container {
      padding: 2rem 1.5rem;
    }

    .success-icon {
      width: 80px;
      height: 80px;
    }

    .success-icon svg {
      width: 50px;
      height: 50px;
    }

    .info-cards {
      flex-direction: column;
    }

    .info-card {
      min-width: 100%;
    }

    .btn-home {
      padding: 0.875rem 2rem;
      font-size: 1rem;
    }
  }