:root {
  --primary-color: hsl(87, 54%, 36%);
  --secondary-color: hsl(87, 54%, 21%);
    --accent-color: hsl(87, 54%, 61%);
}

* {
  margin: 0;
    padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
  color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

.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: 'Ubuntu', sans-serif;
  font-weight: 700;
    font-size: 1.4rem;
  color: var(--primary-color) !important;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  font-family: 'Ubuntu', sans-serif;
    color: #333 !important;
  font-weight: 500;
    padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
  border: 2px solid var(--primary-color);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(87, 54, 36, 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(87, 54%%, 36%%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  .navbar-collapse {
        background-color: #fff;
    padding: 1rem;
        margin-top: 1rem;
    border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
    
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
        border-bottom: 1px solid #f0f0f0;
  }
    
    .navbar-nav .nav-link:last-child {
    border-bottom: none;
    }
}

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

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

  #about .section-title {
font-family: 'Ubuntu', sans-serif;
    color: hsl(87, 54%, 21%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

#about .section-subtitle {
  font-size: 1.1rem;
    color: #555;
  text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

  #about .about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

#about .about-image {
  flex: 1;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
  transition: transform 0.4s ease;
}

#about .about-image:hover {
  transform: rotate(0deg) scale(1.02);
}

  #about .about-image img {
width: 100%;
    height: auto;
    display: block;
}

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

  #about .about-text h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(87, 54%, 36%);
font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

#about .about-text p {
  color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

  #about .values-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
}

#about .values-section h3 {
font-family: 'Ubuntu', sans-serif;
    color: hsl(87, 54%, 21%);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

#about .value-card {
  padding: 1.5rem;
    background: linear-gradient(135deg, hsl(87, 54%, 96%) 0%, #ffffff 100%);
    border-radius: 10px;
    border-left: 4px solid hsl(87, 54%, 36%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

#about .value-card h4 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(87, 54%, 21%);
  font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

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

#about .mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

  #about .mission-box,
#about .vision-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

#about .mission-box::before,
  #about .vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  height: 5px;
    background: linear-gradient(90deg, hsl(87, 54%, 36%) 0%, hsl(87, 54%, 61%) 100%);
}

  #about .mission-box h3,
#about .vision-box h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(87, 54%, 21%);
    font-size: 1.7rem;
    font-weight: 600;
  margin-bottom: 1rem;
}

#about .mission-box p,
  #about .vision-box p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

#about .expertise-section {
  margin-top: 4rem;
    text-align: center;
}

  #about .expertise-section h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(87, 54%, 21%);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

#about .expertise-stats {
    display: flex;
    justify-content: center;
  gap: 3rem;
    flex-wrap: wrap;
}

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

