:root {
            --primary-color: hsl(218, 43%, 43%);
            --secondary-color: hsl(218, 43%, 28%);
            --accent-color: hsl(218, 43%, 68%);
        }
        
        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;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--primary-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: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .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%2851, 51, 51, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
            }
        }

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

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(218, 43%, 28%);
  font-weight: 600;
}

.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;
  margin-top: 2rem;
  color: hsl(218, 43%, 43%);
}

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

.about-hero {
  background: linear-gradient(135deg, hsl(218, 43%, 43%) 0%, hsl(218, 43%, 28%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  border-radius: 8px;
}

.about-hero h1 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 0;
}

.about-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-text-block {
  margin-bottom: 2.5rem;
}

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

.value-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid hsl(218, 43%, 43%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.value-card p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.stats-row {
  background-color: hsl(218, 43%, 96%);
  padding: 3rem 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-family: 'Work Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(218, 43%, 43%);
  display: block;
  margin-bottom: 0.5rem;
}

.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-hero {
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

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

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

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

  .portfolio-intro {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
  }

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

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

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(218, 43%, 43%);
    color: #fff;
    transform: translateY(-2px);
  }

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

  .portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 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 12px 35px 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.1);
  }

  .portfolio-content {
    padding: 25px;
    position: relative;
  }

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

  .portfolio-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(218, 43%, 28%);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .portfolio-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
  }

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

  .view-details:hover {
    color: hsl(218, 43%, 28%);
    gap: 12px;
  }

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

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

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

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

  .modal-body {
    padding: 30px;
  }

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

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

  .modal-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
  }

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

  .project-details-list li {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
  }

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

  .detail-label {
    font-weight: 700;
    color: hsl(218, 43%, 28%);
  }

  @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 18px;
      font-size: 0.9rem;
    }

    .portfolio-image {
      height: 220px;
    }

    .modal-body {
      padding: 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-weight: 700;
    font-size: 2.5rem;
    color: hsl(218, 43%, 28%);
    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(218, 43%, 43%);
    border-radius: 2px;
  }

  #advantages .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    border-color: hsl(218, 43%, 68%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

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

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

  #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-weight: 600;
    font-size: 1.4rem;
    color: hsl(218, 43%, 28%);
    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 .section-subtitle {
      font-size: 1.1rem;
    }

    #advantages .advantage-card {
      margin-bottom: 25px;
    }
  }

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

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

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

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

@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(218, 43%, 43%), hsl(218, 43%, 68%));
  }

  #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: 16px;
    position: relative;
    display: inline-block;
  }

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

  #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: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
  }

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(218, 43%, 43%), hsl(218, 43%, 68%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(62, 88, 130, 0.15);
    border-color: hsl(218, 43%, 68%);
  }

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

  #statistics .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(218, 43%, 43%), hsl(218, 43%, 28%));
    border-radius: 50%;
    position: relative;
  }

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

  #statistics .stat-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid hsl(218, 43%, 68%);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(1.3);
      opacity: 0;
    }
  }

  #statistics .stat-number {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: hsl(218, 43%, 43%);
    margin-bottom: 12px;
    line-height: 1;
  }

  #statistics .stat-label {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
  }

  #statistics .stat-context {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
  }

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

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

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

    #statistics .stat-card {
      padding: 35px 25px;
    }

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

  @media (min-width: 769px) and (max-width: 991px) {
    #statistics .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

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

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

footer h5 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

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

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

footer a:hover {
  color: hsl(218, 43%, 68%);
  transform: translateX(5px);
}

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

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

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

.footer-contact-item i {
  margin-right: 12px;
  color: hsl(218, 43%, 68%);
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-bottom {
  background: hsl(218, 43%, 28%);
  padding: 25px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.business-hours-list {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid hsl(218, 43%, 68%);
}

.business-hours-list li {
  margin-bottom: 8px;
  font-size: 0.98rem;
}

#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: 30px 0;
  border-top: 4px solid hsl(218, 43%, 43%);
  animation: slideUp 0.5s ease-out;
}

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

#cookieNotice h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

#cookieNotice p {
  color: #555;
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-categories {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid hsl(218, 43%, 68%);
}

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

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

.cookie-category h6 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 1rem;
}

.cookie-category p {
  font-size: 0.92rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.cookie-category .badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  margin-left: 10px;
  font-weight: 500;
}

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

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

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

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

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

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

.btn-cookie-settings:hover {
  background: hsl(218, 43%, 43%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 102, 142, 0.3);
}

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

  footer h5 {
    margin-top: 30px;
    font-size: 1.1rem;
  }

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

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

  #cookieNotice {
    padding: 20px 0;
  }

  #cookieNotice h4 {
    font-size: 1.2rem;
  }
}

