:root {
            --primary-color: hsl(213, 35%, 47%);
            --secondary-color: hsl(213, 35%, 32%);
            --accent-color: hsl(213, 35%, 72%);
        }
        
        body {
            font-family: 'Crimson Text', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-family: 'Work Sans', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Work Sans', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(94, 125, 163, 0.25);
        }

.about-section {
  font-family: 'Crimson Text', serif;
  color: #222;
  background: #ffffff;
  padding: 80px 0;
}

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(213, 35%, 32%);
  font-weight: 700;
}

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  margin-top: 3rem;
}

.about-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: hsl(213, 35%, 47%);
}

.about-intro {
  background: linear-gradient(135deg, hsl(213, 35%, 47%) 0%, hsl(213, 35%, 32%) 100%);
  color: #ffffff;
  padding: 60px 0;
  margin-bottom: 60px;
}

.about-intro h1 {
  color: #ffffff;
  text-align: center;
}

.about-intro .lead {
  font-size: 1.3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #f8f9fa;
}

.about-content {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #333;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-image {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.story-block {
  background: #f8f9fa;
  padding: 50px 0;
  margin: 60px 0;
}

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

.value-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  border-left: 4px solid hsl(213, 35%, 47%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

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

.mission-vision {
  background: hsl(213, 35%, 72%);
  padding: 50px;
  border-radius: 12px;
  margin: 50px 0;
}

.mission-vision h2 {
  color: hsl(213, 35%, 32%);
}

.mission-vision p {
  color: #222;
  font-size: 1.15rem;
  line-height: 1.8;
}

.expertise-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-family: 'Work Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(213, 35%, 47%);
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h1 {
    font-size: 2.2rem;
  }
  
  .about-section h2 {
    font-size: 1.8rem;
  }
  
  .about-intro {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  
  .about-intro .lead {
    font-size: 1.1rem;
  }
  
  .mission-vision {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

.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-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

.filter-btn {
  font-family: 'Work Sans', sans-serif;
  padding: 0.6rem 1.5rem;
  border: 2px solid hsl(213, 35%, 47%);
  background: #fff;
  color: hsl(213, 35%, 47%);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

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

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

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

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

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

.portfolio-content {
  padding: 1.8rem;
}

.portfolio-category {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.85rem;
  color: hsl(213, 35%, 47%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.portfolio-item h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 1rem;
  font-weight: 700;
}

.portfolio-item p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.view-details {
  font-family: 'Work Sans', sans-serif;
  color: hsl(213, 35%, 47%);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.view-details:hover {
  gap: 0.8rem;
  color: hsl(213, 35%, 32%);
}

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

.modal-header {
  background: linear-gradient(135deg, hsl(213, 35%, 47%) 0%, hsl(213, 35%, 32%) 100%);
  color: #fff;
  border-radius: 12px 12px 0 0;
  padding: 1.5rem 2rem;
}

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

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

.modal-body {
  padding: 2rem;
}

.modal-body img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.modal-category {
  font-family: 'Work Sans', sans-serif;
  color: hsl(213, 35%, 47%);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.modal-body h6 {
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

.modal-body ul {
  padding-left: 1.5rem;
}

.modal-body ul li {
  margin-bottom: 0.5rem;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

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

.stat-number {
  font-family: 'Work Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(213, 35%, 47%);
  display: block;
}

.stat-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 0;
  }
  
  .portfolio-section h2 {
    font-size: 2rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .filter-buttons {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .portfolio-image {
    height: 220px;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .project-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

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

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(213, 35%, 72%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  #advantages .section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(66, 99, 139, 0.2);
    border-color: hsl(213, 35%, 72%);
  }

  .advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(213, 35%, 47%), hsl(213, 35%, 32%));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  .advantage-card:hover .advantage-icon {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, hsl(213, 35%, 32%), hsl(213, 35%, 47%));
  }

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

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

  .advantage-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
  }

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

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

    #advantages .section-subtitle {
      font-size: 1.1rem;
      margin-bottom: 40px;
    }

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

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

    .advantage-icon i {
      font-size: 2rem;
    }

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

  @media (max-width: 576px) {
    .advantage-card {
      padding: 25px 20px;
    }
  }

@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(213, 35%, 47%) 0%, hsl(213, 35%, 72%) 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: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

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

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(213, 35%, 47%), hsl(213, 35%, 72%));
    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(213, 35%, 72%);
  }

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

  #statistics .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(213, 35%, 47%), hsl(213, 35%, 32%));
    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);
    background: linear-gradient(135deg, hsl(213, 35%, 32%), hsl(213, 35%, 47%));
  }

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

  #statistics .stat-number {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(213, 35%, 32%);
    margin-bottom: 10px;
    display: block;
  }

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

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

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

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

    #statistics .stats-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

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

  @media (min-width: 1400px) {
    #statistics .stats-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

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

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

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: all 0.3s ease;
}

footer a:hover {
  color: hsl(213, 35%, 72%);
  padding-left: 5px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.85);
}

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

.contact-info-item i {
  color: hsl(213, 35%, 72%);
  margin-right: 10px;
  margin-top: 4px;
  font-size: 1.1rem;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
}

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

.policy-links {
  margin-top: 10px;
}

.policy-links a {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 12px;
  font-size: 0.95rem;
}

.policy-links a:hover {
  color: hsl(213, 35%, 72%);
  padding-left: 0;
}

#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: 0;
  border-top: 4px solid hsl(213, 35%, 47%);
}

