:root {
            --primary-color: hsl(213, 66%, 45%);
            --secondary-color: hsl(213, 66%, 30%);
            --accent-color: hsl(213, 66%, 70%);
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
        }
        
        .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: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--secondary-color);
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            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='%23333' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

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

  #about h1, #about h2, #about h3 {
    font-family: 'Inter', sans-serif;
    color: #222;
  }

  #about .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(213, 66%, 30%);
    margin-bottom: 1.5rem;
    text-align: center;
  }

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

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

  #about .content-block h2 {
    font-size: 2rem;
    color: hsl(213, 66%, 45%);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }

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

  #about .about-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    margin-bottom: 2rem;
  }

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

  #about .value-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid hsl(213, 66%, 45%);
    transition: transform 0.3s ease;
  }

  #about .value-card:hover {
    transform: translateY(-5px);
  }

  #about .value-card h3 {
    font-size: 1.4rem;
    color: hsl(213, 66%, 30%);
    margin-bottom: 1rem;
    font-weight: 600;
  }

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

  #about .stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2.5rem 0;
    justify-content: space-around;
  }

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

  #about .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(213, 66%, 45%);
    display: block;
    margin-bottom: 0.5rem;
  }

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

  #about .highlight-box {
    background: linear-gradient(135deg, hsl(213, 66%, 45%) 0%, hsl(213, 66%, 30%) 100%);
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
  }

  #about .highlight-box h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .portfolio-filters .filter-btn {
    padding: 10px 28px;
    background: #fff;
    border: 2px solid hsl(213, 66%, 45%);
    color: hsl(213, 66%, 45%);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .portfolio-filters .filter-btn:hover,
  .portfolio-filters .filter-btn.active {
    background: hsl(213, 66%, 45%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 160, 0.3);
  }

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

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

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

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

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

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

  .portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 160, 0.9), rgba(25, 66, 107, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

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

  .portfolio-item-overlay i {
    font-size: 3rem;
    color: #fff;
  }

  .portfolio-item-content {
    padding: 25px;
  }

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

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

  .portfolio-item-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .portfolio-item-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(213, 66%, 45%);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
  }

  .portfolio-item-link:hover {
    gap: 12px;
    color: hsl(213, 66%, 30%);
  }

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

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

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

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

  .modal-body {
    padding: 35px;
  }

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

  .modal-project-info {
    margin-bottom: 25px;
  }

  .modal-project-info h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  .modal-project-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
  }

  .modal-project-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
  }

  .modal-project-details .detail-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .modal-project-details .detail-row:last-child {
    border-bottom: none;
  }

  .modal-project-details .detail-label {
    font-weight: 700;
    color: #333;
    min-width: 120px;
  }

  .modal-project-details .detail-value {
    color: #666;
  }

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

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

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

    .portfolio-filters {
      gap: 10px;
    }

    .portfolio-filters .filter-btn {
      padding: 8px 20px;
      font-size: 0.85rem;
    }

    .modal-body {
      padding: 25px 20px;
    }

    .modal-project-details .detail-row {
      flex-direction: column;
      gap: 5px;
    }
  }

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

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(213, 66%, 70%);
    opacity: 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: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    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(213, 66%, 45%);
    border-radius: 2px;
  }

  #advantages .section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
  }

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 4px 15px 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(213, 66%, 45%), hsl(213, 66%, 70%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(38, 85, 139, 0.15);
    border-color: hsl(213, 66%, 70%);
  }

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

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

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

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

  #advantages .advantage-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  #advantages .advantage-description {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
  }

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

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

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

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

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

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

    #advantages .advantage-card {
      padding: 30px 20px;
    }

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

    #advantages .icon-wrapper i {
      font-size: 28px;
    }

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

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(213, 66%, 45%) 0%, hsl(213, 66%, 70%) 100%);
}

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

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

.statistics-section .section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 76, 137, 0.15);
    border-color: hsl(213, 66%, 70%);
}

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

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(213, 66%, 30%) 0%, hsl(213, 66%, 45%) 100%);
}

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

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(213, 66%, 45%);
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

