:root {
            --primary-color: hsl(237, 55%, 42%);
            --secondary-color: hsl(237, 55%, 27%);
            --accent-color: hsl(237, 55%, 67%);
        }
        
        body {
            font-family: 'Merriweather', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            color: #222;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Lato', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(66, 70, 145, 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(66, 70, 145, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #ffffff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
        }

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

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(237, 55%, 27%);
  font-weight: 700;
}

.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.about-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: hsl(237, 55%, 42%);
}

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

.about-intro {
  background: linear-gradient(135deg, hsl(237, 55%, 42%) 0%, hsl(237, 55%, 27%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  color: #fff;
}

.about-intro h1 {
  color: #fff;
  font-size: 3rem;
}

.about-intro .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #f8f9fa;
  max-width: 800px;
  margin: 0 auto;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

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

.value-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid hsl(237, 55%, 42%);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-left-color: hsl(237, 55%, 67%);
}

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

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

.stats-row {
  background: hsl(237, 55%, 42%);
  color: #fff;
  padding: 50px 0;
  margin: 60px 0;
  border-radius: 8px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}

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

.expertise-section {
  background: #f5f5f5;
  padding: 50px 40px;
  border-radius: 8px;
  margin-top: 40px;
}

.expertise-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.expertise-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

.expertise-list li {
  padding: 15px 0 15px 40px;
  position: relative;
  font-size: 1.05rem;
  color: #444;
  border-bottom: 1px solid #ddd;
}

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

.expertise-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(237, 55%, 42%);
  font-weight: 700;
  font-size: 1.3rem;
}

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

  .about-intro h1 {
    font-size: 2rem;
  }

  .about-intro .lead {
    font-size: 1.1rem;
  }

  .about-section h2 {
    font-size: 1.6rem;
  }

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

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

#portfolio {
    padding: 80px 0;
    background: #ffffff;
  }

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

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

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

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

  #portfolio .filter-btn {
    font-family: 'Lato', sans-serif;
    padding: 10px 28px;
    background: transparent;
    border: 2px solid hsl(237, 55%, 42%);
    color: hsl(237, 55%, 42%);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(237, 55%, 42%);
    color: #ffffff;
    transform: translateY(-2px);
  }

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

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

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

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

  #portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsl(237, 55%, 42%) 0%, hsl(237, 55%, 27%) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #portfolio .portfolio-item:hover .portfolio-overlay {
    opacity: 0.95;
  }

  #portfolio .overlay-content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
  }

  #portfolio .portfolio-item:hover .overlay-content {
    transform: translateY(0);
  }

  #portfolio .overlay-content h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  #portfolio .overlay-content .category {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 15px;
  }

  #portfolio .overlay-content .view-btn {
    display: inline-block;
    padding: 8px 24px;
    background: #ffffff;
    color: hsl(237, 55%, 42%);
    border-radius: 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  #portfolio .overlay-content .view-btn:hover {
    background: hsl(237, 55%, 67%);
    color: #ffffff;
  }

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

  #portfolio .portfolio-content h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
  }

  #portfolio .portfolio-content .category-tag {
    display: inline-block;
    padding: 5px 15px;
    background: hsl(237, 55%, 67%);
    color: #ffffff;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
  }

  #portfolio .portfolio-content p {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
  }

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

  .modal-header {
    background: hsl(237, 55%, 42%);
    color: #ffffff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
  }

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

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

  .modal-header .btn-close:hover {
    opacity: 1;
  }

  .modal-body {
    padding: 35px 30px;
  }

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

  .modal-body .project-category {
    display: inline-block;
    padding: 6px 18px;
    background: hsl(237, 55%, 67%);
    color: #ffffff;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .modal-body h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    margin-top: 25px;
  }

  .modal-body p {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .modal-body ul {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    padding-left: 25px;
  }

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

  .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px 30px;
  }

  .modal-footer .btn {
    font-family: 'Lato', sans-serif;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
  }

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

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

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

    #portfolio .filter-buttons {
      gap: 10px;
    }

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

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

    .modal-header {
      padding: 20px;
    }

    .modal-header .modal-title {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 576px) {
    #portfolio .portfolio-image {
      height: 220px;
    }

    #portfolio .overlay-content h3 {
      font-size: 1.3rem;
    }
  }

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

.advantages-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(237, 55%, 27%);
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

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

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(67, 56, 132, 0.15);
  border-color: hsl(237, 55%, 67%);
}

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

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

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

.advantage-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: hsl(237, 55%, 27%);
  margin-bottom: 15px;
  text-align: center;
}

.advantage-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0;
}

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

#statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(237, 55%, 42%) 0%, hsl(237, 55%, 27%) 100%);
    position: relative;
    overflow: hidden;
  }

  #statistics::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"><rect width="2" height="2" x="0" y="0" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
  }

  .statistics-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }

  .statistics-header h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
  }

  .statistics-header p {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
  }

  .stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    z-index: 1;
  }

  .stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  .stat-card:hover .stat-icon {
    background: hsl(237, 55%, 67%);
    transform: rotate(360deg);
  }

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

  .stat-number {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .stat-label {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
  }

  .stat-context {
    font-family: 'Merriweather', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-style: italic;
  }

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

  .stat-card {
    animation: countUp 0.8s ease-out forwards;
  }

  .stat-card:nth-child(1) { animation-delay: 0.1s; }
  .stat-card:nth-child(2) { animation-delay: 0.2s; }
  .stat-card:nth-child(3) { animation-delay: 0.3s; }
  .stat-card:nth-child(4) { animation-delay: 0.4s; }
  .stat-card:nth-child(5) { animation-delay: 0.5s; }
  .stat-card:nth-child(6) { animation-delay: 0.6s; }
  .stat-card:nth-child(7) { animation-delay: 0.7s; }
  .stat-card:nth-child(8) { animation-delay: 0.8s; }
  .stat-card:nth-child(9) { animation-delay: 0.9s; }
  .stat-card:nth-child(10) { animation-delay: 1s; }
  .stat-card:nth-child(11) { animation-delay: 1.1s; }
  .stat-card:nth-child(12) { animation-delay: 1.2s; }
  .stat-card:nth-child(13) { animation-delay: 1.3s; }
  .stat-card:nth-child(14) { animation-delay: 1.4s; }

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

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

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

    .stat-card {
      padding: 30px 15px;
      margin-bottom: 20px;
    }

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

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

    .stat-icon i {
      font-size: 1.75rem;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(237, 55%, 27%) 0%, hsl(237, 55%, 42%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Merriweather', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: hsl(237, 55%, 67%);
}

footer p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

footer a:hover {
  color: hsl(237, 55%, 67%);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-item i {
  margin-right: 12px;
  color: hsl(237, 55%, 67%);
  font-size: 1.1rem;
  margin-top: 3px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 25px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-policy-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-policy-links a {
  margin: 0;
  font-size: 0.9rem;
}

.footer-policy-links a:hover {
  transform: none;
}

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

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 25px 0;
  border-top: 4px solid hsl(237, 55%, 42%);
  animation: slideUp 0.5s ease;
}

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

#cookieNotice h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(237, 55%, 27%);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

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

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #dee2e6;
}

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

.cookie-category-info h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: hsl(237, 55%, 27%);
  margin-bottom: 5px;
  font-size: 1rem;
}

.cookie-category-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #666666;
}