.cookie-content {
  padding: 30px 0;
}

.cookie-notice-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(213, 35%, 32%);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

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

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

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

.cookie-category-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(213, 35%, 32%);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.cookie-category-desc {
  font-family: 'Crimson Text', serif;
  color: #555555;
  font-size: 0.95rem;
  margin: 0;
}

.cookie-required {
  display: inline-block;
  background: hsl(213, 35%, 72%);
  color: hsl(213, 35%, 32%);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 8px;
}

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

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

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

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

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

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

.cookie-btn-settings {
  background: transparent;
  color: hsl(213, 35%, 47%);
  border: 2px solid hsl(213, 35%, 47%);
}

.cookie-btn-settings:hover {
  background: hsl(213, 35%, 47%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

  .footer-brand h4 {
    font-size: 1.6rem;
  }

  .cookie-content {
    padding: 25px 0;
  }

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

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

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .policy-links a {
    display: block;
    margin: 8px 0;
  }
}

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

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

.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(213, 35%, 72%, 0.1);
    border-radius: 50%;
    z-index: 0;
}

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

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

.contact-info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(213, 35%, 47%) 0%, hsl(213, 35%, 32%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.contact-info-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(213, 35%, 32%);
    margin-bottom: 8px;
}

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

.contact-info-content a {
    color: hsl(213, 35%, 47%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: hsl(213, 35%, 32%);
}

.contact-form-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
}

.contact-form-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(213, 35%, 32%);
    margin-bottom: 1.5rem;
}

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

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

.form-control:focus, .form-select:focus {
    border-color: hsl(213, 35%, 47%);
    box-shadow: 0 0 0 0.2rem rgba(69, 104, 139, 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(213, 35%, 47%) 0%, hsl(213, 35%, 32%) 100%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 104, 139, 0.3);
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #555;
    font-size: 1.05rem;
}

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

.map-container {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
}

.map-placeholder {
    background: linear-gradient(135deg, hsl(213, 35%, 72%) 0%, hsl(213, 35%, 47%) 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
}

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

@media (max-width: 767px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section h2 {
        font-size: 1.9rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .map-placeholder {
        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');

  :root {
    --primary-color: hsl(213, 35%, 47%);
    --secondary-color: hsl(213, 35%, 32%);
    --accent-color: hsl(213, 35%, 72%);
  }

  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', 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.875rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }

  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
  }

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

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

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

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

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

  .info-box {
    background-color: hsl(213, 35%, 95%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }

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

  .contact-section h2 {
    color: white;
    margin-top: 0;
  }

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

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

  .cookie-type-card {
    background-color: #f8f9fa;
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .cookie-type-card h3 {
    margin-top: 0;
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;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-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

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

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

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

  #faq .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    background: #ffffff;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed) {
    background: hsl(213, 35%, 47%);
    color: #ffffff;
    box-shadow: none;
  }

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

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

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

  #faq .accordion-body {
    padding: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    background: #ffffff;
    border-top: 1px solid hsl(213, 35%, 90%);
  }

  #faq .accordion-body p {
    margin-bottom: 15px;
  }

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

  #faq .accordion-body strong {
    color: hsl(213, 35%, 47%);
    font-weight: 600;
  }

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

  #faq .accordion-body ul li {
    margin-bottom: 10px;
    color: #444;
  }

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

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

    #faq .section-subtitle {
      font-size: 1.05rem;
    }

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

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

    #faq .accordion-item {
      margin-bottom: 15px;
    }
  }

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(213, 35%, 47%) 0%, hsl(213, 35%, 32%) 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: 0;
}

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

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

.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.2rem;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

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

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

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

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

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

