:root {
            --primary-color: hsl(214, 43%, 40%);
            --secondary-color: hsl(214, 43%, 25%);
            --accent-color: hsl(214, 43%, 65%);
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851, 51, 51, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
            }
        }

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

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

#about h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(214, 43%, 25%);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

#about h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(214, 43%, 40%);
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  margin-top: 2.5rem;
}

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

.about-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-intro p {
  font-size: 1.15rem;
  color: #444;
}

.about-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.about-section-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-section-block.reverse {
  direction: rtl;
}

.about-section-block.reverse > * {
  direction: ltr;
}

.about-text-content {
  padding: 1rem;
}

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

.about-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

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

.value-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-left: 4px solid hsl(214, 43%, 40%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(214, 43%, 40%);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #555;
}

.highlight-box {
  background: hsl(214, 43%, 40%);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 10px;
  margin: 3rem 0;
  text-align: center;
}

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

@media (max-width: 992px) {
  #about {
    padding: 60px 0;
  }
  
  #about h2 {
    font-size: 2.2rem;
  }
  
  .about-section-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-section-block.reverse {
    direction: ltr;
  }
  
  .about-image-wrapper img {
    height: 320px;
  }
}

@media (max-width: 576px) {
  #about h2 {
    font-size: 1.8rem;
  }
  
  #about h3 {
    font-size: 1.5rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image-wrapper img {
    height: 250px;
  }
}

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

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

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

  #portfolio .section-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: hsl(214, 43%, 25%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #portfolio .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(214, 43%, 40%);
    border-radius: 2px;
  }

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

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

  #portfolio .filter-btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid hsl(214, 43%, 40%);
    background: transparent;
    color: hsl(214, 43%, 40%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(214, 43%, 40%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 99, 133, 0.3);
  }

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

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

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

  #portfolio .portfolio-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
  }

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

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

  #portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(66, 99, 133, 0.9), rgba(42, 63, 84, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

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

  #portfolio .overlay-icon {
    font-size: 3rem;
    color: #ffffff;
    transition: transform 0.3s ease;
  }

  #portfolio .portfolio-item:hover .overlay-icon {
    transform: scale(1.2);
  }

  #portfolio .portfolio-content {
    padding: 25px;
  }

  #portfolio .portfolio-category {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    color: hsl(214, 43%, 40%);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  #portfolio .portfolio-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(214, 43%, 25%);
    margin-bottom: 15px;
    line-height: 1.4;
  }

  #portfolio .portfolio-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
  }

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

  #portfolio .modal-header {
    background: linear-gradient(135deg, hsl(214, 43%, 40%), hsl(214, 43%, 25%));
    color: #ffffff;
    border: none;
    padding: 25px 30px;
  }

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

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

  #portfolio .modal-body {
    padding: 35px 30px;
  }

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

  #portfolio .modal-category {
    font-family: 'Quicksand', sans-serif;
    display: inline-block;
    padding: 8px 20px;
    background: hsl(214, 43%, 65%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }

  #portfolio .modal-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  #portfolio .modal-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
  }

  #portfolio .modal-details h5 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(214, 43%, 25%);
    margin-bottom: 15px;
    font-size: 1.2rem;
  }

  #portfolio .modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #portfolio .modal-details li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #e0e0e0;
  }

  #portfolio .modal-details li:last-child {
    border-bottom: none;
  }

  #portfolio .modal-details li strong {
    color: hsl(214, 43%, 25%);
    font-weight: 700;
    margin-right: 10px;
  }

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

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

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

    #portfolio .filter-buttons {
      gap: 10px;
    }

    #portfolio .filter-btn {
      padding: 10px 20px;
      font-size: 0.85rem;
    }

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

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

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

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

    #portfolio .portfolio-title {
      font-size: 1.3rem;
    }

    #portfolio .filter-btn {
      padding: 8px 16px;
      font-size: 0.8rem;
    }
  }

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

  #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(214, 43%, 65%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
  }

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

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

  #advantages .section-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: hsl(214, 43%, 40%);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }

  #advantages .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  #advantages .section-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 28px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(214, 214, 214, 0.3);
    position: relative;
    overflow: hidden;
  }

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: hsl(214, 43%, 65%);
  }

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

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

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(214, 43%, 65%) 0%, hsl(214, 43%, 40%) 100%);
  }

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

  #advantages .advantage-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  #advantages .advantage-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
  }

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

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

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

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

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

    #advantages .section-title {
      font-size: 1.75rem;
    }

    #advantages .section-description {
      font-size: 0.98rem;
    }

    #advantages .advantage-card {
      padding: 30px 24px;
    }
  }

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(214, 43%, 40%) 0%, hsl(214, 43%, 65%) 100%);
  }

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

  #statistics .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(214, 43%, 25%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

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

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(214, 43%, 40%), hsl(214, 43%, 65%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

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

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(56, 87, 123, 0.15);
    border-color: hsl(214, 43%, 65%);
  }

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

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

  #statistics .stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(214, 43%, 25%);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  #statistics .stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
  }

  #statistics .stat-context {
    font-size: 0.8rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
  }

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

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

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

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

    #statistics .stat-number {
      font-size: 2rem;
    }

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

  @media (max-width: 576px) {
    #statistics .stats-grid {
      grid-template-columns: 1fr;
      max-width: 350px;
      margin-left: auto;
      margin-right: auto;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(214, 43%, 25%) 0%, hsl(214, 43%, 40%) 100%);
  color: #ffffff;
  padding: 60px 0 0;
  font-family: 'Libre Baskerville', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

