:root {
            --primary: hsl(222, 58%, 31%);
            --secondary: hsl(222, 58%, 16%);
            --accent: hsl(222, 58%, 56%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Crimson Text', serif;
            font-size: 18px;
            line-height: 1.7;
            color: #333;
            background-color: #fff;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            color: #222;
            line-height: 1.3;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .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,
        .navbar-nav .nav-link:focus {
            color: var(--accent);
        }
        
        .navbar-toggler {
            border-color: var(--primary);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(41, 72, 112, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2841, 72, 112, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

  #about h1, #about h2, #about h3 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(222, 58%, 31%);
    font-weight: 700;
  }

  #about h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  #about h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
  }

  #about h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: hsl(222, 58%, 56%);
  }

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

  #about .lead-text {
    font-size: 1.3rem;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.9;
  }

  #about .about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
  }

  #about .content-block {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
  }

  #about .values-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
  }

  #about .values-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.15rem;
    color: #444;
  }

  #about .values-list li:last-child {
    border-bottom: none;
  }

  #about .values-list li strong {
    color: hsl(222, 58%, 31%);
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.3rem;
  }

  #about .highlight-box {
    background: hsl(222, 58%, 31%);
    color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
  }

  #about .highlight-box h3 {
    color: #ffffff;
    margin-bottom: 1rem;
  }

  #about .highlight-box p {
    color: #f8f9fa;
    margin-bottom: 0;
  }

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

    #about h1 {
      font-size: 2.2rem;
    }

    #about h2 {
      font-size: 1.7rem;
    }

    #about .about-image {
      height: 300px;
    }

    #about .content-block {
      padding: 1.5rem;
    }

    #about p, #about .lead-text {
      font-size: 1.05rem;
    }
  }

.portfolio-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }

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

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

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

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

  .filter-btn:hover,
  .filter-btn.active {
    background-color: hsl(222, 58%, 31%);
    color: #fff;
  }

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

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

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

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

  .portfolio-content {
    padding: 25px;
  }

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

  .portfolio-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    color: hsl(222, 58%, 16%);
    font-weight: 700;
    margin-bottom: 12px;
  }

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

  .view-details-btn {
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    padding: 10px 20px;
    background-color: hsl(222, 58%, 56%);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }

  .view-details-btn:hover {
    background-color: hsl(222, 58%, 31%);
    color: #fff;
  }

  .modal-header {
    background-color: hsl(222, 58%, 31%);
    color: #fff;
    border-bottom: none;
  }

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

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

  .modal-body {
    padding: 30px;
  }

  .modal-body h5 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(222, 58%, 31%);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .modal-body p,
  .modal-body ul {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
  }

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

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

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

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

  .project-meta-item {
    flex: 1;
  }

  .project-meta-label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: hsl(222, 58%, 31%);
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  .project-meta-value {
    font-family: 'Crimson Text', serif;
    color: #555;
    font-size: 1rem;
  }

  @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;
    }

    .project-meta {
      flex-direction: column;
      gap: 15px;
    }
  }

#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(222, 58%, 56%, 0.05);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  #advantages .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(222, 58%, 16%);
    margin-bottom: 20px;
    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(222, 58%, 56%);
    border-radius: 2px;
  }

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

  #advantages .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.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

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

  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(222, 58%, 56%, 0.3);
  }

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

  #advantages .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(222, 58%, 31%), hsl(222, 58%, 56%));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

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

  #advantages .advantage-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(222, 58%, 16%);
    margin-bottom: 15px;
    transition: color 0.3s ease;
  }

  #advantages .advantage-card:hover .advantage-title {
    color: hsl(222, 58%, 31%);
  }

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

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

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

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

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

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

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

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

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

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

    #advantages .advantage-description {
      font-size: 1rem;
    }
  }

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

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

#statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(222, 58%, 31%) 0%, hsl(222, 58%, 56%) 50%, hsl(222, 58%, 31%) 100%);
}

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