.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(218, 43%, 43%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Work Sans, sans-serif; color: hsl(218, 43%, 28%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(218, 43%, 43%); }
.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(218, 43%, 28%); font-family: Work Sans, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(218, 43%, 28%); font-family: Work Sans, sans-serif; }
.blog-article a { color: hsl(218, 43%, 43%); }
.blog-article a:hover { color: hsl(218, 43%, 68%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(218, 43%, 43%); 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: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, hsla(218, 43%, 68%, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(218, 43%, 28%);
  margin-bottom: 1rem;
  text-align: center;
}

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

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

.contact-form-wrapper h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(218, 43%, 28%);
  margin-bottom: 1.5rem;
}

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

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

.contact-form .form-control:focus {
  border-color: hsl(218, 43%, 43%);
  box-shadow: 0 0 0 0.2rem hsla(218, 43%, 43%, 0.15);
  outline: none;
}

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

.contact-form .btn-submit {
  font-family: 'Work Sans', sans-serif;
  background: hsl(218, 43%, 43%);
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.contact-form .btn-submit:hover {
  background: hsl(218, 43%, 28%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-info-wrapper {
  position: relative;
  z-index: 1;
}

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

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

.contact-info-card h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(218, 43%, 28%);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-info-card h4 i {
  font-size: 1.5rem;
  color: hsl(218, 43%, 43%);
  margin-right: 12px;
  width: 35px;
  text-align: center;
}

.contact-info-card p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.contact-info-card a {
  color: hsl(218, 43%, 43%);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: hsl(218, 43%, 28%);
  text-decoration: underline;
}

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

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

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

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

.form-required {
  color: hsl(218, 43%, 43%);
  margin-left: 3px;
}

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

@media (max-width: 576px) {
  .contact-section h2 {
    font-size: 1.9rem;
  }
  
  .contact-form-wrapper {
    padding: 25px 20px;
  }
  
  .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }
  
  .contact-info-card h4 {
    font-size: 1.2rem;
  }
}

@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(218, 43%, 43%);
    --secondary-color: hsl(218, 43%, 28%);
    --accent-color: hsl(218, 43%, 68%);
  }
  
  .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.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-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.25rem 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: rgba(218, 43%, 43%, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: inline-block;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .contact-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }
  
  .contact-section h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-section a {
    color: var(--accent-color);
  }
  
  .contact-section a:hover {
    color: white;
  }

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

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

  .faq-intro {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
  }

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

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

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

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

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

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

  .faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23455a7e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
  }

  .faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }

  .faq-accordion .accordion-body {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    padding: 1.5rem;
    background: #fafbfc;
  }

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

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

  .faq-accordion .accordion-body strong {
    color: hsl(218, 43%, 28%);
    font-weight: 600;
  }

  .faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  .faq-cta h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: hsl(218, 43%, 28%);
    margin-bottom: 1rem;
  }

  .faq-cta p {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
  }

  .faq-cta .btn-primary {
    font-family: 'Work Sans', sans-serif;
    background: hsl(218, 43%, 43%);
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #ffffff;
  }

  .faq-cta .btn-primary:hover {
    background: hsl(218, 43%, 28%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

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

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

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

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

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

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

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

  #newsletter {
    background: linear-gradient(135deg, hsl(218, 43%, 43%) 0%, hsl(218, 43%, 28%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  #newsletter::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::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 .container {
    position: relative;
    z-index: 2;
  }

  .newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

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

  .newsletter-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    color: #f8f9fa;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
  }

  .newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .newsletter-input-wrapper {
    flex: 1;
    min-width: 250px;
  }

  .newsletter-email-input {
    width: 100%;
    padding: 16px 24px;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #ffffff;
    color: #333333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .newsletter-email-input:focus {
    outline: none;
    border-color: hsl(218, 43%, 68%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

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

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

  .newsletter-submit-btn:hover {
    background: hsl(218, 43%, 73%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .newsletter-email-input {
      padding: 14px 20px;
    }

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(218, 43%, 68%);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

.hero-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: hsl(218, 43%, 43%);
  margin-bottom: 2rem;
}

.hero-description {
  font-family: 'Crimson Text', serif;
  font-size: 1.15rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-advantages {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.hero-advantages li {
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
  color: #222;
  padding: 1rem 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-advantages li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.hero-advantages li i {
  color: hsl(218, 43%, 43%);
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.btn-hero-primary {
  font-family: 'Work Sans', sans-serif;
  background: hsl(218, 43%, 43%);
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid hsl(218, 43%, 43%);
  transition: all 0.3s ease;
  display: inline-block;
}

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

.btn-hero-secondary {
  font-family: 'Work Sans', sans-serif;
  background: transparent;
  color: hsl(218, 43%, 43%);
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid hsl(218, 43%, 43%);
  transition: all 0.3s ease;
  display: inline-block;
}

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

.hero-image-container {
  margin-top: 3rem;
  position: relative;
}

.hero-image-container img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: block;
  margin: 0 auto;
}

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

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

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

  .hero-description {
    font-size: 1.05rem;
  }

  .hero-advantages {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
  }
}

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

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

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

.credentials-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  font-family: 'Crimson Text', serif;
}

.credentials-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(218, 43%, 28%);
  font-size: 2rem;
  font-weight: 600;
  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: 15px;
}

.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 h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  
  .credential-card {
    padding: 20px 15px;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(218, 43%, 43%) 0%, hsl(218, 43%, 28%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(218, 43%, 68%);
  color: hsl(218, 43%, 28%);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

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

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

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

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

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

.calendar-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(218, 43%, 43%);
  font-size: 1.8rem;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  font-family: 'Crimson Text', serif;
  font-size: 1.15rem;
  color: #333;
  line-height: 1.6;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: hsl(218, 43%, 43%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-right: 20px;
}

.discount-highlight {
  background: hsl(218, 43%, 68%);
  color: hsl(218, 43%, 28%);
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  margin: 30px 0;
}

.discount-percentage {
  font-family: 'Work Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(218, 43%, 28%);
  margin: 0;
  line-height: 1;
}

.discount-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: hsl(218, 43%, 28%);
  margin-top: 10px;
}

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

.btn-offer {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  background: hsl(218, 43%, 43%);
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-offer:hover {
  background: hsl(218, 43%, 28%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

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

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

  .offer-description {
    font-size: 1.1rem;
  }

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

  .deadline-date {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }

  .discount-percentage {
    font-size: 2.5rem;
  }

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

  .btn-offer {
    padding: 15px 35px;
    font-size: 1rem;
  }
}

.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;
    font-size: 2.5rem;
    color: hsl(218, 43%, 28%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

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

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

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

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

  .blog-card-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: hsl(218, 43%, 28%);
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .blog-card-title a {
    color: hsl(218, 43%, 28%);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-card-title a:hover {
    color: hsl(218, 43%, 43%);
  }

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

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

  .blog-read-more:hover {
    color: hsl(218, 43%, 28%);
    gap: 12px;
  }

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

  .btn-view-all {
    background: hsl(218, 43%, 43%);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid hsl(218, 43%, 43%);
  }

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

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

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

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

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

.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(218, 43%, 28%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials-section .subtitle {
  color: #666;
  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;
}

.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(218, 43%, 43%) 0%, hsl(218, 43%, 28%) 100%);
  color: #ffffff;
}

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

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

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

.testimonial-card.compact {
  padding: 25px;
  border-left: 4px solid hsl(218, 43%, 43%);
}

.testimonial-card.detailed {
  padding: 35px;
  background: #f8f9fa;
  border: 2px solid hsl(218, 43%, 68%);
}

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

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

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

.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 rgba(0,0,0,0.1);
}

.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(218, 43%, 68%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: rgba(255,255,255,0.25);
}

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

.customer-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(218, 43%, 28%);
  font-size: 1.1rem;
  margin-bottom: 3px;
}

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

.quote-icon {
  color: hsl(218, 43%, 68%);
  font-size: 2.5rem;
  opacity: 0.3;
  margin-bottom: 10px;
}

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

.project-type {
  display: inline-block;
  background: hsl(218, 43%, 68%);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'Work Sans', sans-serif;
  margin-bottom: 15px;
}

.testimonial-card.featured .project-type {
  background: rgba(255,255,255,0.25);
}

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

.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: hsl(218, 43%, 28%);
    margin-bottom: 1rem;
    text-align: center;
}

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(66, 91, 134, 0.15);
    border-color: hsl(218, 43%, 68%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(218, 43%, 43%) 0%, hsl(218, 43%, 28%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(218, 43%, 68%) 0%, hsl(218, 43%, 43%) 100%);
    transform: rotate(360deg);
}

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

.service-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(218, 43%, 28%);
    margin-bottom: 15px;
    text-align: center;
}

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

.service-price {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(218, 43%, 43%);
    text-align: center;
    margin-bottom: 10px;
}

.service-term {
    font-size: 0.95rem;
    color: #777;
    text-align: center;
    font-style: italic;
}

.service-divider {
    width: 60px;
    height: 3px;
    background: hsl(218, 43%, 68%);
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        margin-bottom: 25px;
    }
}

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

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

.disclaimer-section .icon-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.disclaimer-section .info-icon {
  font-size: 3.5rem;
  color: hsl(218, 43%, 43%);
  opacity: 0.9;
}

.disclaimer-content {
  background: #ffffff;
  border-left: 4px solid hsl(218, 43%, 43%);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

  .disclaimer-content {
    padding: 1.5rem;
  }

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

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

@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(218, 43%, 43%);
    --secondary-color: hsl(218, 43%, 28%);
    --accent-color: hsl(218, 43%, 68%);
  }
  
  .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);
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    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-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .last-updated {
    background-color: hsl(218, 43%, 95%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .contact-box {
    background-color: hsl(218, 43%, 96%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2.5rem;
    border: 2px solid var(--accent-color);
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--primary-color);
  }
  
  .info-highlight {
    background-color: hsl(218, 43%, 97%);
    padding: 1.25rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    border-left: 3px solid var(--primary-color);
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(218, 43%, 43%);
    --secondary-color: hsl(218, 43%, 28%);
    --accent-color: hsl(218, 43%, 68%);
  }
  
  .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: 600;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .effective-date {
    background-color: hsl(218, 43%, 95%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--secondary-color);
  }
  
  .contact-box {
    background-color: hsl(218, 43%, 96%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 4px;
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--primary-color);
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 2.5rem 0;
  }