:root {
            --primary-color: hsl(345, 33%, 38%);
            --secondary-color: hsl(345, 33%, 23%);
            --accent-color: hsl(345, 33%, 63%);
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.4rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Source Sans Pro', sans-serif;
            font-weight: 400;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler-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%28123, 54, 70, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h2 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(345, 33%, 23%);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-section h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(345, 33%, 38%);
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

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

.about-intro {
  background: linear-gradient(135deg, hsl(345, 33%, 38%) 0%, hsl(345, 33%, 23%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
}

.about-intro h2 {
  color: #ffffff;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 0;
}

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

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

.value-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid hsl(345, 33%, 38%);
  transition: transform 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(345, 33%, 23%);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

.stats-row {
  background: #f8f9fa;
  padding: 50px 0;
  margin: 60px 0;
  border-radius: 8px;
}

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

.stat-number {
  font-family: 'Montserrat', sans-serif;
  color: hsl(345, 33%, 38%);
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  color: #333333;
  font-size: 1.1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-intro h2 {
    font-size: 2rem;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
  
  .about-section h3 {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

.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(345, 33%, 38%) 0%, hsl(345, 33%, 63%) 100%);
}

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

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

.portfolio-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: hsl(345, 33%, 38%);
}

.portfolio-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 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  font-family: 'Source Sans Pro', sans-serif;
  padding: 10px 28px;
  border: 2px solid hsl(345, 33%, 38%);
  background: transparent;
  color: hsl(345, 33%, 38%);
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: hsl(345, 33%, 38%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

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

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

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

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}

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

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

.portfolio-category {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.85rem;
  color: hsl(345, 33%, 38%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  background: hsl(345, 33%, 95%);
  padding: 5px 12px;
  border-radius: 20px;
}

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

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

.view-details {
  font-family: 'Source Sans Pro', sans-serif;
  color: hsl(345, 33%, 38%);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.view-details:hover {
  gap: 12px;
  color: hsl(345, 33%, 23%);
}

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

.modal-header {
  background: linear-gradient(135deg, hsl(345, 33%, 38%) 0%, hsl(345, 33%, 23%) 100%);
  color: #fff;
  border: none;
  padding: 25px 30px;
}

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

.modal-body {
  padding: 35px;
}

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

.modal-category {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  background: hsl(345, 33%, 63%);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}

.project-details h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: hsl(345, 33%, 23%);
  margin-bottom: 15px;
  margin-top: 25px;
}

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

.project-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

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

.project-details ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(345, 33%, 38%);
  font-weight: 700;
  font-size: 1.2rem;
}

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

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

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

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

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

  .filter-buttons {
    gap: 10px;
  }

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

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

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

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

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

  .portfolio-description {
    font-size: 0.9rem;
  }
}

#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(345, 33%, 63%, 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(345, 33%, 23%);
    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(345, 33%, 38%);
    border-radius: 2px;
  }

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

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

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

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

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(345, 33%, 63%, 0.3);
  }

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

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

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

  .advantage-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(345, 33%, 23%);
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
  }

  .advantage-card:hover .advantage-title {
    color: hsl(345, 33%, 38%);
  }

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

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

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

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

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

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

    .advantage-icon i {
      font-size: 28px;
    }

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

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

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

    .advantage-card {
      padding: 25px 15px;
    }
  }

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(345, 33%, 38%) 0%, hsl(345, 33%, 63%) 100%);
}

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

.statistics-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(345, 33%, 23%);
    margin-bottom: 15px;
}

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

.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;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(345, 33%, 38%) 0%, hsl(345, 33%, 63%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(345, 33%, 23%);
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
}

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

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