footer p, footer ul, footer a {
  font-size: 0.95rem;
  line-height: 1.8;
}

footer a {
  color: hsl(214, 43%, 85%);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  padding-left: 5px;
}

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

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

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

.footer-contact-item i {
  color: hsl(214, 43%, 65%);
  margin-right: 12px;
  margin-top: 3px;
  font-size: 1.1rem;
}

.footer-bottom {
  background: hsl(214, 43%, 20%);
  padding: 25px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: hsl(214, 43%, 75%);
  font-size: 0.9rem;
}

.footer-logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-description {
  color: hsl(214, 43%, 80%);
  margin-bottom: 25px;
  line-height: 1.7;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 4px solid hsl(214, 43%, 40%);
  animation: slideUp 0.5s ease-out;
}

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

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

.cookie-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(214, 43%, 25%);
  margin-bottom: 15px;
}

.cookie-text {
  font-family: 'Libre Baskerville', serif;
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.cookie-category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}

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

.cookie-category-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(214, 43%, 30%);
  font-size: 1rem;
  margin-bottom: 5px;
}

.cookie-category-desc {
  font-size: 0.85rem;
  color: #555555;
  line-height: 1.5;
}

.cookie-badge {
  display: inline-block;
  background: hsl(214, 43%, 40%);
  color: #ffffff;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: 10px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}

.cookie-badge.optional {
  background: hsl(214, 43%, 65%);
}

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

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

.cookie-btn-accept {
  background: #28a745;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

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

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

.cookie-btn-manage {
  background: transparent;
  color: hsl(214, 43%, 40%);
  border: 2px solid hsl(214, 43%, 40%);
}

.cookie-btn-manage:hover {
  background: hsl(214, 43%, 40%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

  footer h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  #cookieNotice {
    padding: 20px 0;
  }

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

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

  .cookie-btn {
    width: 100%;
  }

  .cookie-categories {
    padding: 15px;
  }
}

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

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

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

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

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(214, 43%, 40%), hsl(214, 43%, 65%));
}

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

.contact-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(214, 43%, 25%);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.contact-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: hsl(214, 43%, 40%);
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

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

.contact-form-wrapper h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(214, 43%, 25%);
  margin-bottom: 25px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

.contact-form label .required {
  color: hsl(214, 43%, 40%);
  margin-left: 3px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: hsl(214, 43%, 40%);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(64, 94, 133, 0.1);
}

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

