:root {
            --primary-color: hsl(293, 40%, 37%);
            --secondary-color: hsl(293, 40%, 22%);
            --accent-color: hsl(293, 40%, 62%);
        }
        
        body {
            font-family: 'Crimson Text', serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
        }
        
        .navbar {
            background-color: #ffffff;
            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: 'Work Sans', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .nav-link {
            font-family: 'Work Sans', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(147, 73, 115, 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%28147, 73, 115, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(293, 40%, 22%);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-section h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(293, 40%, 37%);
  font-weight: 600;
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.about-intro {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 50px;
}

.about-content {
  display: grid;
  gap: 40px;
}

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

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

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

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

.value-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid hsl(293, 40%, 62%);
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.stat-box {
  background: hsl(293, 40%, 37%);
  color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.stat-box .number {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-box .label {
  font-size: 1rem;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
  
  .about-section h3 {
    font-size: 1.5rem;
  }
  
  .about-intro {
    padding: 25px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

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

.portfolio-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(293, 40%, 22%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: 'Work Sans', sans-serif;
  padding: 10px 25px;
  border: 2px solid hsl(293, 40%, 37%);
  background: transparent;
  color: hsl(293, 40%, 37%);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: hsl(293, 40%, 37%);
  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(350px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  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 35px 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;
  width: 100%;
  height: 280px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.portfolio-overlay-content h3 {
  font-family: 'Work Sans', sans-serif;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.portfolio-overlay-content .category {
  color: hsl(293, 40%, 62%);
  font-size: 0.95rem;
  font-weight: 600;
}

.portfolio-content {
  padding: 25px;
}

.portfolio-content h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(293, 40%, 22%);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.portfolio-content .category-badge {
  display: inline-block;
  background: hsl(293, 40%, 62%);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.view-details-btn {
  font-family: 'Work Sans', sans-serif;
  background: hsl(293, 40%, 37%);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-details-btn:hover {
  background: hsl(293, 40%, 22%);
  transform: translateX(5px);
}

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

.modal-header {
  background: linear-gradient(135deg, hsl(293, 40%, 37%) 0%, hsl(293, 40%, 22%) 100%);
  color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 25px 30px;
}

.modal-header h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  margin: 0;
}

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

.modal-body {
  padding: 30px;
}

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

.modal-body h5 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(293, 40%, 22%);
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
}

.modal-body p,
.modal-body ul {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

.modal-body ul {
  padding-left: 20px;
}

.modal-body ul li {
  margin-bottom: 10px;
}

.project-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.project-meta-item {
  flex: 1;
  min-width: 150px;
}

.project-meta-item strong {
  font-family: 'Work Sans', sans-serif;
  color: hsl(293, 40%, 37%);
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.project-meta-item span {
  color: #666;
}

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

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

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

  .filter-buttons {
    gap: 10px;
  }

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

  .modal-body {
    padding: 20px;
  }

  .project-meta {
    gap: 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  #advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Crimson Text', serif;
  }
  
  #advantages .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  #advantages .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(293, 40%, 22%);
    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(293, 40%, 62%);
    border-radius: 2px;
  }
  
  #advantages .section-subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  #advantages .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, hsl(293, 40%, 37%) 0%, hsl(293, 40%, 62%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  
  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(293, 40%, 62%);
  }
  
  #advantages .advantage-card:hover::before {
    transform: scaleX(1);
  }
  
  #advantages .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(293, 40%, 37%) 0%, hsl(293, 40%, 62%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }
  
  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
  }
  
  #advantages .icon-wrapper i {
    font-size: 2.2rem;
    color: #ffffff;
  }
  
  #advantages .advantage-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(293, 40%, 22%);
    margin-bottom: 15px;
    text-align: center;
  }
  
  #advantages .advantage-description {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    #advantages {
      padding: 60px 0;
    }
    
    #advantages .section-title {
      font-size: 2rem;
    }
    
    #advantages .advantage-card {
      margin-bottom: 30px;
    }
  }

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

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

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

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

  #statistics .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(293, 40%, 22%);
    margin-bottom: 15px;
  }

  #statistics .section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

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

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(293, 40%, 37%), hsl(293, 40%, 62%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: hsl(293, 40%, 62%);
  }

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

  #statistics .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(293, 40%, 37%), hsl(293, 40%, 62%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

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

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

  #statistics .stat-number {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(293, 40%, 37%);
    margin-bottom: 8px;
    display: block;
  }

  #statistics .stat-label {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    font-weight: 600;
  }

  #statistics .stat-context {
    font-family: 'Crimson Text', serif;
    font-size: 0.85rem;
    color: #777;
    margin-top: 6px;
    font-style: italic;
  }

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

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

    #statistics .section-subtitle {
      font-size: 1.1rem;
    }

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

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

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

    #statistics .stat-icon {
      width: 60px;
      height: 60px;
    }

    #statistics .stat-icon i {
      font-size: 28px;
    }
  }

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

