:root {
            --primary-color: hsl(1, 51%, 32%);
            --secondary-color: hsl(1, 51%, 17%);
            --accent-color: hsl(1, 51%, 57%);
        }
        
        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: #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: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            font-family: 'Source Sans Pro', sans-serif;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(142, 49, 37, 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='rgba%28142, 49, 37, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

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

  #about .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(1, 51%, 32%);
    margin-bottom: 20px;
  }

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

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

  #about .content-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(1, 51%, 17%);
    margin-bottom: 20px;
  }

  #about .content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
  }

  #about .image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    margin-bottom: 30px;
  }

  #about .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }

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

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

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

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

  #about .value-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(1, 51%, 32%);
    margin-bottom: 12px;
  }

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

  #about .highlight-box {
    background: linear-gradient(135deg, hsl(1, 51%, 32%) 0%, hsl(1, 51%, 17%) 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
  }

  #about .highlight-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
  }

  #about .highlight-box p {
    font-size: 1.05rem;
    color: #f8f9fa;
    line-height: 1.8;
    margin: 0;
  }

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

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

    #about .content-block h3 {
      font-size: 1.5rem;
    }

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

    #about .highlight-box {
      padding: 30px 20px;
    }
  }

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

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

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

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

.portfolio-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.filter-btn:hover,
.filter-btn.active {
    background: hsl(1, 51%, 32%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.view-details-btn {
    padding: 12px 30px;
    background: hsl(1, 51%, 57%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-item:hover .view-details-btn {
    transform: translateY(0);
}

.view-details-btn:hover {
    background: hsl(1, 51%, 32%);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-category {
    display: inline-block;
    padding: 5px 15px;
    background: hsl(1, 51%, 57%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.portfolio-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.modal-header {
    background: linear-gradient(135deg, hsl(1, 51%, 32%) 0%, hsl(1, 51%, 17%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
    border: none;
}

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

.modal-body {
    padding: 30px;
}

.modal-project-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
}

.modal-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: hsl(1, 51%, 57%);
    color: #fff;
    font-weight: 600;
    border-radius: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

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

.project-details-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.project-details-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 1rem;
}

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

.project-details-list strong {
    color: hsl(1, 51%, 32%);
    font-weight: 600;
    margin-right: 10px;
}

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

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-section .section-title {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-image {
        height: 280px;
    }
    
    .modal-project-image {
        height: 300px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .portfolio-section .section-title {
        font-size: 1.75rem;
    }
    
    .portfolio-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 7px 16px;
        font-size: 0.8rem;
    }
}

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

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

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

#advantages .section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(1, 51%, 17%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

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

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

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

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

#advantages .advantage-card:hover {
    transform: translateY(-8px);
    border-color: hsl(1, 51%, 57%);
    box-shadow: 0 12px 35px rgba(142, 49, 37, 0.15);
}

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

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

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

#advantages .advantage-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: hsl(1, 51%, 17%);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

#advantages .advantage-card:hover h3 {
    color: hsl(1, 51%, 32%);
}

#advantages .advantage-card p {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    #advantages {
        padding: 60px 0;
    }
    
    #advantages .section-header h2 {
        font-size: 2rem;
    }
    
    #advantages .advantage-card {
        margin-bottom: 25px;
        padding: 30px 20px;
    }
}

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

.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(1, 51%, 32%), hsl(1, 51%, 57%), hsl(1, 51%, 32%));
}

.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(1, 51%, 17%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.statistics-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(1, 51%, 57%);
}

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

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

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(1, 51%, 57%);
}

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

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(1, 51%, 32%);
    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.85rem;
    color: #888;
    font-style: italic;
}

@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: 1.75rem;
    }
}

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

footer {
  background: linear-gradient(135deg, hsl(1, 51%, 17%) 0%, hsl(1, 51%, 32%) 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: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

footer a:hover {
  color: hsl(1, 51%, 57%);
  padding-left: 5px;
}

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

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

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

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

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

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

#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(1, 51%, 57%);
  animation: slideUp 0.4s ease-out;
}

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

.cookie-content h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(1, 51%, 17%);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

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

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

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #dee2e6;
}

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

.cookie-category-name {
  font-weight: 600;
  color: #333333;
  font-size: 0.9rem;
}

.cookie-category-status {
  font-size: 0.85rem;
  color: #666666;
  font-style: italic;
}

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

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

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

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

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

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