#about .stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(87, 54%, 36%);
  display: block;
    margin-bottom: 0.5rem;
}

  #about .stat-label {
    color: #555;
    font-size: 1.1rem;
}

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

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

    #about .about-content {
        flex-direction: column;
      gap: 2rem;
    }

    #about .about-image {
        transform: rotate(0deg);
    }

  #about .values-section {
        padding: 2rem 1.5rem;
    }

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

  #about .expertise-stats {
        gap: 2rem;
    }

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

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

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

  .portfolio-header h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    color: hsl(87, 54%, 21%);
    font-weight: 700;
    margin-bottom: 15px;
  }

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

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

  .filter-btn {
    font-family: 'Ubuntu', sans-serif;
    padding: 10px 28px;
    border: 2px solid hsl(87, 54%, 36%);
    background: transparent;
    color: hsl(87, 54%, 36%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(87, 54%, 36%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(87, 130, 50, 0.3);
  }

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

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

  .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 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-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
  }

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

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    display: inline-block;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.8rem;
    color: hsl(87, 54%, 36%);
    background: hsl(87, 54%, 95%);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

  .view-details {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(87, 54%, 36%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }

  .view-details:hover {
    gap: 12px;
    color: hsl(87, 54%, 21%);
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(87, 54%, 36%) 0%, hsl(87, 54%, 21%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 35px;
  }

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

  .project-info {
    margin-bottom: 25px;
  }

  .project-info h5 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(87, 54%, 21%);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .project-info p {
    font-family: 'Playfair Display', serif;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
  }

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

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

  .stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2rem;
    color: hsl(87, 54%, 36%);
    font-weight: 700;
    display: block;
  }

  .stat-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
  }

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

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

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

    .filter-buttons {
      gap: 8px;
    }

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:wght@400;500;600&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%);
    font-family: 'Playfair Display', serif;
  }

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

  #advantages .section-header h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(87, 54%, 21%);
    margin-bottom: 15px;
  }

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

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

  .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(87, 54%, 36%), hsl(87, 54%, 61%));
    transition: left 0.5s ease;
  }

  .advantage-card:hover::before {
    left: 0;
  }

  .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-color: hsl(87, 54%, 61%);
  }

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

  .advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(87, 124, 49, 0.3);
  }

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

  .advantage-card h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(87, 54%, 21%);
    margin-bottom: 18px;
    text-align: center;
  }

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

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

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

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

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

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

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

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(87, 54%, 61%, 0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

  #statistics::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(87, 54%, 36%, 0.06) 0%, transparent 70%);
    border-radius: 50%;
  }

  .stats-header {
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    z-index: 2;
  }

  .stats-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95rem;
    color: hsl(87, 54%, 36%);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .stats-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
  }

  .stats-description {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

  .stat-card {
    background: #ffffff;
    padding: 38px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid rgba(87, 54%, 36%, 0.08);
    position: relative;
    overflow: hidden;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, hsl(87, 54%, 36%) 0%, hsl(87, 54%, 61%) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }

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

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(87, 95, 65, 0.18);
    border-color: hsl(87, 54%, 61%);
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(87, 54%, 36%) 0%, hsl(87, 54%, 21%) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
  }

  .stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(87, 54%, 61%) 0%, hsl(87, 54%, 36%) 100%);
  }

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

  .stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(87, 54%, 36%);
    margin-bottom: 8px;
    line-height: 1;
  }

  .stat-label {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    margin-bottom: 6px;
  }

  .stat-context {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
  }

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

    .stats-title {
      font-size: 2rem;
    }

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(87, 54%, 21%) 0%, hsl(87, 54%, 36%) 100%);
    color: #f8f9fa;
  padding: 60px 0 20px;
    font-family: 'Playfair Display', serif;
}

footer h5 {
    font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
    color: #fff;
  margin-bottom: 20px;
      font-size: 1.3rem;
}

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

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

footer a:hover {
    color: hsl(87, 54%, 61%);
}

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

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

.footer-contact-info p {
  margin-bottom: 12px;
    display: flex;
      align-items: center;
  gap: 8px;
}

.footer-contact-info i {
    color: hsl(87, 54%, 61%);
  font-size: 1.1rem;
}

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

.footer-policy-links {
    display: flex;
  justify-content: center;
    gap: 20px;
      flex-wrap: wrap;
  margin-top: 15px;
}

.footer-policy-links a {
  font-size: 0.9rem;
    color: #f8f9fa;
}

#cookieNotice {
    position: fixed;
  bottom: 0;
    left: 0;
  right: 0;
    background: #fff;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
    padding: 25px 0;
  border-top: 4px solid hsl(87, 54%, 36%);
}

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

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

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

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

.cookie-category {
  margin-bottom: 15px;
    display: flex;
      align-items: flex-start;
  gap: 12px;
}

.cookie-category strong {
    color: #333;
  font-family: 'Ubuntu', sans-serif;
      font-size: 1rem;
}

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

.cookie-required {
    background: hsl(87, 54%, 61%);
  color: #fff;
    padding: 2px 8px;
      border-radius: 4px;
  font-size: 0.75rem;
    font-weight: 600;
}

.cookie-optional {
    background: #6c757d;
  color: #fff;
    padding: 2px 8px;
      border-radius: 4px;
  font-size: 0.75rem;
    font-weight: 600;
}