footer {
  background: linear-gradient(135deg, hsl(293, 40%, 22%) 0%, hsl(293, 40%, 37%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Crimson Text', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ffffff;
}

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

footer a {
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: hsl(293, 40%, 62%);
  padding-left: 5px;
}

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

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

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

.footer-contact-item i {
  margin-right: 12px;
  color: hsl(293, 40%, 62%);
  font-size: 1.2rem;
  margin-top: 3px;
}

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

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

.footer-policies {
  margin-top: 15px;
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 15px;
  font-size: 0.95rem;
}

.footer-policies a:hover {
  color: hsl(293, 40%, 62%);
}

#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(293, 40%, 37%);
  animation: slideUp 0.4s ease-out;
}

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

.cookie-content h5 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(293, 40%, 22%);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.cookie-content p {
  font-family: 'Crimson Text', serif;
  color: #333333;
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.cookie-categories {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.cookie-categories li {
  font-family: 'Crimson Text', serif;
  color: #333333;
  padding: 8px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.cookie-categories li strong {
  font-weight: 600;
  color: hsl(293, 40%, 22%);
  margin-right: 8px;
}

.cookie-categories li .badge {
  font-size: 0.7rem;
  padding: 3px 8px;
  margin-left: 8px;
}

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

.cookie-buttons .btn {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.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(293, 40%, 37%);
  border: 2px solid hsl(293, 40%, 37%);
}

.btn-manage:hover {
  background: hsl(293, 40%, 37%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 54, 104, 0.3);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-top: 30px;
    font-size: 1.2rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .footer-policies a {
    display: block;
    margin: 10px 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; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid #eee; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

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

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

.contact-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(293, 40%, 22%);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.contact-section .section-subtitle {
  color: #555;
  font-size: 1.15rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-info-item {
  display: flex;
  align-items: start;
  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-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(293, 40%, 37%) 0%, hsl(293, 40%, 22%) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  flex-shrink: 0;
}

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

.contact-info-content h4 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(293, 40%, 22%);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  color: #333;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

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

.contact-info-content a:hover {
  color: hsl(293, 40%, 62%);
}

.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: 'Work Sans', sans-serif;
  color: hsl(293, 40%, 22%);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-label {
  font-family: 'Work Sans', sans-serif;
  color: #333;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-control, .form-select {
  font-family: 'Crimson Text', serif;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1.05rem;
  color: #333;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: hsl(293, 40%, 37%);
  box-shadow: 0 0 0 0.2rem rgba(146, 70, 114, 0.15);
  outline: none;
}

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

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

.btn-submit {
  font-family: 'Work Sans', sans-serif;
  background: linear-gradient(135deg, hsl(293, 40%, 37%) 0%, hsl(293, 40%, 22%) 100%);
  color: #ffffff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(146, 70, 114, 0.3);
}

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

.working-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  color: #333;
  font-size: 1.05rem;
}

.working-hours-list li strong {
  color: hsl(293, 40%, 22%);
  font-weight: 600;
}

.emergency-badge {
  background: linear-gradient(135deg, hsl(293, 40%, 62%) 0%, hsl(293, 40%, 37%) 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

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

@media (max-width: 576px) {
  .contact-section h2 {
    font-size: 1.8rem;
  }
  
  .contact-form-card {
    padding: 1.5rem;
  }
  
  .contact-info-card {
    padding: 1.5rem;
  }
}

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

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

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

  #faq .section-header h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(293, 40%, 22%);
    margin-bottom: 20px;
  }

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

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

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

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

  #faq .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: hsl(293, 40%, 22%);
    background-color: #ffffff;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
  }

  #faq .accordion-button:not(.collapsed) {
    background-color: hsl(293, 40%, 37%);
    color: #ffffff;
  }

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

  #faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23693a5e'%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-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-body {
    padding: 25px;
    background-color: #ffffff;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
  }

  #faq .accordion-body strong {
    color: hsl(293, 40%, 37%);
    font-weight: 600;
  }

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

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

    #faq .section-header p {
      font-size: 1.1rem;
    }

    #faq .accordion-button {
      font-size: 1rem;
      padding: 18px 20px;
    }

    #faq .accordion-body {
      font-size: 1rem;
      padding: 20px;
    }
  }