.btn-cookie-settings:hover {
  background: hsl(1, 51%, 32%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

  footer h5 {
    margin-top: 30px;
  }

  .footer-contact-item {
    justify-content: center;
  }

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

  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(1, 51%, 32%) 0%, hsl(1, 51%, 57%) 100%);
  }

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

  .contact-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(1, 51%, 17%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

  .contact-info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  }

  .contact-info-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    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(1, 51%, 32%) 0%, hsl(1, 51%, 57%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(157, 60, 48, 0.25);
  }

  .contact-info-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
  }

  .contact-info-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(1, 51%, 17%);
    margin-bottom: 12px;
  }

  .contact-info-item p,
  .contact-info-item a {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.7;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-info-item a:hover {
    color: hsl(1, 51%, 32%);
  }

  .contact-form-wrapper {
    background: #ffffff;
    border-radius: 15px;
    padding: 45px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }

  .contact-form-wrapper h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(1, 51%, 17%);
    margin-bottom: 30px;
  }

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

  .form-control,
  .form-select {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    padding: 12px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    color: #333;
  }

  .form-control:focus,
  .form-select:focus {
    border-color: hsl(1, 51%, 57%);
    box-shadow: 0 0 0 0.2rem rgba(157, 60, 48, 0.15);
    outline: none;
  }

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

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

  .btn-submit {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, hsl(1, 51%, 32%) 0%, hsl(1, 51%, 57%) 100%);
    border: none;
    border-radius: 8px;
    padding: 14px 40px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 60, 48, 0.3);
    width: 100%;
  }

  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 60, 48, 0.4);
  }

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

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

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

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

  .hours-list .day {
    font-weight: 600;
    color: #333;
  }

  .hours-list .time {
    color: hsl(1, 51%, 32%);
  }

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

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

    .contact-form-wrapper,
    .contact-info-card {
      padding: 30px;
      margin-bottom: 30px;
    }
  }

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

    .contact-form-wrapper,
    .contact-info-card {
      padding: 25px;
    }

    .btn-submit {
      font-size: 1rem;
      padding: 12px 30px;
    }
  }

@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(1, 51%, 32%);
    --secondary-color: hsl(1, 51%, 17%);
    --accent-color: hsl(1, 51%, 57%);
  }
  
  .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.3rem;
    color: var(--accent-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, 51, 41, 0.05) 0%, rgba(145, 51, 41, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .last-updated {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .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;
  }
  
  .contact-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-section h2 {
    color: white;
    border-left-color: var(--accent-color);
  }
  
  .contact-section a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-section a:hover {
    color: var(--accent-color);
  }

.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(1, 51%, 17%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.faq-section .lead-text {
  color: #555;
  font-size: 1.1rem;
  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: 8px;
  margin-bottom: 1rem;
  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 12px rgba(0, 0, 0, 0.1);
}

.faq-accordion .accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: hsl(1, 51%, 17%);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  border: none;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: hsl(1, 51%, 32%);
  box-shadow: none;
}

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

.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='%23721a15'%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: 1.5rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  background-color: #fafafa;
}

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

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

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

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

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(1, 51%, 17%) 0%, hsl(1, 51%, 32%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(1, 51%, 57%);
  opacity: 0.1;
  border-radius: 50%;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(1, 51%, 57%);
  opacity: 0.08;
  border-radius: 50%;
}

.newsletter-container {
  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: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

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

.newsletter-email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 20px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  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(1, 51%, 57%);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.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(1, 51%, 57%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: hsl(1, 51%, 47%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.newsletter-benefit-icon::before {
  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;
  }

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

  .newsletter-submit-btn {
    width: 100%;
  }

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

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

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

  .newsletter-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: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
  }

  .hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: hsl(1, 51%, 17%);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: hsl(1, 51%, 32%);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-section p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 500px;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

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

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

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

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

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

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

  .btn-primary-hero {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: hsl(1, 51%, 32%);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .btn-primary-hero:hover {
    background: hsl(1, 51%, 17%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

  .btn-secondary-hero {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: transparent;
    color: hsl(1, 51%, 32%);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: 2px solid hsl(1, 51%, 32%);
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-secondary-hero:hover {
    background: hsl(1, 51%, 32%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

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

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

    .hero-image-wrapper {
      min-height: 400px;
      margin-bottom: 3rem;
    }

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

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

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

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

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

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

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

.credentials-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  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%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.credential-title {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  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.6rem;
    margin-bottom: 30px;
  }
  
  .credential-card {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .credential-card {
    margin-bottom: 20px;
  }
}

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

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

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

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.7;
}

.service-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.4s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

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

.service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(1, 51%, 32%) 0%, hsl(1, 51%, 17%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, hsl(1, 51%, 57%) 0%, hsl(1, 51%, 32%) 100%);
}

.service-content {
  flex: 1;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 15px;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(1, 51%, 17%);
  font-size: 1.5rem;
  margin: 0;
}

.service-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(1, 51%, 32%);
  font-size: 1.4rem;
  white-space: nowrap;
}

.service-card p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.service-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.service-term {
  background: #f8f9fa;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #555;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-term i {
  color: hsl(1, 51%, 57%);
  font-size: 0.85rem;
}

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

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

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

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }

  .service-header {
    flex-direction: column;
    gap: 10px;
  }

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

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

.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(1, 51%, 57%, 0.05);
  border-radius: 50%;
  z-index: 0;
}

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

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

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

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

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

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

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

.testimonial-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, hsl(1, 51%, 32%) 0%, hsl(1, 51%, 17%) 100%);
  border-top-color: hsl(1, 51%, 57%);
}

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

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

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

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

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

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

.testimonial-text.short {
  font-size: 1.1rem;
  font-weight: 500;
}

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

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

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

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

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(1, 51%, 32%);
}

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

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