.newsletter-submit-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.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(213, 35%, 72%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-benefit-icon::before {
  content: '✓';
  color: #222;
  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.1rem;
    margin-bottom: 30px;
  }

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

  .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: 576px) {
  .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-color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
  }

  .hero-section h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #222;
    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(213, 35%, 47%);
    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-advantages {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }

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

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

  .hero-advantages li i {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 0.875rem;
  }

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

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

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

  .btn-hero-primary {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background-color: hsl(213, 35%, 47%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.125rem;
  }

  .btn-hero-primary:hover {
    background-color: hsl(213, 35%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .btn-hero-secondary {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: hsl(213, 35%, 47%);
    border: 2px solid hsl(213, 35%, 47%);
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.125rem;
  }

  .btn-hero-secondary:hover {
    background-color: hsl(213, 35%, 47%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

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

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

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

    .hero-content {
      margin-bottom: 3rem;
    }
  }

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

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

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

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

    .btn-hero-primary,
    .btn-hero-secondary {
      padding: 0.875rem 2rem;
      font-size: 1rem;
      width: 100%;
      text-align: center;
    }
  }

.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;
    font-weight: 700;
    color: hsl(213, 35%, 32%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .blog-preview-section .section-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.125rem;
    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: 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 30px rgba(0, 0, 0, 0.15);
  }

  .blog-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 3px solid hsl(213, 35%, 47%);
  }

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

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

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

  .blog-meta-item i {
    color: hsl(213, 35%, 47%);
  }

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

  .blog-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-card h3 a:hover {
    color: hsl(213, 35%, 47%);
  }

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

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

  .blog-read-more:hover {
    gap: 12px;
    color: hsl(213, 35%, 32%);
  }

  .view-all-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 15px 40px;
    background: hsl(213, 35%, 47%);
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .view-all-btn:hover {
    background: hsl(213, 35%, 32%);
    color: #ffffff;
    transform: scale(1.05);
  }

  .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-body {
      padding: 25px;
    }

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

    .blog-meta {
      flex-direction: column;
      gap: 8px;
    }
  }

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

.credentials-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(213, 35%, 32%);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

.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: 15px;
}

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

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

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

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

.testimonials-section .subtitle {
  color: hsl(213, 35%, 47%);
  font-size: 1.2rem;
  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;
}

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

.testimonial-card.style-1 {
  border-left: 4px solid hsl(213, 35%, 47%);
}

.testimonial-card.style-2 {
  border-top: 4px solid hsl(213, 35%, 72%);
}

.testimonial-card.style-3 {
  background: linear-gradient(to bottom right, #ffffff 0%, #f8f9fa 100%);
}

.testimonial-card.style-4 {
  border-radius: 20px;
  background: #ffffff;
}

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

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

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

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

.testimonial-text.short {
  font-size: 1.2rem;
  font-weight: 600;
  color: hsl(213, 35%, 32%);
}

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

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(213, 35%, 47%) 0%, hsl(213, 35%, 72%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  flex-shrink: 0;
}

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

.author-name {
  font-family: 'Work Sans', sans-serif;
  color: hsl(213, 35%, 32%);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.author-location {
  color: #6c757d;
  font-size: 0.95rem;
}

.testimonial-quote {
  color: hsl(213, 35%, 72%);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.5;
}

.testimonial-badge {
  display: inline-block;
  background: hsl(213, 35%, 47%);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'Work Sans', sans-serif;
  margin-bottom: 15px;
}

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

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

  .testimonial-card {
    padding: 25px;
  }

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

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

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

  .services-intro {
    text-align: center;
    color: #555;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
  }

  .nav-tabs {
    border-bottom: 2px solid hsl(213, 35%, 72%);
    justify-content: center;
    margin-bottom: 3rem;
  }

  .nav-tabs .nav-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(213, 35%, 47%);
    border: none;
    padding: 1rem 2rem;
    margin: 0 0.5rem;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
  }

  .nav-tabs .nav-link:hover {
    color: hsl(213, 35%, 32%);
    background: rgba(82, 113, 145, 0.1);
  }

  .nav-tabs .nav-link.active {
    color: #fff;
    background: hsl(213, 35%, 47%);
    border: none;
  }

  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(82, 113, 145, 0.2);
    border-color: hsl(213, 35%, 72%);
  }

  .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(213, 35%, 47%) 0%, hsl(213, 35%, 32%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, hsl(213, 35%, 32%) 0%, hsl(213, 35%, 47%) 100%);
  }

  .service-icon i {
    font-size: 2.5rem;
    color: #fff;
  }

  .service-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

  .service-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .service-price {
    font-family: 'Work Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(213, 35%, 47%);
    text-align: center;
    margin-bottom: 1rem;
  }

  .service-price span {
    font-size: 1rem;
    color: #777;
    font-weight: 400;
  }

  .service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
  }

  .service-features li {
    color: #555;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
  }

  .service-features li:last-child {
    border-bottom: none;
  }

  .service-features i {
    color: hsl(213, 35%, 47%);
    margin-right: 0.5rem;
  }

  .service-terms {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
  }

  .service-terms h4 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
  }

  .service-terms ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .service-terms li {
    color: #555;
    font-size: 1rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
  }

  .service-terms li:before {
    content: "•";
    color: hsl(213, 35%, 47%);
    font-weight: bold;
    position: absolute;
    left: 0;
  }

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

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

    .nav-tabs .nav-link {
      font-size: 0.95rem;
      padding: 0.8rem 1rem;
      margin: 0 0.2rem;
    }

    .service-card {
      margin-bottom: 1.5rem;
    }

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

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

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(213, 35%, 72%);
  color: hsl(213, 35%, 32%);
  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: #ffffff;
  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: 700px;
  margin-left: auto;
  margin-right: auto;
}