.cookie-required {
  background: hsl(237, 55%, 67%);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-buttons .btn {
  padding: 12px 30px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  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 {
  background: #6c757d;
  color: #ffffff;
}

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

.btn-manage {
  background: hsl(237, 55%, 42%);
  color: #ffffff;
}

.btn-manage:hover {
  background: hsl(237, 55%, 27%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(73, 53, 127, 0.3);
  color: #ffffff;
}

@media (max-width: 768px) {
  #cookieNotice {
    padding: 20px 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.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: Merriweather, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(237, 55%, 42%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Lato, sans-serif; color: hsl(237, 55%, 27%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(237, 55%, 42%); }
.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(237, 55%, 27%); font-family: Lato, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(237, 55%, 27%); font-family: Lato, sans-serif; }
.blog-article a { color: hsl(237, 55%, 42%); }
.blog-article a:hover { color: hsl(237, 55%, 67%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(237, 55%, 42%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

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

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

.contact-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(237, 55%, 27%);
  margin-bottom: 1rem;
  text-align: center;
}

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

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

.contact-form-wrapper h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  color: hsl(237, 55%, 42%);
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-form .form-label {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  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;
  transition: all 0.3s ease;
  background: #fafafa;
  color: #333;
}

.contact-form .form-control:focus {
  border-color: hsl(237, 55%, 42%);
  box-shadow: 0 0 0 0.2rem rgba(66, 84, 142, 0.15);
  background: #ffffff;
  outline: none;
}

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

.contact-form .required-mark {
  color: hsl(237, 55%, 42%);
  margin-left: 3px;
}

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

.contact-form .btn-submit:hover {
  background: hsl(237, 55%, 27%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66, 84, 142, 0.3);
}

.contact-info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  border-left: 4px solid hsl(237, 55%, 42%);
}

.contact-info-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  color: hsl(237, 55%, 42%);
  margin-bottom: 30px;
  font-weight: 600;
}

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

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

.contact-info-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, hsl(237, 55%, 42%) 0%, hsl(237, 55%, 67%) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 18px;
}

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

.contact-info-content h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

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

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

.contact-info-content a:hover {
  color: hsl(237, 55%, 27%);
  text-decoration: underline;
}

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

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

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

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

.working-hours-list .time {
  color: hsl(237, 55%, 42%);
  font-weight: 500;
}

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

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

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

  .contact-info-card {
    margin-top: 30px;
  }
}

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

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

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

  .contact-form-wrapper h3,
  .contact-info-card h3 {
    font-size: 1.5rem;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
  }

  .contact-info-icon svg {
    width: 20px;
    height: 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:wght@300;400;700&display=swap');
  
  :root {
    --primary-color: hsl(237, 55%, 42%);
    --secondary-color: hsl(237, 55%, 27%);
    --accent-color: hsl(237, 55%, 67%);
  }
  
  .policy-content {
    font-family: 'Merriweather', serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 0.75rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .info-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .info-box a {
    color: white;
    border-bottom: 2px solid white;
  }
  
  .info-box a:hover {
    color: #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
  }
  
  .cookie-type-card {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cookie-type-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .last-updated {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

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

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

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

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

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.accordion-button {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    background-color: #ffffff;
    padding: 1.5rem 1.75rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: hsl(237, 55%, 42%);
    color: #ffffff;
    box-shadow: none;
}

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

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

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

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

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

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

.accordion-body ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
    color: #444;
}

.accordion-body strong {
    color: hsl(237, 55%, 42%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .accordion-button {
        font-size: 1.05rem;
        padding: 1.25rem 1.25rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
}

.newsletter-section {
  background: linear-gradient(135deg, hsl(237, 55%, 42%) 0%, hsl(237, 55%, 27%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-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"><rect width="2" height="2" x="0" y="0" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
}

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

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

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

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

.form-group-newsletter {
  position: relative;
  margin-bottom: 1rem;
}

.newsletter-input {
  width: 100%;
  padding: 18px 24px;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
}

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

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

.newsletter-submit {
  width: 100%;
  padding: 18px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(237, 55%, 42%);
  background: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

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

.benefit-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

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

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

  .newsletter-input,
  .newsletter-submit {
    padding: 16px 20px;
    font-size: 1rem;
  }

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

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

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

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

.hero-section {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, hsl(237, 55%, 97%) 0%, hsl(237, 55%, 92%) 100%);
  z-index: 0;
}

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

.hero-section h1 {
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(237, 55%, 27%);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: hsl(237, 55%, 42%);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}

.hero-advantages {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.hero-advantages li {
  font-family: 'Merriweather', serif;
  font-size: 0.95rem;
  color: #222;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.hero-advantages li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: hsl(237, 55%, 42%);
  font-size: 1.2rem;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.btn-hero-primary {
  font-family: 'Lato', sans-serif;
  background-color: hsl(237, 55%, 42%);
  color: #ffffff;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background-color: hsl(237, 55%, 27%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  font-family: 'Lato', sans-serif;
  background-color: transparent;
  color: hsl(237, 55%, 42%);
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid hsl(237, 55%, 42%);
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background-color: hsl(237, 55%, 42%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

  .hero-section::before {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
  }

  .hero-image-wrapper {
    margin-top: 2rem;
  }
}

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

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

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

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

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

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

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

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

  #blog .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(55, 63, 104, 0.15);
  }

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

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

  #blog .blog-image-wrapper {
    overflow: hidden;
    position: relative;
  }

  #blog .blog-content {
    padding: 1.8rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  #blog .blog-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #777;
    font-family: 'Lato', sans-serif;
  }

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

  #blog .blog-meta i {
    color: hsl(237, 55%, 42%);
    font-size: 0.9rem;
  }

  #blog .blog-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  #blog .blog-card:hover .blog-title {
    color: hsl(237, 55%, 42%);
  }

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

  #blog .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(237, 55%, 42%);
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
  }

  #blog .blog-link:hover {
    gap: 0.8rem;
    color: hsl(237, 55%, 27%);
  }

  #blog .blog-link i {
    font-size: 0.85rem;
  }

  #blog .view-all-btn {
    display: inline-block;
    margin: 3rem auto 0;
    padding: 0.95rem 2.5rem;
    background: hsl(237, 55%, 42%);
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid hsl(237, 55%, 42%);
  }

  #blog .view-all-btn:hover {
    background: hsl(237, 55%, 27%);
    border-color: hsl(237, 55%, 27%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 63, 104, 0.25);
    color: #ffffff;
  }

  #blog .btn-wrapper {
    text-align: center;
  }

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

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

    #blog .section-subtitle {
      font-size: 1rem;
      margin-bottom: 2.5rem;
    }

    #blog .blog-card {
      margin-bottom: 2rem;
    }

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

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

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

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

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

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px 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(0,0,0,0.12);
  border-color: hsl(237, 55%, 67%);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(237, 55%, 42%) 0%, hsl(237, 55%, 27%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, hsl(237, 55%, 67%) 0%, hsl(237, 55%, 42%) 100%);
  transform: rotate(360deg);
}

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

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

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