.cookie-buttons {
  display: flex;
    gap: 15px;
      flex-wrap: wrap;
  justify-content: center;
    margin-top: 20px;
}

.btn-cookie-accept {
    background: hsl(87, 54%, 36%);
  color: #fff;
    border: none;
      padding: 12px 30px;
  font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
      border-radius: 6px;
  transition: all 0.3s ease;
}

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

.btn-cookie-reject {
    background: #6c757d;
  color: #fff;
    border: none;
      padding: 12px 30px;
  font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
      border-radius: 6px;
  transition: all 0.3s ease;
}

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

.btn-cookie-settings {
    background: transparent;
  color: hsl(87, 54%, 36%);
    border: 2px solid hsl(87, 54%, 36%);
      padding: 12px 30px;
  font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
      border-radius: 6px;
  transition: all 0.3s ease;
    text-decoration: none;
      display: inline-block;
}

.btn-cookie-settings:hover {
  background: hsl(87, 54%, 36%);
    color: #fff;
}

@media (max-width: 768px) {
  footer {
      padding: 40px 0 20px;
  }
  
    .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button,
    .cookie-buttons a {
      width: 100%;
    text-align: center;
  }
}

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

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

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

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

  .contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: hsl(87, 54%, 61%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .contact-header h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(87, 54%, 21%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  .contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(87, 54%, 36%);
    border-radius: 2px;
  }

  .contact-header p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  }

  .contact-form-wrapper h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8rem;
    color: hsl(87, 54%, 21%);
    margin-bottom: 30px;
    font-weight: 600;
  }

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

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

  .form-control:focus, .form-select:focus {
    border-color: hsl(87, 54%, 36%);
    box-shadow: 0 0 0 0.2rem rgba(119, 170, 68, 0.15);
    outline: none;
  }

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

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

  .submit-btn {
    background: hsl(87, 54%, 36%);
    color: #ffffff;
    border: none;
    padding: 14px 45px;
    border-radius: 10px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
  }

  .submit-btn:hover {
    background: hsl(87, 54%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(119, 170, 68, 0.3);
  }

  .contact-info-wrapper {
    background: hsl(87, 54%, 21%);
    border-radius: 20px;
    padding: 45px;
    color: #ffffff;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: hsl(87, 54%, 36%);
    opacity: 0.1;
    border-radius: 50%;
  }

  .contact-info-wrapper h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
  }

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

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

  .contact-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: hsl(87, 54%, 36%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }

  .contact-info-item h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: hsl(87, 54%, 61%);
  }

  .contact-info-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
  }

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

  .contact-info-item a:hover {
    color: hsl(87, 54%, 61%);
  }

  .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.1);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
  }

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

  .day {
    font-weight: 500;
  }

  .time {
    color: hsl(87, 54%, 61%);
  }

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

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

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

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

    .contact-form-wrapper,
    .contact-info-wrapper {
      padding: 30px 20px;
    }

    .submit-btn {
      padding: 12px 30px;
    }
  }

  .form-floating-effect {
    position: relative;
  }

  .form-floating-effect input:focus ~ label,
  .form-floating-effect textarea:focus ~ label,
  .form-floating-effect input:not(:placeholder-shown) ~ label,
  .form-floating-effect textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-25px) scale(0.85);
    color: hsl(87, 54%, 36%);
  }

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

  :root {
    --primary-color: hsl(87, 54%, 36%);
    --secondary-color: hsl(87, 54%, 21%);
    --accent-color: hsl(87, 54%, 61%);
  }

  body {
    font-family: 'Playfair Display', 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: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  .policy-content h2 {
    font-size: 1.85rem;
    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.4rem;
    color: var(--primary-color);
  }

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

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

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

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

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

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

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

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

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

  .contact-box p {
    margin-bottom: 0.5rem;
    text-align: left;
  }

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

  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
  }

  .cookie-table td {
    background-color: #fff;
  }

  .cookie-table tr:nth-child(even) td {
    background-color: #f8f9fa;
  }

  .last-updated {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    text-align: center;
  }

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

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
  }
  
  .faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(87, 54%, 36%) 0%, hsl(87, 54%, 61%) 100%);
  }

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

  .faq-header h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    color: hsl(87, 54%, 21%);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  .faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(87, 54%, 36%);
  }

  .faq-header p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.6;
  }

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

  .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: #ffffff;
  }

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

  .accordion-button {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    background: #ffffff;
    padding: 22px 28px;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
  }

  .accordion-button:not(.collapsed) {
    background: hsl(87, 54%, 36%);
    color: #ffffff;
  }

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

  .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");
    transform: rotate(-180deg);
  }

  .accordion-body {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    padding: 25px 28px 28px;
    background: #ffffff;
  }

  .accordion-body ul {
    margin: 15px 0;
    padding-left: 20px;
  }

  .accordion-body li {
    margin-bottom: 8px;
    color: #555;
  }

  .accordion-body strong {
    color: hsl(87, 54%, 21%);
    font-weight: 600;
  }

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

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

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

    .accordion-button {
      font-size: 1.05rem;
      padding: 18px 20px;
    }

    .accordion-body {
      font-size: 0.98rem;
      padding: 20px;
    }
  }