.stat-context {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-section .section-title {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
}

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

footer {
  background: linear-gradient(135deg, hsl(213, 66%, 30%) 0%, hsl(213, 66%, 45%) 100%);
  color: #ffffff;
  padding: 60px 0 0;
  font-family: 'Raleway', sans-serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

footer a:hover {
  color: hsl(213, 66%, 70%);
  transform: translateX(3px);
}

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

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

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

.footer-contact-info i {
  margin-right: 10px;
  margin-top: 3px;
  color: hsl(213, 66%, 70%);
}

.footer-bottom {
  background: hsl(213, 66%, 25%);
  padding: 25px 0;
  margin-top: 50px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.footer-policy-links a:hover {
  color: hsl(213, 66%, 70%);
}

#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(213, 66%, 45%);
  font-family: 'Raleway', sans-serif;
}

#cookieNotice h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

#cookieNotice p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

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

.cookie-category {
  display: flex;
  align-items: flex-start;
  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-title {
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}

.cookie-category-desc {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.cookie-category-required {
  background: #e8f5e9;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #2e7d32;
  font-weight: 600;
  margin-left: 10px;
}

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

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

.btn-accept-all:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

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

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

.btn-manage-settings {
  background: transparent;
  color: hsl(213, 66%, 45%);
  border: 2px solid hsl(213, 66%, 45%);
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.btn-manage-settings:hover {
  background: hsl(213, 66%, 45%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(41, 98, 155, 0.3);
}

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

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

  .footer-bottom {
    padding: 20px 15px;
  }

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

  #cookieNotice {
    padding: 20px 0;
  }

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

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

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

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Raleway, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(213, 66%, 45%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Inter, sans-serif; color: hsl(213, 66%, 30%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(213, 66%, 45%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(213, 66%, 30%); font-family: Inter, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(213, 66%, 30%); font-family: Inter, sans-serif; }
.blog-article a { color: hsl(213, 66%, 45%); }
.blog-article a:hover { color: hsl(213, 66%, 70%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(213, 66%, 45%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

.contact-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.contact-form-wrapper h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #222;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-control:focus {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: hsl(213, 66%, 45%);
    box-shadow: 0 0 0 0.2rem rgba(44, 108, 166, 0.15);
    outline: none;
}

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

.contact-form .btn-submit {
    background: hsl(213, 66%, 45%);
    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(213, 66%, 30%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 108, 166, 0.3);
}

.contact-info-wrapper {
    background: hsl(213, 66%, 45%);
    border-radius: 12px;
    padding: 40px;
    color: #ffffff;
    height: 100%;
}

.contact-info-wrapper h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    flex-shrink: 0;
}

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

.contact-info-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-content p,
.contact-info-content a {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-content a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.required-mark {
    color: hsl(213, 66%, 45%);
    margin-left: 2px;
}

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

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper h3,
    .contact-info-wrapper h3 {
        font-size: 1.5rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

  .policy-content {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: hsl(213, 66%, 30%);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .policy-content h1 {
    font-size: 2.5rem;
    color: hsl(213, 66%, 45%);
    border-bottom: 3px solid hsl(213, 66%, 70%);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 4px solid hsl(213, 66%, 45%);
  }

  .policy-content h3 {
    font-size: 1.35rem;
    color: hsl(213, 66%, 45%);
  }

  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }

  .policy-content a {
    color: hsl(213, 66%, 45%);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .policy-content a:hover {
    color: hsl(213, 66%, 30%);
    text-decoration: underline;
  }

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

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

  .policy-intro {
    background: linear-gradient(135deg, hsl(213, 66%, 97%) 0%, hsl(213, 66%, 93%) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid hsl(213, 66%, 45%);
  }

  .policy-section {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .contact-box {
    background: hsl(213, 66%, 45%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

  .contact-box h3 {
    color: white;
    margin-top: 0;
  }

  .contact-box a {
    color: white;
    text-decoration: underline;
  }

  .contact-box a:hover {
    color: hsl(213, 66%, 90%);
  }

  .highlight-box {
    background: hsl(213, 66%, 95%);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid hsl(213, 66%, 70%);
  }

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
  }

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

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

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

.faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(213, 66%, 45%), hsl(213, 66%, 70%));
    border-radius: 2px;
}

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

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

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

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

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

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(213, 66%, 45%);
    color: #ffffff;
}

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

.faq-accordion .accordion-button::after {
    width: 24px;
    height: 24px;
    background-size: 24px;
    transition: transform 0.3s ease;
}

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

.faq-accordion .accordion-body {
    padding: 30px;
    background-color: #ffffff;
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
}

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

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

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

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

.faq-accordion .accordion-body strong {
    color: #222;
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px 30px;
    background: linear-gradient(135deg, hsl(213, 66%, 45%), hsl(213, 66%, 30%));
    border-radius: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 25px;
    opacity: 0.95;
}

.faq-cta .btn-contact {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: hsl(213, 66%, 45%);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.faq-cta .btn-contact:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

    .faq-cta p {
        font-size: 1rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(213, 66%, 45%) 0%, hsl(213, 66%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/tire-pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

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

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

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    backdrop-filter: blur(10px);
}

.newsletter-icon svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

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

.newsletter-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
}

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

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

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333333;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #666666;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-submit {
    padding: 18px 45px;
    background: #ffffff;
    color: hsl(213, 66%, 45%);
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.newsletter-privacy {
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    color: #ffffff;
    opacity: 0.85;
    margin-top: 15px;
}

.newsletter-privacy a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.newsletter-privacy a:hover {
    opacity: 0.8;
}

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

.newsletter-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
}

.newsletter-benefit svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    flex-shrink: 0;
}

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

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

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

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

    .newsletter-submit {
        width: 100%;
        padding: 16px 35px;
    }

    .newsletter-benefits {
        gap: 25px;
    }

    .newsletter-benefit {
        font-size: 0.875rem;
    }
}

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

    .newsletter-input {
        padding: 16px 20px;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

  .hero-section {
    background: linear-gradient(135deg, hsl(213, 66%, 45%) 0%, hsl(213, 66%, 30%) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
  }

  .hero-section::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>');
    opacity: 0.3;
  }

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

  .hero-section h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }

  .hero-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: hsl(213, 66%, 70%);
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .hero-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #f8f9fa;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
  }

  .hero-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-bottom: 3rem;
  }

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

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

  .advantages-list li {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    color: #ffffff;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  .advantages-list li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

  .advantages-list li i {
    font-size: 1.5rem;
    color: hsl(213, 66%, 70%);
    flex-shrink: 0;
  }

  .hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
  }

  .btn-hero-primary {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: hsl(213, 66%, 30%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  }

  .btn-hero-primary:hover {
    background: hsl(213, 66%, 70%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }

  .btn-hero-secondary {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
  }

  .btn-hero-secondary:hover {
    background: #ffffff;
    color: hsl(213, 66%, 30%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }

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

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

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

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

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

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

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

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

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(213, 66%, 70%);
  color: hsl(213, 66%, 30%);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.offer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  color: #f8f9fa;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  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 {
  background: linear-gradient(135deg, hsl(213, 66%, 70%) 0%, hsl(213, 66%, 45%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.deadline-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: hsl(213, 66%, 30%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.deadline-date {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  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(213, 66%, 45%);
  font-size: 24px;
}

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

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

.benefit-item:hover {
  background: hsl(213, 66%, 70%);
  transform: translateX(5px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: hsl(213, 66%, 45%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}

.benefit-item:hover .benefit-icon {
  background: #ffffff;
  color: hsl(213, 66%, 45%);
}

.benefit-text {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.discount-highlight {
  background: hsl(213, 66%, 45%);
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 40px;
}

.discount-percentage {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.discount-text {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.offer-cta-btn {
  display: inline-block;
  background: hsl(213, 66%, 45%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(30, 80, 140, 0.3);
}

.offer-cta-btn:hover {
  background: hsl(213, 66%, 30%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(30, 80, 140, 0.4);
}

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

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

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

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

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

  .discount-percentage {
    font-size: 42px;
  }

  .benefit-item {
    padding: 15px;
  }

  .offer-cta-btn {
    padding: 15px 40px;
    font-size: 16px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

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

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

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

  #credentials .trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: hsl(213, 66%, 45%);
  }

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

  #credentials .trust-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }

  #credentials .trust-subtitle {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    font-weight: 400;
  }

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

    #credentials .section-title {
      font-size: 1.6rem;
      margin-bottom: 30px;
    }

    #credentials .trust-card {
      padding: 20px 12px;
      margin-bottom: 15px;
    }

    #credentials .trust-icon {
      font-size: 2rem;
    }

    #credentials .trust-title {
      font-size: 0.95rem;
    }
  }

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

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

.testimonials-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  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(213, 66%, 45%) 0%, hsl(213, 66%, 30%) 100%);
  color: #fff;
}

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

.testimonial-card.featured .stars i {
  color: #ffd700;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(213, 66%, 70%) 0%, hsl(213, 66%, 45%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

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

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

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

.customer-location {
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.stars i {
  color: #ffd700;
  font-size: 1.1rem;
}

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

.testimonial-card.featured .stars i.empty {
  color: rgba(255,255,255,0.3);
}

.testimonial-text {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
  flex-grow: 1;
}

.testimonial-text strong {
  color: hsl(213, 66%, 45%);
  font-weight: 600;
}

.testimonial-card.featured .testimonial-text strong {
  color: #fff;
  font-weight: 700;
}

.testimonial-date {
  color: #999;
  font-size: 0.85rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

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

.testimonial-compact {
  padding: 1.5rem;
}

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

.testimonial-detailed {
  padding: 2.5rem;
}

.service-mention {
  display: inline-block;
  background: hsl(213, 66%, 95%);
  color: hsl(213, 66%, 30%);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.testimonial-card.featured .service-mention {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .customer-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

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

  .blog-preview-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

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

  .blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 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-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 3px solid hsl(213, 66%, 45%);
  }

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

  .blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }

  .blog-date,
  .blog-reading-time {
    font-size: 0.875rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .blog-date svg,
  .blog-reading-time svg {
    width: 16px;
    height: 16px;
    fill: hsl(213, 66%, 45%);
  }

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

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

  .blog-card-title a:hover {
    color: hsl(213, 66%, 45%);
  }

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

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

  .blog-read-more:hover {
    gap: 0.8rem;
    color: hsl(213, 66%, 30%);
  }

  .blog-read-more svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .view-all-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 14px 40px;
    background: hsl(213, 66%, 45%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid hsl(213, 66%, 45%);
  }

  .view-all-btn:hover {
    background: hsl(213, 66%, 30%);
    border-color: hsl(213, 66%, 30%);
    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-img {
      height: 200px;
    }

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

    .blog-card-body {
      padding: 1.5rem;
    }
  }

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

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

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(43, 89, 143, 0.15);
    border-color: hsl(213, 66%, 45%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(213, 66%, 45%) 0%, hsl(213, 66%, 55%) 100%);
    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 {
    background: linear-gradient(135deg, hsl(213, 66%, 30%) 0%, hsl(213, 66%, 45%) 100%);
    transform: rotate(10deg) scale(1.1);
  }

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

  .service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
  }

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

  .service-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(213, 66%, 45%);
    margin-bottom: 0.5rem;
  }

  .service-terms {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
  }

  .service-badge {
    display: inline-block;
    background: hsl(213, 66%, 70%);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

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

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

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

    .service-icon {
      width: 60px;
      height: 60px;
    }

    .service-icon i {
      font-size: 1.6rem;
    }
  }

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

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

.disclaimer-header {
  text-align: center;
  margin-bottom: 50px;
}

.disclaimer-icon {
  font-size: 3.5rem;
  color: hsl(213, 66%, 45%);
  margin-bottom: 25px;
  display: inline-block;
}

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

.disclaimer-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 45px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid hsl(213, 66%, 45%);
}

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

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

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

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

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

  .disclaimer-icon {
    font-size: 2.8rem;
  }
}

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');
  
  :root {
    --primary-color: hsl(213, 66%, 45%);
    --secondary-color: hsl(213, 66%, 30%);
    --accent-color: hsl(213, 66%, 70%);
  }
  
  .policy-content {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
  }
  
  .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.25rem;
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    font-weight: 400;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    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.5rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }
  
  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
    padding: 0;
  }
  
  .info-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.25rem;
  }
  
  .contact-info {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }
  
  .contact-info h3 {
    color: var(--secondary-color);
    margin-top: 0;
  }
  
  .last-updated {
    font-style: italic;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 1rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

  :root {
    --primary-color: hsl(213, 66%, 45%);
    --secondary-color: hsl(213, 66%, 30%);
    --accent-color: hsl(213, 66%, 70%);
  }

  .policy-content {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.8;
  }

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

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

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

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

  .policy-content p {
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.05rem;
  }

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

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

  .policy-content 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: 2px solid var(--accent-color);
  }

  .policy-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .policy-intro p {
    margin-bottom: 0;
    font-size: 1.1rem;
  }

  .policy-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
  }

  .contact-box {
    background: white;
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
  }

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

  .highlight {
    background-color: rgba(66, 133, 191, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
  }

  .effective-date {
    font-style: italic;
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 1rem;
  }