.offer-deadline-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.deadline-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 500;
}

.deadline-date {
  font-family: 'Work Sans', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: hsl(213, 35%, 47%);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

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

.offer-benefits {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
  backdrop-filter: blur(10px);
}

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

.benefit-item {
  font-family: 'Crimson Text', serif;
  font-size: 19px;
  color: #ffffff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.benefit-icon {
  width: 40px;
  height: 40px;
  background: hsl(213, 35%, 72%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: hsl(213, 35%, 32%);
}

.offer-cta-btn {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: hsl(213, 35%, 32%);
  background: hsl(213, 35%, 72%);
  border: none;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-btn:hover {
  background: #ffffff;
  color: hsl(213, 35%, 47%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.discount-highlight {
  background: hsl(213, 35%, 72%);
  color: hsl(213, 35%, 32%);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
}

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

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

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

  .deadline-date {
    font-size: 40px;
    flex-direction: column;
    gap: 12px;
  }

  .offer-deadline-box {
    padding: 30px 20px;
  }

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

  .benefit-item {
    font-size: 17px;
  }

  .offer-cta-btn {
    font-size: 18px;
    padding: 16px 36px;
  }
}

.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;
  font-weight: 600;
  color: hsl(213, 35%, 32%);
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.disclaimer-icon {
  color: hsl(213, 35%, 47%);
  font-size: 3.5rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.disclaimer-content {
  background: #ffffff;
  border-left: 4px solid hsl(213, 35%, 47%);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 0 auto;
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .disclaimer-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .disclaimer-content {
    padding: 30px 20px;
  }
  
  .disclaimer-content p {
    font-size: 1rem;
  }
}

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

  :root {
    --primary-color: hsl(213, 35%, 47%);
    --secondary-color: hsl(213, 35%, 32%);
    --accent-color: hsl(213, 35%, 72%);
  }

  .policy-content {
    font-family: 'Crimson Text', serif;
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

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

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

  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
  }

  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }

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

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

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

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

  .effective-date {
    background-color: var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 600;
  }

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

  .contact-box h3 {
    margin-top: 0;
    color: var(--primary-color);
  }

  .highlight-box {
    background-color: #fff;
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
  }

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

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

  :root {
    --primary-color: hsl(213, 35%, 47%);
    --secondary-color: hsl(213, 35%, 32%);
    --accent-color: hsl(213, 35%, 72%);
  }

  .policy-content {
    font-family: 'Crimson Text', serif;
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    color: var(--secondary-color);
    font-weight: 700;
    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.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
  }

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

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

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

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

  .policy-content p {
    margin-bottom: 1.2rem;
  }

  .info-box {
    background-color: hsl(213, 35%, 95%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

  .contact-section {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
  }

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

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

:root {
    --primary: hsl(213, 35%, 47%);
    --secondary: hsl(213, 35%, 32%);
    --accent: hsl(213, 35%, 72%);
  }

  .thank-you-section {
    font-family: 'Crimson Text', serif;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, hsl(213, 35%, 97%) 0%, hsl(213, 35%, 92%) 100%);
  }

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

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

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

  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

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

  .thank-you-message {
    font-size: 1.125rem;
    line-height: 1.8;
    color: hsl(213, 20%, 40%);
    margin-bottom: 2rem;
  }

  .thank-you-message strong {
    color: var(--secondary);
    font-weight: 600;
  }

  .home-button {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--primary);
    border: none;
    color: white;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

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

  .home-button:active {
    transform: translateY(0);
  }

  @media (max-width: 576px) {
    .thank-you-heading {
      font-size: 2rem;
    }

    .thank-you-container {
      padding: 2rem 1.5rem;
    }

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

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

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