.newsletter-section {
    background: linear-gradient(135deg, hsl(87, 54%, 36%) 0%, hsl(87, 54%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(87, 54%, 61%);
    opacity: 0.1;
    border-radius: 50%;
  }
  
  .newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(87, 54%, 61%);
    opacity: 0.08;
    border-radius: 50%;
  }
  
  .newsletter-container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .newsletter-icon {
    width: 70px;
    height: 70px;
    background: hsl(87, 54%, 61%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }
  
  .newsletter-icon svg {
    width: 35px;
    height: 35px;
    fill: #fff;
  }
  
  .newsletter-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 18px;
  }
  
  .newsletter-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 38px;
    line-height: 1.6;
  }
  
  .newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 580px;
    margin: 0 auto;
  }
  
  .newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    background: rgba(255,255,255,0.15);
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .newsletter-input::placeholder {
    color: rgba(255,255,255,0.7);
  }
  
  .newsletter-input:focus {
    outline: none;
    border-color: hsl(87, 54%, 61%);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
  }
  
  .newsletter-btn {
    padding: 16px 42px;
    background: hsl(87, 54%, 61%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .newsletter-btn:hover {
    background: hsl(87, 54%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }
  
  .newsletter-btn:active {
    transform: translateY(0);
  }
  
  .newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 32px;
    flex-wrap: wrap;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
  }
  
  .benefit-icon {
    width: 22px;
    height: 22px;
    background: hsl(87, 54%, 61%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .benefit-icon::after {
    content: '✓';
    color: #fff;
    font-size: 13px;
    font-weight: bold;
  }
  
  @media (max-width: 768px) {
    .newsletter-section {
      padding: 60px 0;
    }
    
    .newsletter-heading {
      font-size: 2rem;
    }
    
    .newsletter-text {
      font-size: 1rem;
      margin-bottom: 28px;
    }
    
    .newsletter-form {
      flex-direction: column;
      gap: 14px;
    }
    
    .newsletter-btn {
      width: 100%;
    }
    
    .newsletter-benefits {
      gap: 20px;
      margin-top: 28px;
    }
    
    .benefit-item {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .newsletter-heading {
      font-size: 1.75rem;
    }
    
    .newsletter-input {
      padding: 14px 20px;
    }
    
    .newsletter-btn {
      padding: 14px 32px;
    }
  }

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

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

  .hero-content h1 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: hsl(87, 54%, 21%);
    font-size: 2.8rem;
    margin-bottom: 18px;
    line-height: 1.2;
  }

  .hero-content h2 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    color: hsl(87, 54%, 36%);
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .hero-description {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }

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

  .hero-advantages li {
    font-family: 'Playfair Display', serif;
    color: #222;
    font-size: 1rem;
    margin-bottom: 14px;
    padding-left: 32px;
    position: relative;
    line-height: 1.5;
  }

  .hero-advantages li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: hsl(87, 54%, 36%);
    font-size: 1.2rem;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-hero-primary {
    background: hsl(87, 54%, 36%);
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.05rem;
  }

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

  .btn-hero-secondary {
    background: transparent;
    color: hsl(87, 54%, 36%);
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    padding: 14px 32px;
    border: 2px solid hsl(87, 54%, 36%);
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.05rem;
  }

  .btn-hero-secondary:hover {
    background: hsl(87, 54%, 36%);
    color: #fff;
    transform: translateY(-2px);
  }

  .hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .hero-image-wrapper:hover img {
    transform: scale(1.03);
  }

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

    .hero-content h1 {
      font-size: 2.2rem;
    }

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

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

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

    .hero-content h2 {
      font-size: 1.15rem;
    }

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

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

    .btn-hero-primary,
    .btn-hero-secondary {
      width: 100%;
      text-align: center;
    }
  }

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

  .offer-section {
    background: linear-gradient(135deg, hsl(87, 54%, 96%) 0%, hsl(87, 54%, 88%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  .offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(87, 54%, 61%, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
  }

  .offer-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(87, 54%, 36%, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-20px) translateX(10px); }
  }

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

  .offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsl(87, 54%, 36%) 0%, hsl(87, 54%, 21%) 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .offer-title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: hsl(87, 54%, 21%);
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .offer-description {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #333;
    line-height: 1.7;
    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 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
  }

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

  .offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, hsl(87, 54%, 36%) 0%, hsl(87, 54%, 61%) 100%);
  }

  .deadline-wrapper {
    background: linear-gradient(135deg, hsl(87, 54%, 36%) 0%, hsl(87, 54%, 21%) 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
  }

  .deadline-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .deadline-label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

  .calendar-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }

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

  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
  }

  .benefit-item:last-child {
    border-bottom: none;
  }

  .benefit-item:hover {
    padding-left: 10px;
  }

  .benefit-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, hsl(87, 54%, 61%) 0%, hsl(87, 54%, 36%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .benefit-text {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    padding-top: 8px;
  }

  .discount-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Ubuntu', sans-serif;
    box-shadow: 0 6px 20px rgba(238, 90, 111, 0.4);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  .discount-percent {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
  }

  .discount-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, hsl(87, 54%, 36%) 0%, hsl(87, 54%, 21%) 100%);
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.2);
    color: #fff;
  }

  .cta-button:active {
    transform: translateY(-1px);
  }

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

    .offer-title {
      font-size: 2.2rem;
    }

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

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

    .deadline-date {
      font-size: 2rem;
      flex-direction: column;
      gap: 10px;
    }

    .discount-badge {
      width: 75px;
      height: 75px;
      top: 20px;
      right: 20px;
    }

    .discount-percent {
      font-size: 1.5rem;
    }

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

    .benefit-text {
      font-size: 0.95rem;
    }

    .cta-button {
      padding: 15px 40px;
      font-size: 1rem;
    }
  }

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

    .deadline-wrapper {
      padding: 25px 20px;
    }

    .deadline-date {
      font-size: 1.6rem;
    }

    .calendar-icon {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }
  }

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

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