.service-price {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(237, 55%, 42%);
  margin-bottom: 1rem;
}

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

.service-terms i {
  color: hsl(237, 55%, 67%);
  margin-right: 0.5rem;
}

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

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

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

.offer-section {
  background: linear-gradient(135deg, hsl(237, 55%, 42%) 0%, hsl(237, 55%, 27%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.offer-description {
  font-family: 'Merriweather', serif;
  font-size: 18px;
  color: #f8f9fa;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.deadline-box {
  background: linear-gradient(135deg, hsl(237, 55%, 67%) 0%, hsl(237, 55%, 42%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

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

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

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

.benefits-list li {
  font-family: 'Merriweather', serif;
  font-size: 17px;
  color: #333;
  padding: 18px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

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

.benefit-icon {
  width: 28px;
  height: 28px;
  background: hsl(237, 55%, 42%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}

.offer-cta {
  text-align: center;
}

.offer-btn {
  display: inline-block;
  background: hsl(237, 55%, 42%);
  color: #fff;
  font-family: 'Lato', 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(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-btn:hover {
  background: hsl(237, 55%, 27%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.discount-highlight {
  display: inline-block;
  background: hsl(237, 55%, 67%);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
}

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

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

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

  .offer-card {
    padding: 35px 25px;
  }

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

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

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

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

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

  #credentials .credential-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
  }

  #credentials .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

    #credentials .credential-card {
      padding: 20px 15px;
    }

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

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

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

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

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

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

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(237, 55%, 42%) 0%, hsl(237, 55%, 67%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  flex-shrink: 0;
}

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

.testimonial-name {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

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

.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

.star {
  color: #ffc107;
  font-size: 1.1rem;
}

.star.empty {
  color: #ddd;
}

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

.testimonial-date {
  color: #999;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: auto;
}

.testimonial-card.short {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.testimonial-card.featured {
  border-left: 4px solid hsl(237, 55%, 42%);
  background: linear-gradient(135deg, hsl(237, 55%, 97%) 0%, #ffffff 100%);
}

.testimonial-card.medium {
  border-left: 4px solid hsl(237, 55%, 27%);
}

.quote-icon {
  color: hsl(237, 55%, 67%);
  font-size: 2rem;
  opacity: 0.3;
  margin-bottom: 10px;
}

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

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

.disclaimer-section h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(237, 55%, 27%);
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

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

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

.disclaimer-icon i {
  font-size: 4rem;
  color: hsl(237, 55%, 42%);
  opacity: 0.9;
}

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

.disclaimer-text p {
  margin-bottom: 0;
}

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

  .disclaimer-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

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

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

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

@media (max-width: 576px) {
  .disclaimer-section h2 {
    font-size: 1.75rem;
  }

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

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

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Merriweather:wght@300;400;700&display=swap');
  
  :root {
    --primary-color: hsl(237, 55%, 42%);
    --secondary-color: hsl(237, 55%, 27%);
    --accent-color: hsl(237, 55%, 67%);
  }
  
  .policy-content {
    font-family: 'Merriweather', serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 0.75rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .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: 2rem 0;
    border-radius: 0.25rem;
  }
  
  .contact-info {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }
  
  .contact-info h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-info a {
    color: white;
    text-decoration: underline;
  }
  
  .last-updated {
    font-style: italic;
    color: #6c757d;
    font-size: 0.95rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:wght@300;400;700&display=swap');
  
  :root {
    --primary-color: hsl(237, 55%, 42%);
    --secondary-color: hsl(237, 55%, 27%);
    --accent-color: hsl(237, 55%, 67%);
  }
  
  .policy-content {
    font-family: 'Merriweather', serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    border-bottom: 4px solid var(--accent-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;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .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(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .info-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .info-box a {
    color: white;
    border-bottom: 2px solid white;
  }
  
  .info-box a:hover {
    color: #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
  }
  
  .effective-date {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .section-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 3rem 0;
  }