.contact-form .btn-submit {
  width: 100%;
  padding: 16px 30px;
  background: hsl(214, 43%, 40%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-form .btn-submit:hover {
  background: hsl(214, 43%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(64, 94, 133, 0.3);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  border-left: 4px solid hsl(214, 43%, 40%);
  transition: all 0.3s ease;
}

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

.contact-info-card h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(214, 43%, 25%);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info-card h4 i {
  color: hsl(214, 43%, 40%);
  font-size: 1.4rem;
}

.contact-info-item {
  margin-bottom: 15px;
}

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

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

.contact-info-item a {
  color: hsl(214, 43%, 40%);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: hsl(214, 43%, 25%);
  text-decoration: underline;
}

.contact-info-item strong {
  font-family: 'Quicksand', sans-serif;
  color: #333;
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

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

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

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

.hours-list li .day {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #333;
}

.hours-list li .time {
  color: hsl(214, 43%, 40%);
  font-weight: 500;
}

.contact-map-note {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  margin-top: 20px;
}

.contact-map-note p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-header h2 {
    font-size: 2.3rem;
  }
  
  .contact-form-wrapper,
  .contact-info-card {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  #contact {
    padding: 60px 0;
  }
  
  .contact-header h2 {
    font-size: 2rem;
  }
  
  .contact-header p {
    font-size: 1rem;
  }
  
  .contact-form-wrapper,
  .contact-info-card {
    padding: 25px;
  }
  
  .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }
  
  .hours-list li {
    flex-direction: column;
    gap: 5px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');
  
  :root {
    --primary-color: hsl(214, 43%, 40%);
    --secondary-color: hsl(214, 43%, 25%);
    --accent-color: hsl(214, 43%, 65%);
  }
  
  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .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: 1rem;
    color: var(--primary-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--primary-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .policy-intro {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 0.25rem;
  }
  
  .policy-section {
    margin-bottom: 2rem;
  }
  
  .cookie-table {
    margin: 1.5rem 0;
  }
  
  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Quicksand', sans-serif;
  }
  
  .cookie-table td {
    font-size: 0.95rem;
  }
  
  .contact-box {
    background-color: var(--accent-color);
    color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: white;
    border-bottom-color: white;
    font-weight: bold;
  }
  
  .contact-box a:hover {
    color: var(--secondary-color);
  }
  
  .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
  }

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

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

  .faq-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(214, 43%, 25%);
    margin-bottom: 20px;
  }

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

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

  .accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

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

  .accordion-button {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: hsl(214, 43%, 25%);
    background-color: #ffffff;
    padding: 22px 28px;
    border: none;
    transition: all 0.3s ease;
  }

  .accordion-button:not(.collapsed) {
    background-color: hsl(214, 43%, 40%);
    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='%23365073'%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 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    padding: 28px;
    background-color: #ffffff;
  }

  .accordion-body p {
    margin-bottom: 12px;
  }

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

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

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

  .faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: hsl(214, 43%, 65%);
    border-radius: 12px;
  }

  .faq-cta h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
  }

  .faq-cta p {
    font-family: 'Libre Baskerville', serif;
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.05rem;
  }

  .faq-cta-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #ffffff;
    color: hsl(214, 43%, 40%);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .faq-cta-btn:hover {
    background-color: hsl(214, 43%, 25%);
    color: #ffffff;
    transform: translateY(-2px);
  }

  @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.95rem;
      padding: 20px;
    }

    .faq-cta {
      padding: 30px 20px;
    }

    .faq-cta h3 {
      font-size: 1.5rem;
    }
  }

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

  #newsletter {
    background: linear-gradient(135deg, hsl(214, 43%, 40%) 0%, hsl(214, 43%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

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

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

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

  .newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    backdrop-filter: blur(10px);
  }

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

  .newsletter-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
  }

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

  .newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .newsletter-input-wrapper {
    flex: 1;
    min-width: 280px;
    position: relative;
  }

  .newsletter-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
  }

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

  .newsletter-input::placeholder {
    color: #999;
    font-size: 0.95rem;
  }

  .newsletter-submit {
    padding: 18px 45px;
    background: hsl(214, 43%, 65%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    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-submit:hover {
    background: hsl(214, 43%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

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

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

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

  .newsletter-benefit svg {
    width: 20px;
    height: 20px;
    fill: hsl(214, 43%, 65%);
    flex-shrink: 0;
  }

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

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

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

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

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

    .newsletter-submit {
      width: 100%;
      padding: 16px 35px;
    }

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

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

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

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

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

.hero-section {
  background-color: #ffffff;
  padding: 80px 0 100px;
  font-family: 'Libre Baskerville', serif;
}

.hero-section h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(214, 43%, 25%);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  color: hsl(214, 43%, 40%);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-section p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hero-image-wrapper {
  margin: 2.5rem 0;
  text-align: center;
}

.hero-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.hero-advantages li {
  color: #333333;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.hero-advantages li::before {
  content: "\F26B";
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: hsl(214, 43%, 40%);
  font-size: 1.2rem;
}

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

.btn-hero-primary {
  background-color: hsl(214, 43%, 40%);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background-color: hsl(214, 43%, 25%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.btn-hero-secondary {
  background-color: transparent;
  color: hsl(214, 43%, 40%);
  border: 2px solid hsl(214, 43%, 40%);
  padding: 12px 30px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background-color: hsl(214, 43%, 40%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 80px;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(214, 43%, 40%) 0%, hsl(214, 43%, 25%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(214, 43%, 65%);
  opacity: 0.08;
  border-radius: 50%;
}

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

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

.offer-heading {
  font-family: 'Quicksand', sans-serif;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Libre Baskerville', serif;
  color: #f8f9fa;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.offer-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.deadline-block {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  border: 3px dashed hsl(214, 43%, 65%);
}

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

.deadline-date {
  font-family: 'Quicksand', sans-serif;
  color: hsl(214, 43%, 25%);
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 50px;
  height: 50px;
  background: hsl(214, 43%, 40%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: hsl(214, 43%, 65%);
  transform: translateX(10px);
}

.benefit-item:hover .benefit-icon {
  background: #ffffff;
  color: hsl(214, 43%, 40%);
}

.benefit-item:hover .benefit-text {
  color: #ffffff;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: hsl(214, 43%, 40%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.benefit-text {
  font-family: 'Libre Baskerville', serif;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
  transition: all 0.3s ease;
}

.discount-highlight {
  background: hsl(214, 43%, 40%);
  color: #ffffff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  margin: 30px 0;
}

.discount-percentage {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.discount-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  opacity: 0.95;
}

.offer-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-offer {
  font-family: 'Quicksand', sans-serif;
  background: hsl(214, 43%, 40%);
  color: #ffffff;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-offer:hover {
  background: hsl(214, 43%, 25%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

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

  .deadline-date {
    font-size: 1.8rem;
    flex-direction: column;
  }

  .discount-percentage {
    font-size: 2.5rem;
  }

  .benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .btn-offer {
    padding: 15px 35px;
    font-size: 1rem;
  }
}

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

  #blog .section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(214, 43%, 25%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

  #blog .blog-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 3px solid hsl(214, 43%, 65%);
  }

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

  #blog .blog-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #777;
    font-family: 'Quicksand', sans-serif;
    flex-wrap: wrap;
  }

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

  #blog .blog-meta i {
    color: hsl(214, 43%, 65%);
  }

  #blog .blog-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: hsl(214, 43%, 25%);
    margin-bottom: 1rem;
    line-height: 1.4;
  }

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

  #blog .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(214, 43%, 40%);
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  #blog .read-more:hover {
    color: hsl(214, 43%, 25%);
    gap: 0.8rem;
  }

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

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

  #blog .view-all-btn {
    display: inline-block;
    padding: 14px 40px;
    background: hsl(214, 43%, 40%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(214, 43%, 40%);
    margin-top: 3rem;
  }

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

  #blog .btn-container {
    text-align: center;
  }

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

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

    #blog .section-subtitle {
      font-size: 1rem;
      margin-bottom: 2.5rem;
    }

    #blog .blog-card {
      margin-bottom: 2rem;
    }

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

    #blog .blog-title {
      font-size: 1.2rem;
    }

    #blog .view-all-btn {
      margin-top: 2rem;
      width: 100%;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

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

  #testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(214, 43%, 40%) 0%, hsl(214, 43%, 65%) 100%);
  }

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

  .testimonials-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(214, 43%, 25%);
    margin-bottom: 15px;
  }

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

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

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

  .testimonial-card.featured {
    border-left-color: hsl(214, 43%, 40%);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  }

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

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

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

  .testimonial-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(214, 43%, 40%) 0%, hsl(214, 43%, 65%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

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

  .author-name {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: hsl(214, 43%, 25%);
    margin-bottom: 3px;
  }

  .author-location {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    color: #777;
  }

  .testimonial-card.compact {
    padding: 25px;
  }

  .testimonial-card.compact .testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .testimonial-card.expanded {
    padding: 35px;
  }

  .testimonial-card.expanded .testimonial-text {
    font-size: 1.05rem;
  }

  .testimonial-highlight {
    background: hsl(214, 43%, 95%);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    color: hsl(214, 43%, 30%);
  }

  .testimonial-highlight strong {
    color: hsl(214, 43%, 25%);
    font-weight: 700;
  }

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

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

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

    .testimonial-card {
      padding: 25px;
    }

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

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

    .author-avatar {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
    }

    .author-name {
      font-size: 1rem;
    }

    .author-location {
      font-size: 0.85rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  #credentials {
    padding: 60px 0;
    background-color: #f8f9fa;
    font-family: 'Libre Baskerville', serif;
  }

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

  #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.08);
  }

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

  #credentials .credential-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }

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

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

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

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

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

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

    #credentials .credential-title {
      font-size: 0.95rem;
    }
  }

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

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

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

  .services-section .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(214, 43%, 25%);
    margin-bottom: 20px;
  }

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

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

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(67, 97, 138, 0.25);
    border-color: hsl(214, 43%, 65%);
  }

  .service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(214, 43%, 40%) 0%, hsl(214, 43%, 25%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, hsl(214, 43%, 65%) 0%, hsl(214, 43%, 40%) 100%);
  }

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

  .service-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(214, 43%, 25%);
    margin-bottom: 18px;
  }

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

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

  .service-price {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(214, 43%, 40%);
  }

  .service-price small {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
  }

  .service-terms {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
  }

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

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

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

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

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

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