.stat-number {
    animation: countUp 0.8s ease-out;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-section .section-title {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

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

footer {
  background: linear-gradient(135deg, hsl(345, 33%, 23%) 0%, hsl(345, 33%, 28%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  font-family: 'Source Sans Pro', sans-serif;
}

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

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

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

footer a:hover {
  color: hsl(345, 33%, 63%);
  padding-left: 5px;
}

.footer-description {
  max-width: 350px;
  margin-bottom: 1.5rem;
  color: #dee2e6;
}

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

.footer-contact-item i {
  color: hsl(345, 33%, 63%);
  margin-right: 12px;
  margin-top: 3px;
  min-width: 20px;
}

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

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

.footer-links a {
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '›';
  margin-right: 8px;
  color: hsl(345, 33%, 63%);
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #adb5bd;
}

.footer-policies {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-policies a {
  color: #ced4da;
  font-size: 0.9rem;
}

.footer-policies a:hover {
  color: hsl(345, 33%, 63%);
  padding-left: 0;
}

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

.business-hours-list li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
}

.business-hours-list strong {
  color: #ffffff;
  min-width: 100px;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 2rem 0;
  border-top: 3px solid hsl(345, 33%, 38%);
  font-family: 'Source Sans Pro', sans-serif;
}

#cookieNotice h4 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(345, 33%, 23%);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

#cookieNotice p {
  color: #495057;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

.cookie-category h6 {
  font-family: 'Montserrat', sans-serif;
  color: #212529;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

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

.cookie-category .badge {
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  margin-left: 8px;
  font-weight: 500;
}

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

.cookie-buttons .btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: none;
}

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

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

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

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

.btn-manage {
  background: transparent;
  color: hsl(345, 33%, 38%);
  border: 2px solid hsl(345, 33%, 38%);
}

.btn-manage:hover {
  background: hsl(345, 33%, 38%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

  footer h5 {
    margin-top: 2rem;
  }

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

  .footer-description {
    max-width: 100%;
  }

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

  .cookie-buttons .btn {
    width: 100%;
  }

  #cookieNotice {
    padding: 1.5rem 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(345, 33%, 38%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Montserrat, sans-serif; color: hsl(345, 33%, 23%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(345, 33%, 38%); }
.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(345, 33%, 23%); font-family: Montserrat, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(345, 33%, 23%); font-family: Montserrat, sans-serif; }
.blog-article a { color: hsl(345, 33%, 38%); }
.blog-article a:hover { color: hsl(345, 33%, 63%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(345, 33%, 38%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

.contact-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: hsl(345, 33%, 23%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid hsl(345, 33%, 38%);
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(345, 33%, 38%) 0%, hsl(345, 33%, 23%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.3rem;
}

.contact-info-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: hsl(345, 33%, 23%);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #555;
    margin-bottom: 0.3rem;
    line-height: 1.6;
}

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

.contact-info-item a:hover {
    color: hsl(345, 33%, 63%);
}

.contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: hsl(345, 33%, 23%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #333;
    background-color: #ffffff;
}

.form-control:focus, .form-select:focus {
    border-color: hsl(345, 33%, 38%);
    box-shadow: 0 0 0 0.2rem rgba(143, 68, 79, 0.15);
    outline: none;
}

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

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

.btn-submit {
    background: linear-gradient(135deg, hsl(345, 33%, 38%) 0%, hsl(345, 33%, 23%) 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(143, 68, 79, 0.3);
    background: linear-gradient(135deg, hsl(345, 33%, 43%) 0%, hsl(345, 33%, 28%) 100%);
    color: #ffffff;
}

.required-mark {
    color: hsl(345, 33%, 38%);
    margin-left: 3px;
}

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

.hours-list li {
    color: #555;
    padding: 0.4rem 0;
    display: flex;
    justify-content: space-between;
}

.hours-list li strong {
    color: #333;
}

.map-container {
    margin-top: 4rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-placeholder {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    border: 2px solid #dee2e6;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .btn-submit {
        padding: 0.875rem 2rem;
    }
}

@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(345, 33%, 38%);
    --secondary-color: hsl(345, 33%, 23%);
    --accent-color: hsl(345, 33%, 63%);
  }
  
  .policy-content {
    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: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    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: 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;
    font-size: 1.05rem;
  }
  
  .policy-content strong {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .info-box {
    background: linear-gradient(135deg, rgba(145, 61, 76, 0.05) 0%, rgba(145, 61, 76, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-info {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
  }
  
  .contact-info h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-info a {
    color: var(--accent-color);
  }
  
  .contact-info a:hover {
    color: white;
  }
  
  .last-updated {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
  }
  
  .cookie-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }

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

.faq-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(345, 33%, 23%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.faq-section .section-subtitle {
  color: #666;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
  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: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.faq-accordion .accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: hsl(345, 33%, 23%);
  background-color: #ffffff;
  padding: 20px 25px;
  border: none;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: hsl(345, 33%, 38%);
  color: #ffffff;
  box-shadow: none;
}

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

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23693541'%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;
}

.faq-accordion .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");
}

.faq-accordion .accordion-body {
  padding: 25px;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  background-color: #ffffff;
}

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

.faq-number {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: hsl(345, 33%, 63%);
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 0.85rem;
  margin-right: 12px;
  font-weight: 600;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-number {
  background: #ffffff;
  color: hsl(345, 33%, 38%);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-section h2 {
    font-size: 2rem;
  }
  
  .faq-accordion .accordion-button {
    font-size: 0.95rem;
    padding: 15px 18px;
  }
  
  .faq-accordion .accordion-body {
    padding: 20px;
    font-size: 0.95rem;
  }
  
  .faq-number {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 0.75rem;
    margin-right: 10px;
  }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(345, 33%, 38%) 0%, hsl(345, 33%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    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;
}

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

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

.newsletter-email-input:focus {
    outline: none;
    border-color: hsl(345, 33%, 63%);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit-btn {
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(345, 33%, 63%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    background: hsl(345, 33%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.newsletter-benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(345, 33%, 63%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

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

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

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

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

    .newsletter-submit-btn {
        width: 100%;
        padding: 14px 30px;
    }

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

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

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

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

.hero-section {
    background: linear-gradient(135deg, hsl(345, 33%, 98%) 0%, hsl(345, 33%, 95%) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
  }

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

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

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

  .hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: hsl(345, 33%, 23%);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

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

  .hero-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: justify;
  }

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

  .hero-advantages li {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.05rem;
    color: #222;
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

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

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

  .hero-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }

  .hero-image-wrapper:hover {
    transform: translateY(-10px);
  }

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

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

  .hero-btn-primary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: hsl(345, 33%, 38%);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(345, 33%, 38%);
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

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

  .hero-btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: transparent;
    color: hsl(345, 33%, 38%);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(345, 33%, 38%);
    font-size: 1.05rem;
  }

  .hero-btn-secondary:hover {
    background: hsl(345, 33%, 38%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(345, 33%, 23%);
  margin-bottom: 15px;
}

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

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

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

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(345, 33%, 38%) 0%, hsl(345, 33%, 23%) 100%);
  border-left: 4px solid hsl(345, 33%, 63%);
}

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

.testimonial-card.compact {
  padding: 25px;
  border-left-width: 3px;
}

.testimonial-card.detailed {
  padding: 35px;
  background: #fafbfc;
}

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

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

.rating-stars i.empty {
  color: #e0e0e0;
}

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

.testimonial-text.short {
  font-size: 1.05rem;
  font-weight: 500;
  color: hsl(345, 33%, 23%);
}

.testimonial-text.long {
  font-size: 0.98rem;
  line-height: 1.8;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(345, 33%, 63%) 0%, hsl(345, 33%, 38%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
}

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

.customer-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(345, 33%, 23%);
  margin-bottom: 3px;
}

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

.customer-location i {
  font-size: 0.85rem;
  color: hsl(345, 33%, 63%);
}

.review-date {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.85rem;
  color: #999;
  margin-top: 5px;
}

.testimonial-badge {
  display: inline-block;
  background: hsl(345, 33%, 63%);
  color: #ffffff;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quote-icon {
  font-size: 2.5rem;
  color: hsl(345, 33%, 63%, 0.2);
  margin-bottom: 15px;
  line-height: 1;
}

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

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

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

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

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

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

.blog-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(345, 33%, 38%) 0%, hsl(345, 33%, 63%) 100%);
}

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

.blog-preview .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(345, 33%, 23%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.blog-preview .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: hsl(345, 33%, 38%);
}

.blog-preview .section-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-top: 25px;
}

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

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

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

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

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

.blog-card-meta {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.blog-badge {
    background: hsl(345, 33%, 38%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.blog-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(345, 33%, 23%);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: hsl(345, 33%, 23%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: hsl(345, 33%, 38%);
}

.blog-card-excerpt {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.9rem;
    color: #777;
}

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

.blog-date i {
    color: hsl(345, 33%, 38%);
}

.blog-reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-reading-time i {
    color: hsl(345, 33%, 63%);
}

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

.btn-view-all {
    font-family: 'Montserrat', sans-serif;
    background: hsl(345, 33%, 38%);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid hsl(345, 33%, 38%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

    .blog-preview .section-header {
        margin-bottom: 40px;
    }

    .blog-cta {
        margin-top: 40px;
    }
}

.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: hsl(345, 33%, 23%);
  margin-bottom: 15px;
}

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

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: hsl(345, 33%, 63%);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(345, 33%, 38%) 0%, hsl(345, 33%, 23%) 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 {
  background: linear-gradient(135deg, hsl(345, 33%, 63%) 0%, hsl(345, 33%, 38%) 100%);
  transform: rotate(360deg);
}

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

.service-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: hsl(345, 33%, 23%);
  margin-bottom: 15px;
}

.service-description {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  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: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(345, 33%, 38%);
}

.service-price-label {
  font-size: 0.85rem;
  color: #777;
  display: block;
  margin-bottom: 5px;
}

.service-terms {
  font-size: 0.85rem;
  color: #666;
  background: #f8f9fa;
  padding: 8px 15px;
  border-radius: 20px;
}

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

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

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

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

.credentials-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.credential-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 20px;
}

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

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

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

@media (max-width: 767px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .credential-card {
    padding: 20px 15px;
  }
}

.promo-offer-section {
  background: linear-gradient(135deg, hsl(345, 33%, 38%) 0%, hsl(345, 33%, 23%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(345, 33%, 63%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.offer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: #f8f9fa;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.deadline-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin: 50px 0;
  text-align: center;
}

.deadline-label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: #f8f9fa;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deadline-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: hsl(345, 33%, 63%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, hsl(345, 33%, 38%), hsl(345, 33%, 63%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #fff;
}

.benefit-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

.benefit-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.discount-highlight {
  display: inline-block;
  background: hsl(345, 33%, 63%);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.offer-cta-btn {
  display: inline-block;
  background: #fff;
  color: hsl(345, 33%, 38%);
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.offer-cta-btn:hover {
  background: hsl(345, 33%, 63%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .offer-title {
    font-size: 36px;
  }
  
  .deadline-date {
    font-size: 40px;
    flex-direction: column;
    gap: 15px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .discount-highlight {
    font-size: 24px;
    padding: 12px 25px;
  }
}

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

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

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(345, 33%, 38%) 0%, hsl(345, 33%, 23%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.disclaimer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(345, 33%, 23%);
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

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

.disclaimer-text strong {
  color: hsl(345, 33%, 38%);
  font-weight: 600;
}

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

@media (max-width: 480px) {
  .disclaimer-title {
    font-size: 1.75rem;
  }
  
  .disclaimer-container {
    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(345, 33%, 38%);
    --secondary-color: hsl(345, 33%, 23%);
    --accent-color: hsl(345, 33%, 63%);
  }

  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: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }

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

  .policy-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    color: var(--secondary-color);
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    color: var(--primary-color);
  }

  .policy-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    font-weight: 400;
  }

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

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

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

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

  .policy-intro {
    background: linear-gradient(135deg, rgba(142, 58, 75, 0.05) 0%, rgba(142, 58, 75, 0.02) 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    margin-bottom: 3rem;
  }

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

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

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

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

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

  .policy-section {
    margin-bottom: 2.5rem;
  }

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(345, 33%, 38%);
    --secondary-color: hsl(345, 33%, 23%);
    --accent-color: hsl(345, 33%, 63%);
  }
  
  .policy-content {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--primary-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: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
  }
  
  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
    padding: 0;
  }
  
  .effective-date {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0.25rem;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 2rem 0;
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--secondary-color);
  }
  
  .section-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    text-align: center;
    line-height: 2rem;
    margin-right: 0.5rem;
    font-size: 0.9rem;
  }

:root {
    --primary-color: hsl(345, 33%, 38%);
    --secondary-color: hsl(345, 33%, 23%);
    --accent-color: hsl(345, 33%, 63%);
  }

  .thank-you-section {
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(145, 71, 82, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  }

  .thank-you-container {
    max-width: 650px;
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(145, 71, 82, 0.12);
  }

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
  }

  .success-icon {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .checkmark-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 0.8s ease-out 0.3s forwards;
  }

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

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

  .thank-you-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .thank-you-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 25px;
  }

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

  .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 35px 0;
  }

  .info-card {
    background: linear-gradient(135deg, rgba(145, 71, 82, 0.05), rgba(145, 71, 82, 0.02));
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid rgba(145, 71, 82, 0.1);
  }

  .info-card-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
  }

  .info-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
  }

  .info-card-text {
    font-size: 0.9rem;
    color: #666;
  }

  .home-button {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 20px;
  }

  .home-button:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(145, 71, 82, 0.3);
  }

  @media (max-width: 768px) {
    .thank-you-container {
      padding: 40px 25px;
    }

    .thank-you-heading {
      font-size: 2.2rem;
    }

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

    .thank-you-message {
      font-size: 1rem;
    }

    .info-cards {
      grid-template-columns: 1fr;
      gap: 15px;
    }

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

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