#services h2 {
font-family: 'Ubuntu', sans-serif;
  color: hsl(87, 54%, 21%);
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-align: center;
}

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

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  border-left: 4px solid hsl(87, 54%, 36%);
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

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

.service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(87, 54%, 36%) 0%, hsl(87, 54%, 21%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, hsl(87, 54%, 61%) 0%, hsl(87, 54%, 36%) 100%);
  transform: rotate(10deg) scale(1.1);
}

.service-content {
  flex: 1;
}

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

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

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

.service-price {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: hsl(87, 54%, 36%);
}

.service-term {
  font-size: 0.85rem;
  color: #777;
  background: #f8f9fa;
  padding: 5px 12px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .service-meta {
    flex-direction: column;
    text-align: center;
  }
  
  #services h2 {
    font-size: 2.2rem;
  }
}

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

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

  #testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(87, 54%, 61%, 0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }

  .testimonials-header h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(87, 54%, 21%);
    margin-bottom: 15px;
  }

  .testimonials-header p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
  }

  .testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(87, 54%, 36%, 0.1);
  }

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

  .testimonial-card.featured {
    background: linear-gradient(135deg, hsl(87, 54%, 36%) 0%, hsl(87, 54%, 28%) 100%);
    color: #ffffff;
    border: none;
  }

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

  .testimonial-card.compact {
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid hsl(87, 54%, 36%);
  }

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

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

  .testimonial-card.featured .customer-avatar {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
  }

  .customer-info {
    flex: 1;
  }

  .customer-name {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 5px 0;
  }

  .customer-location {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .rating {
    display: flex;
    gap: 3px;
    margin-left: auto;
  }

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

  .rating .star.empty {
    color: #ddd;
  }

  .testimonial-card.featured .rating .star.empty {
    color: rgba(255,255,255,0.3);
  }

  .testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
  }

  .testimonial-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }

  .testimonial-card.featured .testimonial-meta {
    border-top-color: rgba(255,255,255,0.2);
  }

  .meta-badge {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85rem;
    padding: 6px 12px;
    background: hsl(87, 54%, 61%);
    color: #ffffff;
    border-radius: 20px;
    font-weight: 500;
  }

  .testimonial-card.featured .meta-badge {
    background: rgba(255,255,255,0.25);
  }

  .testimonial-date {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: #888;
    margin-left: auto;
  }

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

  .quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: hsl(87, 54%, 61%);
    opacity: 0.15;
    font-family: Georgia, serif;
  }

  .testimonial-card.featured .quote-icon {
    color: rgba(255,255,255,0.2);
  }

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

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

    .testimonial-card {
      padding: 25px;
    }

    .customer-avatar {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
    }

    .rating {
      margin-left: 0;
      margin-top: 10px;
    }

    .testimonial-header {
      flex-wrap: wrap;
    }
  }