.newsletter-section {
  background: linear-gradient(135deg, hsl(293, 40%, 37%) 0%, hsl(293, 40%, 22%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.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;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
}

.newsletter-email-input:focus {
  outline: none;
  border-color: hsl(293, 40%, 62%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

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

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

.newsletter-submit-btn:hover {
  background: hsl(293, 40%, 52%);
  transform: translateY(-2px);
  box-shadow: 0 8px 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: 40px;
  flex-wrap: wrap;
}

.newsletter-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f8f9fa;
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .hero-section h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: hsl(293, 40%, 22%);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: hsl(293, 40%, 37%);
    margin-bottom: 1.5rem;
  }

  .hero-section p {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    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.5s 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: 'Crimson Text', serif;
    font-size: 1.125rem;
    color: #333;
    padding: 0.75rem 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(293, 40%, 37%);
    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: 2rem;
    flex-wrap: wrap;
  }

  .btn-primary-custom {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    background: hsl(293, 40%, 37%);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .btn-primary-custom:hover {
    background: hsl(293, 40%, 22%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
  }

  .btn-secondary-custom {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    background: transparent;
    color: hsl(293, 40%, 37%);
    padding: 1rem 2.5rem;
    border: 2px solid hsl(293, 40%, 37%);
    border-radius: 50px;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }

  .btn-secondary-custom:hover {
    background: hsl(293, 40%, 37%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

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

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

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

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

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

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

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

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

    .hero-section p,
    .advantages-list li {
      font-size: 1rem;
    }

    .hero-image-wrapper {
      min-height: 300px;
    }
  }

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

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

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

.services-section .section-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 15px;
}

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

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 25px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(117, 52, 99, 0.15);
  border-color: hsl(293, 40%, 62%);
}

.service-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(293, 40%, 37%) 0%, hsl(293, 40%, 22%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, hsl(293, 40%, 62%) 0%, hsl(293, 40%, 37%) 100%);
  transform: rotate(10deg) scale(1.1);
}

.service-content {
  flex: 1;
}

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

.service-description {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-price {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: hsl(293, 40%, 37%);
}

.service-term {
  font-size: 0.95rem;
  color: #666;
  padding: 5px 15px;
  background: #f8f9fa;
  border-radius: 20px;
}

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

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

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

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .service-meta {
    justify-content: center;
  }

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

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

.blog-preview-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(293, 40%, 22%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

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

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

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

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta-icon {
  width: 16px;
  height: 16px;
  color: hsl(293, 40%, 62%);
}

.blog-card h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(293, 40%, 22%);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card h3 a {
  color: hsl(293, 40%, 22%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card h3 a:hover {
  color: hsl(293, 40%, 37%);
}

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

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(293, 40%, 37%);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  gap: 12px;
  color: hsl(293, 40%, 22%);
}

.view-all-btn {
  display: inline-block;
  margin: 50px auto 0;
  padding: 15px 40px;
  background: hsl(293, 40%, 37%);
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

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

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

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

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

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

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

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

  .blog-meta {
    flex-wrap: wrap;
    gap: 15px;
  }
}

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

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

.credential-card {
  background: #ffffff;
  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: 12px;
}

.credential-title {
  font-family: 'Work Sans', 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.6rem;
    margin-bottom: 30px;
  }
  
  .credential-card {
    padding: 20px 15px;
  }
}

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

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

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(293, 40%, 62%);
  border-radius: 50%;
  opacity: 0.1;
}

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

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

.offer-heading {
  font-family: 'Work Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Crimson Text', serif;
  font-size: 20px;
  color: #f8f9fa;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.deadline-wrapper {
  background: linear-gradient(135deg, hsl(293, 40%, 62%) 0%, hsl(293, 40%, 37%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

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

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

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

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

.benefit-item:hover {
  background: hsl(293, 40%, 95%);
  transform: translateX(10px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(293, 40%, 37%) 0%, hsl(293, 40%, 62%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.benefit-text {
  flex: 1;
}

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

.benefit-description {
  font-family: 'Crimson Text', serif;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.discount-highlight {
  background: hsl(293, 40%, 37%);
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
}

.discount-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

.discount-subtext {
  font-family: 'Crimson Text', serif;
  font-size: 18px;
  margin: 10px 0 0 0;
  opacity: 0.9;
}

.offer-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, hsl(293, 40%, 37%) 0%, hsl(293, 40%, 62%) 100%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #fff;
}

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

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

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

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

  .deadline-date {
    font-size: 36px;
    flex-direction: column;
  }

  .calendar-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .discount-text {
    font-size: 32px;
  }

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

  .offer-cta-button {
    font-size: 18px;
    padding: 15px 40px;
  }
}

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

.testimonials-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(293, 40%, 22%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

.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(293, 40%, 37%) 0%, hsl(293, 40%, 22%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(293, 40%, 62%);
}

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

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

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

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

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

.testimonial-text {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: hsl(293, 40%, 62%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

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

.customer-location {
  color: #666;
  font-size: 0.95rem;
}

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

.quote-icon {
  font-size: 2.5rem;
  color: hsl(293, 40%, 62%);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
}

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

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
    margin-bottom: 20px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
}

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

.disclaimer-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.disclaimer-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
  border-left: 5px solid hsl(293, 40%, 37%);
}

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

.disclaimer-icon i {
  font-size: 3.5rem;
  color: hsl(293, 40%, 37%);
}

.disclaimer-text {
  color: #333;
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: justify;
}

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

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

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

  .disclaimer-icon i {
    font-size: 2.5rem;
  }

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

:root {
    --primary: hsl(293, 40%, 37%);
    --secondary: hsl(293, 40%, 22%);
    --accent: hsl(293, 40%, 62%);
  }

  .thank-you-section {
    font-family: 'Crimson Text', serif;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(293, 40%, 37%, 0.03) 0%, rgba(293, 40%, 62%, 0.05) 100%);
    padding: 3rem 1rem;
  }

  .thank-you-section h1,
  .thank-you-section h2 {
    font-family: 'Work Sans', sans-serif;
  }

  .thank-you-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 3rem 2rem;
    max-width: 600px;
    text-align: center;
    animation: slideUp 0.6s ease-out;
  }

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

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

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

  .success-icon svg {
    width: 45px;
    height: 45px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: drawCheck 0.5s ease-out 0.5s both;
  }

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

  .thank-you-card h1 {
    color: var(--secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .thank-you-card h2 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

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

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

  .info-box {
    background: linear-gradient(135deg, rgba(293, 40%, 37%, 0.05), rgba(293, 40%, 62%, 0.08));
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(293, 40%, 62%, 0.2);
  }

  .info-box-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .info-box h3 {
    font-family: 'Work Sans', sans-serif;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  .info-box p {
    font-size: 0.9rem;
    margin: 0;
    color: #666;
  }

  .btn-home {
    background: var(--primary);
    color: white;
    padding: 0.875rem 2.5rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(293, 40%, 37%, 0.3);
  }

  .btn-home:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(293, 40%, 37%, 0.4);
    color: white;
  }

  @media (max-width: 576px) {
    .thank-you-card {
      padding: 2rem 1.5rem;
    }

    .thank-you-card h1 {
      font-size: 2rem;
    }

    .thank-you-card h2 {
      font-size: 1.25rem;
    }

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

    .info-boxes {
      grid-template-columns: 1fr;
    }

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

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