:root {
            --primary-color: hsl(125, 45%, 39%);
            --secondary-color: hsl(125, 45%, 24%);
            --accent-color: hsl(125, 45%, 64%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', 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: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(72, 127, 72, 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(125, 45%, 39%)' 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: #ffffff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

  #about {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  #about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, hsla(125, 45%, 64%, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }

  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

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

  .about-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(125, 45%, 24%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
  }

  .about-text {
    padding: 20px;
  }

  .about-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: hsl(125, 45%, 39%);
    margin-bottom: 25px;
  }

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

  .about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
  }

  .about-image:hover {
    transform: translateY(-8px);
  }

  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
  }

  .values-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
  }

  .values-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(125, 45%, 24%);
    text-align: center;
    margin-bottom: 45px;
  }

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

  .value-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px 25px;
    border-radius: 12px;
    border-left: 5px solid hsl(125, 45%, 39%);
    transition: all 0.3s ease;
  }

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

  .value-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(125, 45%, 39%);
    margin-bottom: 15px;
  }

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

  .mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
  }

  .mission-box, .vision-box {
    background: linear-gradient(135deg, hsl(125, 45%, 39%) 0%, hsl(125, 45%, 24%) 100%);
    padding: 45px 35px;
    border-radius: 15px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }

  .mission-box::before, .vision-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .mission-box h4, .vision-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .mission-box p, .vision-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    margin: 0;
  }

  @media (max-width: 992px) {
    .about-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .mission-vision {
      grid-template-columns: 1fr;
      gap: 30px;
    }

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

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

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

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

    .about-header p {
      font-size: 1.1rem;
    }

    .about-text h3 {
      font-size: 1.6rem;
    }

    .values-section {
      padding: 40px 25px;
    }

    .values-section h3 {
      font-size: 1.8rem;
    }

    .mission-box, .vision-box {
      padding: 35px 25px;
    }
  }

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

.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(125, 45%, 39%), hsl(125, 45%, 64%));
}

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

.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: hsl(125, 45%, 39%);
}

.section-header p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 30px auto 0;
  line-height: 1.7;
}

.filter-buttons {
  text-align: center;
  margin-bottom: 50px;
}

.filter-btn {
  font-family: 'Source Sans Pro', sans-serif;
  background: transparent;
  border: 2px solid hsl(125, 45%, 39%);
  color: hsl(125, 45%, 39%);
  padding: 10px 28px;
  margin: 8px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background: hsl(125, 45%, 39%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(72, 125, 72, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 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.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
  cursor: pointer;
}

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

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

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

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(72, 125, 72, 0.95), rgba(45, 77, 45, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.overlay-content {
  text-align: center;
  padding: 20px;
}

.view-details {
  background: #fff;
  color: hsl(125, 45%, 39%);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-details:hover {
  background: hsl(125, 45%, 64%);
  color: #fff;
  transform: scale(1.05);
}

.portfolio-content {
  padding: 25px;
}

.portfolio-category {
  display: inline-block;
  background: hsl(125, 45%, 95%);
  color: hsl(125, 45%, 24%);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.3;
}

.portfolio-content p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

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

.modal-header {
  background: linear-gradient(135deg, hsl(125, 45%, 39%), hsl(125, 45%, 24%));
  color: #fff;
  border: none;
  padding: 25px 30px;
}

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

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

.modal-body {
  padding: 35px;
}

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

.modal-category {
  display: inline-block;
  background: hsl(125, 45%, 95%);
  color: hsl(125, 45%, 24%);
  padding: 8px 20px;
  border-radius: 25px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.modal-body p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.modal-body ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.modal-body ul li {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #555;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.modal-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(125, 45%, 39%);
  font-weight: 700;
  font-size: 1.2rem;
}

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

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

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

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

  .filter-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin: 5px;
  }

  .portfolio-image {
    height: 240px;
  }

  .modal-body {
    padding: 25px;
  }

  .modal-header .modal-title {
    font-size: 1.5rem;
  }
}

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

  .portfolio-content h3 {
    font-size: 1.2rem;
  }

  .filter-buttons {
    margin-bottom: 35px;
  }
}

#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(125, 45%, 64%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  #advantages .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(125, 45%, 24%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  #advantages .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(125, 45%, 39%);
    border-radius: 2px;
  }

  #advantages .section-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.6;
  }

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

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

  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: hsl(125, 45%, 64%);
  }

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

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

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

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

  #advantages .advantage-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(125, 45%, 24%);
    margin-bottom: 18px;
    text-align: center;
  }

  #advantages .advantage-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

  #advantages .row {
    row-gap: 30px;
  }

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

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

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

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

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');

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

#statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(125, 45%, 39%), hsl(125, 45%, 64%));
}

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

.statistics-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.statistics-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(125, 45%, 39%);
}

.statistics-header p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
}

.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(125, 45%, 39%, 0.1);
    height: 100%;
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(125, 45%, 39%), hsl(125, 45%, 64%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    width: 85px;
    height: 85px;
    border: 2px solid hsl(125, 45%, 64%);
    border-radius: 50%;
    opacity: 0.3;
}

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.3rem;
    color: hsl(125, 45%, 24%);
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    line-height: 1.5;
}

.stat-context {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

@media (max-width: 768px) {
    #statistics {
        padding: 60px 0;
    }
    
    .statistics-header h2 {
        font-size: 2rem;
    }
    
    .statistics-header p {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon::before {
        width: 75px;
        height: 75px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
}

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

footer {
  background: linear-gradient(135deg, hsl(125, 45%, 24%) 0%, hsl(125, 45%, 39%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  margin-top: 80px;
  font-family: 'Source Sans Pro', sans-serif;
}

footer h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

footer p, footer ul, footer li, footer a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

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

footer a:hover {
  color: hsl(125, 45%, 64%);
  transform: translateX(3px);
}

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

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

.footer-description {
  margin-bottom: 25px;
  line-height: 1.7;
}

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

.contact-info-item i {
  color: hsl(125, 45%, 64%);
  margin-right: 12px;
  margin-top: 3px;
  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: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  display: block;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 25px 0;
  border-top: 3px solid hsl(125, 45%, 39%);
  animation: slideUp 0.4s ease-out;
}

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

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

.cookie-notice-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.cookie-notice-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

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

.cookie-category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

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

.cookie-category-icon {
  color: hsl(125, 45%, 39%);
  margin-right: 10px;
  margin-top: 2px;
  font-weight: 700;
}

.cookie-category-name {
  font-weight: 600;
  color: #333;
  margin-right: 5px;
}

.cookie-category-desc {
  color: #666;
}

.cookie-category-required {
  font-size: 0.8rem;
  color: #999;
  font-style: italic;
  margin-left: 5px;
}

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

.btn-cookie-accept {
  background: hsl(125, 45%, 39%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Source Sans Pro', sans-serif;
}

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

.btn-cookie-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Source Sans Pro', sans-serif;
}

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

.btn-cookie-settings {
  background: transparent;
  color: hsl(125, 45%, 39%);
  border: 2px solid hsl(125, 45%, 39%);
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-cookie-settings:hover {
  background: hsl(125, 45%, 39%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

  footer h5 {
    margin-top: 25px;
    font-size: 1rem;
  }

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

  .cookie-notice-title {
    font-size: 1.1rem;
  }

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

  .btn-cookie-accept,
  .btn-cookie-reject,
  .btn-cookie-settings {
    width: 100%;
    text-align: center;
  }

  #cookieNotice {
    padding: 20px 0;
  }
}

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

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

.contact-section {
  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: 500px;
  height: 500px;
  background: hsl(125, 45%, 64%);
  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: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  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: 4px;
  background: hsl(125, 45%, 39%);
  border-radius: 2px;
}

.contact-header p {
  font-family: 'Source Sans Pro', sans-serif;
  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 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
}

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

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

.contact-form .form-control:focus {
  border-color: hsl(125, 45%, 39%);
  box-shadow: 0 0 0 0.2rem rgba(76, 138, 76, 0.15);
  outline: none;
}

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

.contact-form .btn-submit {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 40px;
  background: hsl(125, 45%, 39%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.contact-form .btn-submit:hover {
  background: hsl(125, 45%, 24%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 138, 76, 0.3);
}

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

.contact-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  border-left: 4px solid hsl(125, 45%, 39%);
  transition: all 0.3s ease;
}

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

.contact-info-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info-card h4 i {
  color: hsl(125, 45%, 39%);
  font-size: 1.4rem;
}

.contact-info-card p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.8;
}

.contact-info-card a {
  color: hsl(125, 45%, 39%);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact-info-card a:hover {
  color: hsl(125, 45%, 24%);
  text-decoration: underline;
}

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

.working-hours-list li {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
}

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

.working-hours-list li strong {
  color: #333;
  font-weight: 600;
}

.deadline-notice {
  background: linear-gradient(135deg, hsl(125, 45%, 39%) 0%, hsl(125, 45%, 24%) 100%);
  color: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 25px;
}

.deadline-notice h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.deadline-notice p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.95;
}

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-header h2 {
    font-size: 2.2rem;
  }
  
  .contact-form-wrapper {
    padding: 35px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-header p {
    font-size: 1rem;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
  
  .contact-info-card {
    padding: 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

  :root {
    --primary-color: hsl(125, 45%, 39%);
    --secondary-color: hsl(125, 45%, 24%);
    --accent-color: hsl(125, 45%, 64%);
  }

  body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.8;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
  }

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

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

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    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;
  }

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

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

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

  .info-box {
    background-color: rgba(125, 186, 125, 0.1);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

  .contact-info {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }

  .contact-info h3 {
    color: white;
    margin-bottom: 1.5rem;
  }

  .contact-info a {
    color: white;
    text-decoration: underline;
  }

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

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-top: 1rem;
  }

  .cookie-table {
    margin: 2rem 0;
  }

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

  .cookie-table td {
    vertical-align: middle;
  }

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

  .faq-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

  .faq-section .section-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.125rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(125, 45%, 39%);
    color: #ffffff;
  }

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

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

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

  .faq-accordion .accordion-body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    padding: 1.75rem;
    background: #fafafa;
  }

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

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

  .faq-accordion .accordion-body strong {
    color: hsl(125, 45%, 24%);
    font-weight: 600;
  }

  .faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, hsl(125, 45%, 39%) 0%, hsl(125, 45%, 24%) 100%);
    border-radius: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
  }

  .faq-cta p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.125rem;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
  }

  .faq-cta .btn-contact {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(125, 45%, 24%);
    background: #ffffff;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .faq-cta .btn-contact:hover {
    background: hsl(125, 45%, 64%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

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

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

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

    .faq-accordion .accordion-body {
      font-size: 0.9375rem;
      padding: 1.25rem;
    }

    .faq-cta {
      padding: 2rem 1.5rem;
    }

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(125, 45%, 39%) 0%, hsl(125, 45%, 24%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.newsletter-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.newsletter-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.125rem;
    color: #f8f9fa;
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.form-group-newsletter {
    position: relative;
    margin-bottom: 20px;
}

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

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

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-submit {
    width: 100%;
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(125, 45%, 64%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-submit:hover {
    background: hsl(125, 45%, 54%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

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

    .newsletter-input,
    .newsletter-submit {
        padding: 16px 20px;
    }

    .newsletter-submit {
        font-size: 1rem;
    }

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

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

    .newsletter-description {
        font-size: 0.95rem;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Source+Sans+Pro:wght@400;600&display=swap');

.hero-section {
  background-color: #ffffff;
  padding: 80px 0 60px;
  font-family: 'Source Sans Pro', sans-serif;
}

.hero-section h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: #222;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: hsl(125, 45%, 39%);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero-section .description {
  font-size: 1.125rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

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

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

.hero-advantages li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: hsl(125, 45%, 39%);
  font-size: 1.3rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-hero-primary {
  background-color: hsl(125, 45%, 39%);
  color: #ffffff;
  padding: 14px 32px;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Source Sans Pro', sans-serif;
}

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

.btn-hero-secondary {
  background-color: transparent;
  color: hsl(125, 45%, 39%);
  padding: 14px 32px;
  font-size: 1.125rem;
  font-weight: 600;
  border: 2px solid hsl(125, 45%, 39%);
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-hero-secondary:hover {
  background-color: hsl(125, 45%, 39%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.hero-image-container {
  width: 100%;
  margin-top: 2rem;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

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

.blog-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(125, 45%, 24%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  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;
}

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

.blog-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

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

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #777;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: hsl(125, 45%, 39%);
}

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

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

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(125, 45%, 39%);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
  font-size: 1rem;
}

.blog-read-more:hover {
  color: hsl(125, 45%, 24%);
  gap: 12px;
}

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

.blog-view-all .btn {
  background: hsl(125, 45%, 39%);
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: 'Montserrat', sans-serif;
}

.blog-view-all .btn:hover {
  background: hsl(125, 45%, 24%);
  transform: scale(1.05);
}

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

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

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

  .blog-card-body {
    padding: 25px;
  }

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

.offer-section {
  font-family: 'Source Sans Pro', sans-serif;
  background: linear-gradient(135deg, hsl(125, 45%, 39%) 0%, hsl(125, 45%, 24%) 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, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

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

.offer-description {
  font-size: 1.15rem;
  color: #f8f9fa;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.deadline-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  margin: 50px auto;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 3px solid hsl(125, 45%, 64%);
}

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

.deadline-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: hsl(125, 45%, 24%);
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  fill: hsl(125, 45%, 39%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 50px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  border-color: hsl(125, 45%, 64%);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: hsl(125, 45%, 64%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon i {
  font-size: 1.5rem;
  color: #222;
}

.benefit-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.benefit-text {
  font-size: 1rem;
  color: #f8f9fa;
  line-height: 1.6;
  margin: 0;
}

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

.offer-cta-btn {
  display: inline-block;
  background: #fff;
  color: hsl(125, 45%, 24%);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 20px 60px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 3px solid transparent;
}

.offer-cta-btn:hover {
  background: hsl(125, 45%, 64%);
  color: #222;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  border-color: #fff;
}

.discount-highlight {
  background: linear-gradient(135deg, #fff 0%, hsl(125, 45%, 64%) 100%);
  color: hsl(125, 45%, 24%);
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  padding: 30px;
  border-radius: 20px;
  display: inline-block;
  margin: 30px 0;
  box-shadow: 0 15px 50px rgba(0,0,0,0.25);
  line-height: 1;
}

@media (max-width: 768px) {
  .offer-heading {
    font-size: 2.2rem;
  }
  
  .deadline-date {
    font-size: 2.5rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .calendar-icon {
    width: 45px;
    height: 45px;
  }
  
  .discount-highlight {
    font-size: 2.8rem;
    padding: 20px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .deadline-box {
    padding: 25px;
  }
  
  .offer-cta-btn {
    font-size: 1.1rem;
    padding: 16px 40px;
  }
}

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

.credentials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsla(125, 45%, 64%, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.credentials-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(125, 45%, 39%, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.credentials-section .section-header {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
  z-index: 1;
}

.credentials-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.credentials-section .section-subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.credential-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.credential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: hsl(125, 45%, 64%);
}

.credential-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, hsl(125, 45%, 39%) 0%, hsl(125, 45%, 49%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.credential-card:hover .credential-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, hsl(125, 45%, 49%) 0%, hsl(125, 45%, 39%) 100%);
}

.credential-icon i {
  font-size: 28px;
  color: #ffffff;
}

.credential-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.3;
}

.credential-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.9rem;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .credentials-section {
    padding: 50px 0;
  }
  
  .credentials-section .section-title {
    font-size: 1.9rem;
  }
  
  .credential-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-section .section-title {
    font-size: 1.7rem;
  }
  
  .credentials-section .section-subtitle {
    font-size: 1rem;
  }
  
  .credential-card {
    padding: 24px 18px;
  }
  
  .credential-icon {
    width: 50px;
    height: 50px;
  }
  
  .credential-icon i {
    font-size: 24px;
  }
}

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

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

.services-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.services-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(125, 45%, 39%);
    border-radius: 2px;
}

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

.services-section .deadline-notice {
    background: linear-gradient(135deg, hsl(125, 45%, 39%) 0%, hsl(125, 45%, 24%) 100%);
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    margin: 30px auto 0;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.services-section .deadline-notice h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.services-section .deadline-notice p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 28px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(125, 45%, 39%) 0%, hsl(125, 45%, 64%) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: hsl(125, 45%, 64%);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(125, 45%, 39%) 0%, hsl(125, 45%, 24%) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, hsl(125, 45%, 24%) 0%, hsl(125, 45%, 39%) 100%);
}

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

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.3;
}

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

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

.service-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(125, 45%, 39%);
}

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

.services-cta {
    text-align: center;
    margin-top: 60px;
}

.services-cta .btn-primary {
    background: linear-gradient(135deg, hsl(125, 45%, 39%) 0%, hsl(125, 45%, 24%) 100%);
    border: none;
    color: #ffffff;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    font-family: 'Montserrat', sans-serif;
}

.services-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, hsl(125, 45%, 24%) 0%, hsl(125, 45%, 39%) 100%);
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 25px;
    }
    
    .deadline-notice {
        margin: 20px 15px 0;
    }
}

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

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(125, 45%, 64%, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(125, 45%, 39%, 0.08);
  border-radius: 50%;
  z-index: 0;
}

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

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

.section-header-testimonials h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.section-header-testimonials p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

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

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-color: hsl(125, 45%, 64%);
}

.testimonial-card-featured {
  background: linear-gradient(135deg, hsl(125, 45%, 39%) 0%, hsl(125, 45%, 24%) 100%);
  color: #ffffff;
  border: none;
}

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

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

.testimonial-card-featured .customer-location {
  color: hsl(125, 45%, 85%);
}

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

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: hsl(125, 45%, 64%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card-featured .customer-avatar {
  background: #ffffff;
  color: hsl(125, 45%, 39%);
}

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

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

.customer-location {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

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

.star-empty {
  color: #ddd;
}

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

.testimonial-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  flex-grow: 1;
  margin-bottom: 20px;
}

.testimonial-date {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
  margin-top: auto;
}

.testimonial-card-featured .testimonial-date {
  color: hsl(125, 45%, 80%);
}

.testimonial-compact {
  padding: 25px;
}

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

.testimonial-detailed {
  padding: 40px;
  background: #f8f9fa;
  border-left: 5px solid hsl(125, 45%, 39%);
}

.testimonial-quote {
  position: relative;
  padding-left: 30px;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: hsl(125, 45%, 64%);
  font-family: Georgia, serif;
  line-height: 1;
}

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

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: hsl(125, 45%, 95%);
  color: hsl(125, 45%, 30%);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 15px;
}

.testimonial-card-featured .verified-badge {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}

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

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

.disclaimer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(125, 179, 133, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.disclaimer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(125, 179, 133, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.disclaimer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(125, 45%, 39%) 0%, hsl(125, 45%, 34%) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(71, 120, 79, 0.25);
  animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(71, 120, 79, 0.25);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(71, 120, 79, 0.35);
  }
}

.disclaimer-icon i {
  font-size: 38px;
  color: #ffffff;
}

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

.disclaimer-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(125, 179, 133, 0.15);
  position: relative;
}

.disclaimer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(125, 45%, 39%) 0%, hsl(125, 45%, 64%) 100%);
  border-radius: 16px 16px 0 0;
}

.disclaimer-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  text-align: left;
  margin: 0;
}

.disclaimer-text strong {
  color: hsl(125, 45%, 34%);
  font-weight: 600;
}

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

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

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

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');
  
  :root {
    --primary-color: hsl(125, 45%, 39%);
    --secondary-color: hsl(125, 45%, 24%);
    --accent-color: hsl(125, 45%, 64%);
  }
  
  body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    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);
    position: relative;
    padding-left: 15px;
  }
  
  .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.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }
  
  .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;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 10px;
  }
  
  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
    padding: 0;
  }
  
  .last-updated {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 5px;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 2px solid var(--accent-color);
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--secondary-color);
  }
  
  .info-highlight {
    background-color: rgba(125, 185, 99, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
  }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

  :root {
    --primary-color: hsl(125, 45%, 39%);
    --secondary-color: hsl(125, 45%, 24%);
    --accent-color: hsl(125, 45%, 64%);
  }

  body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.8;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
  }

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

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

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

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

  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }

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

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

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

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

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

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

  .intro-box p {
    margin-bottom: 0;
    font-size: 1.1rem;
  }

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

  .effective-date {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1rem;
  }

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');

:root {
  --primary: hsl(125, 45%, 39%);
  --secondary: hsl(125, 45%, 24%);
  --accent: hsl(125, 45%, 64%);
}

.thank-you-section {
  font-family: 'Source Sans Pro', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(125, 45%, 97%) 0%, hsl(125, 25%, 95%) 100%);
  padding: 2rem 1rem;
}

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

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

.success-icon svg {
  width: 60px;
  height: 60px;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  animation: checkmark 0.6s ease-out 0.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 checkmark {
  to {
    stroke-dashoffset: 0;
  }
}

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

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

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

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

.thank-you-message p:last-child {
  margin-bottom: 0;
}

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

.info-box {
  background: hsl(125, 45%, 97%);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  text-align: left;
}

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

.info-box-text {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 600;
  display: inline;
  vertical-align: middle;
}

.btn-home {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 0.875rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

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

@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: 50px;
    height: 50px;
  }
}