.credentials-section {
    padding: 50px 0;
    background: #f8f9fa;
  }
  
  .credentials-section .section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2rem;
    color: #222;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 600;
  }
  
  .credential-card {
    background: #fff;
    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;
  }
  
  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .credential-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 12px;
  }
  
  .credential-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
  }
  
  @media (max-width: 768px) {
    .credentials-section {
      padding: 40px 0;
    }
    
    .credentials-section .section-title {
      font-size: 1.6rem;
      margin-bottom: 25px;
    }
    
    .credential-card {
      padding: 20px 12px;
      margin-bottom: 15px;
    }
    
    .credential-icon {
      font-size: 2rem;
    }
  }

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

  .blog-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(87, 54%, 61%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

  .blog-preview .container {
    position: relative;
    z-index: 1;
  }

  .blog-preview h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    color: hsl(87, 54%, 21%);
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .blog-preview .section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 600px;
    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;
  }

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

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

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

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

  .blog-card-meta {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 15px;
    z-index: 2;
  }

  .blog-meta-item {
    background: rgba(255,255,255,0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
  }

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

  .blog-card-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    color: hsl(87, 54%, 21%);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
  }

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

  .blog-card-title a:hover {
    color: hsl(87, 54%, 36%);
  }

  .blog-card-excerpt {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .blog-card-link {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(87, 54%, 36%);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }

  .blog-card-link:hover {
    gap: 12px;
    color: hsl(87, 54%, 21%);
  }

  .blog-view-all {
    text-align: center;
    margin-top: 50px;
  }

  .btn-view-all {
    font-family: 'Ubuntu', sans-serif;
    background: hsl(87, 54%, 36%);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid hsl(87, 54%, 36%);
  }

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

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

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

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

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

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

.disclaimer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    position: relative;
  }
  
  .disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(87, 54%, 36%), hsl(87, 54%, 61%));
  }
  
  .disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  
  .disclaimer-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid hsl(87, 54%, 61%);
  }
  
  .disclaimer-icon {
    font-size: 42px;
    color: hsl(87, 54%, 36%);
    flex-shrink: 0;
  }
  
  .disclaimer-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.2rem;
    color: #222;
    margin: 0;
    font-weight: 600;
  }
  
  .disclaimer-content {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
  }
  
  .disclaimer-content p {
    margin-bottom: 18px;
  }
  
  .disclaimer-content p:last-child {
    margin-bottom: 0;
  }
  
  @media (max-width: 768px) {
    .disclaimer-section {
      padding: 40px 0;
    }
    
    .disclaimer-container {
      padding: 30px 20px;
    }
    
    .disclaimer-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
    
    .disclaimer-title {
      font-size: 1.75rem;
    }
    
    .disclaimer-icon {
      font-size: 36px;
    }
    
    .disclaimer-content {
      font-size: 1rem;
    }
  }

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

  :root {
    --primary-color: hsl(87, 54%, 36%);
    --secondary-color: hsl(87, 54%, 21%);
    --accent-color: hsl(87, 54%, 61%);
  }

  body {
    font-family: 'Playfair Display', 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: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .policy-content h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    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: 1.25rem;
    font-size: 1.05rem;
  }

  .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;
    font-size: 1.05rem;
  }

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

  .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 15px rgba(0, 0, 0, 0.1);
  }

  .info-box h3 {
    color: white !important;
    margin-top: 0;
  }

  .info-box a {
    color: white;
    border-bottom: 2px solid white;
    font-weight: 600;
  }

  .info-box a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
  }

  .effective-date {
    background-color: #f8f9fa;
    border-left: 5px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
    font-style: italic;
  }

  .section-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .highlight-text {
    background-color: rgba(87, 54%, 61%, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    color: var(--secondary-color);
  }

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

  :root {
    --primary-color: hsl(87, 54%, 36%);
    --secondary-color: hsl(87, 54%, 21%);
    --accent-color: hsl(87, 54%, 61%);
  }

  body {
    font-family: 'Playfair Display', serif;
  }

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

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
  }

  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }

  .policy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #333;
  }

  .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-color: var(--accent-color);
  }

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

  .policy-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #333;
  }

  .policy-content ul li::marker {
    color: var(--accent-color);
    font-size: 1.2rem;
  }

  .policy-content ol li::marker {
    color: var(--primary-color);
    font-weight: 700;
  }

  .info-box {
    background: linear-gradient(135deg, rgba(87, 154, 36, 0.05) 0%, rgba(87, 154, 36, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

  .info-box p:last-child {
    margin-bottom: 0;
  }

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

  .contact-section h2 {
    color: white;
  }

  .contact-section h2::before {
    background-color: var(--accent-color);
  }

  .contact-section p,
  .contact-section a {
    color: rgba(255, 255, 255, 0.95);
  }

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

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

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

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

  :root {
    --primary-color: hsl(87, 54%, 36%);
    --secondary-color: hsl(87, 54%, 21%);
    --accent-color: hsl(87, 54%, 61%);
  }

  .thank-you-section {
    font-family: 'Playfair Display', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(87, 54%, 96%) 0%, hsl(87, 30%, 98%) 100%);
    padding: 2rem 1rem;
  }

  .thank-you-container {
    max-width: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 3rem 2rem;
    text-align: center;
  }

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

  .success-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: drawCheck 0.6s ease-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }

  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes drawCheck {
    to {
      stroke-dashoffset: 0;
    }
  }

  .thank-you-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }

  .thank-you-subheading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }

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

  .info-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .info-box {
    background: hsl(87, 54%, 96%);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: left;
  }

  .info-box-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
    vertical-align: middle;
  }

  .info-box-text {
    display: inline-block;
    vertical-align: middle;
    font-size: 1rem;
    color: var(--secondary-color);
    max-width: calc(100% - 36px);
  }

  .btn-home {
    font-family: 'Ubuntu', sans-serif;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(87, 54, 36, 0.2);
  }

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

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

    .thank-you-subheading {
      font-size: 1.125rem;
    }

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

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

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