.statistics-header h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(222, 58%, 16%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.statistics-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(222, 58%, 56%);
}

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

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(222, 58%, 31%), hsl(222, 58%, 56%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

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

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(222, 58%, 31%);
    margin: 15px 0 10px;
    display: block;
    animation: countUp 2s ease-out;
}

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

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

.stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #2c5aa0, #5b8dd6);
}

.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #1e4278, #4a7bc0);
}

.stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #2c5aa0, #6a9ee0);
}

.stat-card:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #1e4278, #5b8dd6);
}

.stat-card:nth-child(5) .stat-icon {
    background: linear-gradient(135deg, #2c5aa0, #4a7bc0);
}

.stat-card:nth-child(6) .stat-icon {
    background: linear-gradient(135deg, #1e4278, #6a9ee0);
}

.stat-card:nth-child(7) .stat-icon {
    background: linear-gradient(135deg, #2c5aa0, #5b8dd6);
}

.stat-card:nth-child(8) .stat-icon {
    background: linear-gradient(135deg, #1e4278, #4a7bc0);
}

.stat-card:nth-child(9) .stat-icon {
    background: linear-gradient(135deg, #2c5aa0, #6a9ee0);
}

.stat-card:nth-child(10) .stat-icon {
    background: linear-gradient(135deg, #1e4278, #5b8dd6);
}

.stat-card:nth-child(11) .stat-icon {
    background: linear-gradient(135deg, #2c5aa0, #4a7bc0);
}

.stat-card:nth-child(12) .stat-icon {
    background: linear-gradient(135deg, #1e4278, #6a9ee0);
}

.stat-card:nth-child(13) .stat-icon {
    background: linear-gradient(135deg, #2c5aa0, #5b8dd6);
}

.stat-card:nth-child(14) .stat-icon {
    background: linear-gradient(135deg, #1e4278, #4a7bc0);
}

.stat-card:nth-child(15) .stat-icon {
    background: linear-gradient(135deg, #2c5aa0, #6a9ee0);
}

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

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

    .statistics-header p {
        font-size: 1.1rem;
    }

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

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

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

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

@media (max-width: 480px) {
    .statistics-grid {
        grid-template-columns: 1fr;
    }
}

footer {
  background: hsl(222, 58%, 16%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Crimson Text', serif;
}

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

footer p, footer li, footer a {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.8;
}

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

footer a:hover {
  color: hsl(222, 58%, 56%);
}

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

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

.footer-description {
  margin-bottom: 25px;
  color: #e0e0e0;
}

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

.contact-info i {
  margin-right: 10px;
  color: hsl(222, 58%, 56%);
  margin-top: 5px;
}

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

#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: 3px solid hsl(222, 58%, 31%);
}

#cookieNotice .container {
  max-width: 1200px;
}

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

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

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

.cookie-categories li {
  font-family: 'Crimson Text', serif;
  color: #333333;
  padding: 8px 0;
  font-size: 0.95rem;
}

.cookie-categories li strong {
  font-weight: 600;
  color: hsl(222, 58%, 16%);
}

.cookie-categories .badge {
  font-size: 0.75rem;
  padding: 4px 8px;
  margin-left: 8px;
}

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

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

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

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

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

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

.btn-manage {
  background: hsl(222, 58%, 31%);
  color: #ffffff;
}

.btn-manage:hover {
  background: hsl(222, 58%, 26%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(39, 66, 106, 0.3);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-top: 25px;
    font-size: 1rem;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  #cookieNotice h4 {
    font-size: 1.2rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid #eee; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

.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 {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    font-family: 'Crimson Text', serif;
  }

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

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

  .contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
  }

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

  .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 {
    background: hsl(222, 58%, 31%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-right: 20px;
  }

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

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

  .contact-info-content a {
    color: hsl(222, 58%, 31%);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-info-content a:hover {
    color: hsl(222, 58%, 56%);
  }

  .contact-section .form-label {
    font-family: 'Work Sans', sans-serif;
    color: hsl(222, 58%, 16%);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

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

  .contact-section .form-control:focus {
    border-color: hsl(222, 58%, 56%);
    box-shadow: 0 0 0 0.2rem rgba(73, 106, 159, 0.15);
    outline: none;
  }

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

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

  .contact-section .btn-submit:hover {
    background: hsl(222, 58%, 16%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .form-heading {
    font-family: 'Work Sans', sans-serif;
    color: hsl(222, 58%, 16%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .required-mark {
    color: #dc3545;
  }

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

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

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

    .contact-form-card {
      padding: 30px;
    }
  }

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

    .contact-section h2 {
      font-size: 1.75rem;
    }

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

    .contact-icon {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
    }

    .form-heading {
      font-size: 1.5rem;
    }
  }

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

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

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

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

  .faq-accordion .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
  }

  .faq-accordion .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(222, 58%, 31%);
    background: #f8f9fa;
    padding: 1.25rem 1.5rem;
    border: none;
  }

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

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

  .faq-accordion .accordion-button::after {
    filter: brightness(0) saturate(100%);
  }

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

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

  .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(222, 58%, 31%);
    font-weight: 600;
  }

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

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

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

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

#newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(222, 58%, 31%) 0%, hsl(222, 58%, 16%) 100%);
  position: relative;
  overflow: hidden;
}

#newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

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

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

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

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

.newsletter-form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

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

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

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

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

.newsletter-submit-btn:hover {
  background: hsl(222, 58%, 46%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.newsletter-privacy-text {
  font-family: 'Crimson Text', serif;
  font-size: 0.875rem;
  color: #f8f9fa;
  margin-top: 15px;
  opacity: 0.9;
}

.newsletter-privacy-text a {
  color: hsl(222, 58%, 56%);
  text-decoration: underline;
}

.newsletter-privacy-text a:hover {
  color: #ffffff;
}

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

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

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

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

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

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

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

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

@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: hsl(222, 58%, 31%);
  --secondary: hsl(222, 58%, 16%);
  --accent: hsl(222, 58%, 56%);
}

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

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

.hero-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-family: 'Crimson Text', serif;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

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

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

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

.advantages-list li {
  font-family: 'Crimson Text', serif;
  font-size: 1.125rem;
  color: #333;
  padding: 0.75rem 0;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.6;
}

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

.advantages-list li i {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 14px;
  z-index: 1;
}

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

.btn-primary-custom {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  padding: 14px 35px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  font-size: 1.05rem;
}

.btn-primary-custom:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-secondary-custom {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  background: transparent;
  color: var(--primary);
  padding: 14px 35px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  font-size: 1.05rem;
}

.btn-secondary-custom:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  .hero-image-wrapper {
    min-height: 400px;
    margin-bottom: 3rem;
  }
  
  .hero-section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .advantages-list li {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
  
  .hero-image-wrapper {
    min-height: 300px;
  }
}

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

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

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

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

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

.blog-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

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

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-card-title {
  font-family: 'Work Sans', sans-serif;
  color: hsl(222, 58%, 31%);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-card-title a {
  color: hsl(222, 58%, 31%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: hsl(222, 58%, 56%);
}

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

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

.blog-read-more:hover {
  gap: 0.8rem;
  color: hsl(222, 58%, 31%);
}

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

.view-all-btn:hover {
  background: hsl(222, 58%, 31%);
  color: #fff;
  transform: translateY(-2px);
}

.btn-container {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .blog-preview-section {
    padding: 60px 0;
  }
  
  .blog-preview-section h2 {
    font-size: 2rem;
  }
  
  .blog-card-img {
    height: 220px;
  }
  
  .blog-card-title {
    font-size: 1.3rem;
  }
}

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

.credentials-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(222, 58%, 31%);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.credentials-section .section-subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.credential-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.credential-card h3 {
  font-family: 'Work Sans', sans-serif;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.credential-card p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

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

.offer-section {
  background: linear-gradient(135deg, hsl(222, 58%, 31%) 0%, hsl(222, 58%, 16%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

.deadline-block {
  background: linear-gradient(135deg, hsl(222, 58%, 56%) 0%, hsl(222, 58%, 31%) 100%);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.deadline-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  background-size: 50px 50px;
}

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

.deadline-date {
  font-family: 'Work Sans', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.calendar-icon {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.discount-badge {
  display: inline-block;
  background: hsl(222, 58%, 56%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 72px;
  font-weight: 700;
  padding: 30px 40px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.discount-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 24px;
  color: hsl(222, 58%, 31%);
  font-weight: 600;
  margin-bottom: 30px;
}

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

.benefits-list li {
  font-family: 'Crimson Text', serif;
  font-size: 20px;
  color: #333;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  line-height: 1.6;
}

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

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(222, 58%, 56%) 0%, hsl(222, 58%, 31%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-icon i {
  color: #fff;
  font-size: 22px;
}

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

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

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

.terms-text {
  font-family: 'Crimson Text', serif;
  font-size: 16px;
  color: #666;
  margin-top: 30px;
  font-style: italic;
}

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

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

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

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

  .deadline-block {
    padding: 30px 20px;
  }

  .deadline-date {
    font-size: 42px;
  }

  .discount-badge {
    font-size: 56px;
    padding: 20px 30px;
  }

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

  .benefits-list li {
    font-size: 18px;
    padding: 15px 0;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .benefit-icon i {
    font-size: 18px;
  }

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

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

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

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

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

  .nav-tabs .nav-link {
    font-family: 'Work Sans', sans-serif;
    color: #555;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 1.1rem;
  }

  .nav-tabs .nav-link:hover {
    color: hsl(222, 58%, 31%);
    border-color: transparent;
  }

  .nav-tabs .nav-link.active {
    color: #fff;
    background: hsl(222, 58%, 31%);
    border-radius: 8px 8px 0 0;
    border: none;
  }

  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    border-color: hsl(222, 58%, 56%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(222, 58%, 31%), hsl(222, 58%, 56%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }

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

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

  .service-card h3 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(222, 58%, 16%);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

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

  .service-price {
    font-family: 'Work Sans', sans-serif;
    color: hsl(222, 58%, 31%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .service-terms {
    color: #777;
    font-size: 0.95rem;
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
  }

  .tab-content {
    animation: fadeIn 0.5s ease;
  }

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

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

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

    .nav-tabs .nav-link {
      padding: 0.75rem 1rem;
      font-size: 0.95rem;
    }

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

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

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

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid hsl(222, 58%, 56%);
  position: relative;
}

.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(222, 58%, 31%) 0%, hsl(222, 58%, 16%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(222, 58%, 56%);
}

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

.testimonial-card.featured .star-rating .star {
  color: #ffc107;
}

.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.star-rating .star {
  color: #ffc107;
}

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

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
}

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

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

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

.customer-details {
  flex: 1;
}

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

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

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

.rating-summary {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.rating-summary h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(222, 58%, 31%);
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #333;
  min-width: 70px;
  font-size: 0.95rem;
}

.rating-bar-bg {
  flex: 1;
  height: 12px;
  background: #e9ecef;
  border-radius: 6px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, hsl(222, 58%, 56%) 0%, hsl(222, 58%, 31%) 100%);
  border-radius: 6px;
  transition: width 0.8s ease;
}

.rating-percentage {
  min-width: 45px;
  text-align: right;
  font-weight: 600;
  color: #555;
  font-size: 0.95rem;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: hsl(222, 58%, 56%);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card.featured .quote-icon {
  color: #ffffff;
  opacity: 0.2;
}

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .rating-summary {
    padding: 30px 20px;
  }
}

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

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.disclaimer-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid hsl(222, 58%, 56%);
}

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(222, 58%, 56%) 0%, hsl(222, 58%, 31%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(67, 97, 157, 0.25);
}

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

.disclaimer-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(222, 58%, 31%);
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

.disclaimer-text {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #333333;
  text-align: left;
  margin: 0;
}

.disclaimer-text strong {
  color: hsl(222, 58%, 31%);
  font-weight: 600;
}

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

  .disclaimer-card {
    padding: 40px 25px;
  }

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

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

  .disclaimer-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
  }

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

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

  .disclaimer-card {
    padding: 30px 20px;
    border-left-width: 4px;
  }

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

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