.customer-location {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.9rem;
  color: #666;
}

.testimonial-card.featured .customer-location {
  color: rgba(255, 255, 255, 0.85);
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 2px solid #eee;
}

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

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(1, 51%, 32%);
  display: block;
  margin-bottom: 5px;
}

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

@media (max-width: 992px) {
  .testimonial-card.featured {
    grid-column: span 1;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .testimonials-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(1, 51%, 32%) 0%, hsl(1, 51%, 17%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(1, 51%, 57%);
  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: 20px;
  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: 600px;
}

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

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

.deadline-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, hsl(1, 51%, 32%), hsl(1, 51%, 57%));
  color: #fff;
  padding: 25px 40px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.calendar-icon {
  font-size: 36px;
}

.date-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

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

.benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: hsl(1, 51%, 57%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}

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

.discount-badge {
  display: inline-block;
  background: hsl(1, 51%, 57%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.offer-cta {
  display: inline-block;
  background: hsl(1, 51%, 32%);
  color: #fff;
  padding: 18px 50px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-cta:hover {
  background: hsl(1, 51%, 17%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

  .offer-title {
    font-size: 36px;
  }

  .offer-description {
    font-size: 16px;
  }

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

  .date-text {
    font-size: 24px;
  }

  .calendar-icon {
    font-size: 28px;
  }

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

  .discount-badge {
    font-size: 20px;
    padding: 12px 25px;
  }
}

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

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

.blog-preview .section-subtitle {
  color: #666;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  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-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

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

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #888;
}

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

.blog-meta-icon {
  color: hsl(1, 51%, 57%);
  font-size: 1rem;
}

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

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

.blog-card-title a:hover {
  color: hsl(1, 51%, 32%);
}

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

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

.blog-read-more:hover {
  gap: 0.8rem;
  color: hsl(1, 51%, 57%);
}

.blog-read-more-arrow {
  font-size: 1.2rem;
}

.blog-view-all {
  text-align: center;
  margin-top: 3rem;
}

.btn-view-all {
  display: inline-block;
  padding: 14px 40px;
  background: hsl(1, 51%, 32%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
}

.btn-view-all:hover {
  background: hsl(1, 51%, 17%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

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

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

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

.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(157, 52, 42, 0.03) 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(157, 52, 42, 0.02) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

.disclaimer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(1, 51%, 57%) 0%, hsl(1, 51%, 47%) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(157, 52, 42, 0.2);
  animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(157, 52, 42, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(157, 52, 42, 0.3);
  }
}

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

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

.disclaimer-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(157, 52, 42, 0.08);
  position: relative;
}

.disclaimer-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(1, 51%, 32%) 0%, hsl(1, 51%, 57%) 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: #333333;
  text-align: justify;
  margin: 0;
}

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

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

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

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

  .disclaimer-content {
    padding: 30px 25px;
  }

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

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

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

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

  .disclaimer-title {
    font-size: 1.75rem;
  }

  .disclaimer-content {
    padding: 25px 20px;
  }

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

@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(1, 51%, 32%);
    --secondary-color: hsl(1, 51%, 17%);
    --accent-color: hsl(1, 51%, 57%);
  }
  
  .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(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .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.75rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.3rem;
    color: var(--accent-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.75rem;
    font-size: 1.05rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-box a:hover {
    color: var(--accent-color);
  }
  
  .effective-date {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .policy-section {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

@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(1, 51%, 32%);
    --secondary-color: hsl(1, 51%, 17%);
    --accent-color: hsl(1, 51%, 57%);
  }
  
  .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);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px 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);
  }
  
  .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-content strong {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .effective-date {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  .section-card {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-top: 3px solid var(--accent-color);
  }