.disclaimer-section {
  background: linear-gradient(135deg, hsl(214, 43%, 96%) 0%, hsl(214, 43%, 98%) 100%);
  padding: 80px 0;
  font-family: 'Libre Baskerville', serif;
}

.disclaimer-section .section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(214, 43%, 25%);
  margin-bottom: 1rem;
  text-align: center;
}

.disclaimer-section .icon-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.disclaimer-section .info-icon {
  font-size: 3.5rem;
  color: hsl(214, 43%, 40%);
  opacity: 0.9;
}

.disclaimer-content {
  background: #ffffff;
  border-left: 4px solid hsl(214, 43%, 40%);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

  .disclaimer-section .info-icon {
    font-size: 2.8rem;
  }

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');
  
  :root {
    --primary-color: hsl(214, 43%, 40%);
    --secondary-color: hsl(214, 43%, 25%);
    --accent-color: hsl(214, 43%, 65%);
  }
  
  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: var(--secondary-color);
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 1rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
  }
  
  .policy-intro p {
    color: white;
    margin-bottom: 0;
    font-size: 1.1rem;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }
  
  .contact-box h3 {
    margin-top: 0;
  }
  
  .effective-date {
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }
  
  .policy-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .policy-section:last-child {
    border-bottom: none;
  }
  
  strong {
    color: var(--primary-color);
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');
  
  :root {
    --primary-color: hsl(214, 43%, 40%);
    --secondary-color: hsl(214, 43%, 25%);
    --accent-color: hsl(214, 43%, 65%);
  }
  
  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: var(--secondary-color);
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .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;
    padding-left: 0.75rem;
    border-left: 4px solid var(--primary-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .terms-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .terms-intro p {
    margin-bottom: 0;
    color: white;
    text-align: left;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.25rem;
  }
  
  .effective-date {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }