:root {
            --primary-color: hsl(221, 52%, 35%);
            --secondary-color: hsl(221, 52%, 20%);
            --accent-color: hsl(221, 52%, 60%);
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Ubuntu', sans-serif;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: 'Ubuntu', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Ubuntu', sans-serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(44, 82, 130, 0.25);
        }

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

.about-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(221, 52%, 35%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-section h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(221, 52%, 35%);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.about-intro {
  background: linear-gradient(135deg, hsl(221, 52%, 35%) 0%, hsl(221, 52%, 20%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
}

.about-intro h2 {
  color: #ffffff;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 0;
}

.about-content-wrapper {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

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

.value-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid hsl(221, 52%, 60%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(221, 52%, 35%);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

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

.stats-row {
  background-color: hsl(221, 52%, 35%);
  padding: 40px 0;
  margin-top: 50px;
  border-radius: 8px;
}

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

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

.stat-label {
  color: hsl(221, 52%, 60%);
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-intro h2 {
    font-size: 2rem;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
  
  .about-image {
    height: 300px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}

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

.portfolio-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(221, 52%, 20%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

.filter-btn {
    font-family: 'Ubuntu', sans-serif;
    padding: 10px 25px;
    border: 2px solid hsl(221, 52%, 35%);
    background: transparent;
    color: hsl(221, 52%, 35%);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: hsl(221, 52%, 35%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

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

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

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

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

.portfolio-content {
    padding: 25px;
}

.portfolio-category {
    font-family: 'Ubuntu', sans-serif;
    display: inline-block;
    background: hsl(221, 52%, 60%);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-title {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(221, 52%, 20%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.portfolio-overlay .portfolio-title {
    color: #ffffff;
    margin-bottom: 10px;
}

.portfolio-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.portfolio-overlay .portfolio-description {
    color: #f0f0f0;
}

.view-details-btn {
    font-family: 'Ubuntu', sans-serif;
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: hsl(221, 52%, 35%);
    color: #ffffff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: hsl(221, 52%, 60%);
    color: #ffffff;
    transform: translateX(5px);
}

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

.modal-header {
    background: hsl(221, 52%, 35%);
    color: #ffffff;
    border-radius: 15px 15px 0 0;
    padding: 20px 30px;
}

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

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

.modal-body {
    padding: 30px;
    font-family: 'Playfair Display', serif;
}

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

.modal-body h5 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(221, 52%, 20%);
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modal-body p {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
}

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

.project-details-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.project-details-list li strong {
    color: hsl(221, 52%, 35%);
    font-family: 'Ubuntu', sans-serif;
    display: inline-block;
    min-width: 120px;
}

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

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

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

    .filter-buttons {
        gap: 10px;
    }

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

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

.advantages-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(221, 52%, 20%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.advantages-section .section-subtitle {
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    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(221, 52%, 35%), hsl(221, 52%, 60%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: hsl(221, 52%, 60%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(221, 52%, 35%), hsl(221, 52%, 60%));
    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: 'Ubuntu', sans-serif;
    color: hsl(221, 52%, 20%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

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

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

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

  #statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(221, 52%, 35%) 0%, hsl(221, 52%, 20%) 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="1" height="1" x="50" y="50" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    opacity: 0.4;
  }

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

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

  .statistics-header h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }

  .statistics-header p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

  .stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
  }

  .stat-card:hover::before {
    left: 100%;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

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

  .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

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

  .stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
    display: block;
  }

  .stat-label {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-weight: 500;
  }

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

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

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

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

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

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

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

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

    .stat-icon i {
      font-size: 28px;
    }
  }

  @media (max-width: 480px) {
    .statistics-header h2 {
      font-size: 1.75rem;
    }

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

footer {
  background: linear-gradient(135deg, hsl(221, 52%, 20%) 0%, hsl(221, 52%, 35%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 1.5rem;
  margin-top: 5rem;
  font-family: 'Playfair Display', serif;
}

footer h5 {
  font-family: 'Ubuntu', sans-serif;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

footer p, footer li, footer a {
  color: #e8eaf0;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

footer a:hover {
  color: hsl(221, 52%, 60%);
  transform: translateX(3px);
}

footer .footer-description {
  max-width: 320px;
  margin-bottom: 1.5rem;
  color: #d4d7e0;
}

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

footer ul li {
  margin-bottom: 0.7rem;
}

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

footer .contact-item i {
  margin-right: 0.7rem;
  color: hsl(221, 52%, 60%);
  font-size: 1rem;
  margin-top: 0.2rem;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #c8cad5;
  font-size: 0.9rem;
}

footer .company-name {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(221, 52%, 98%) 0%, hsl(221, 52%, 95%) 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 1.8rem 0;
  border-top: 3px solid hsl(221, 52%, 35%);
  animation: slideUp 0.5s ease-out;
}

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

#cookieNotice h4 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(221, 52%, 20%);
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

#cookieNotice p {
  color: #333;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

#cookieNotice .cookie-categories {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.2rem;
  margin-bottom: 1.3rem;
  border: 1px solid hsl(221, 52%, 85%);
}

#cookieNotice .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid hsl(221, 52%, 90%);
}

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

#cookieNotice .cookie-category-name {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(221, 52%, 25%);
  font-weight: 600;
  font-size: 0.95rem;
}

#cookieNotice .cookie-category-status {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

#cookieNotice .btn-accept-all {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
  border: none;
  padding: 0.7rem 2rem;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

#cookieNotice .btn-accept-all:hover {
  background: linear-gradient(135deg, #218838 0%, #1ba87d 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

#cookieNotice .btn-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.8rem;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

#cookieNotice .btn-reject:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

#cookieNotice .btn-manage {
  background: transparent;
  color: hsl(221, 52%, 35%);
  border: 2px solid hsl(221, 52%, 35%);
  padding: 0.65rem 1.8rem;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

#cookieNotice .btn-manage:hover {
  background: hsl(221, 52%, 35%);
  color: #ffffff;
  transform: translateY(-2px);
}

#cookieNotice .cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 768px) {
  #cookieNotice {
    padding: 1.5rem 0;
  }
  
  #cookieNotice h4 {
    font-size: 1.1rem;
  }
  
  #cookieNotice .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    width: 100%;
    text-align: center;
  }
  
  footer {
    padding: 3rem 0 1rem;
  }
  
  footer .company-name {
    font-size: 1.4rem;
  }
}

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

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

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" x="50" y="50" fill="%23304a6f" opacity="0.03"/></svg>') repeat;
    pointer-events: none;
}

.contact-section .section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(221, 52%, 20%);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

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

.contact-form-wrapper {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(48, 74, 111, 0.1);
    position: relative;
    z-index: 1;
}

.contact-form-wrapper h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8rem;
    color: hsl(221, 52%, 20%);
    margin-bottom: 25px;
}

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

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    color: #333;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: hsl(221, 52%, 60%);
    box-shadow: 0 0 0 0.2rem rgba(91, 125, 173, 0.15);
    outline: none;
}

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

.contact-form .required-mark {
    color: #dc3545;
    margin-left: 3px;
}

.contact-form .btn-submit {
    background: hsl(221, 52%, 35%);
    color: #ffffff;
    border: none;
    padding: 14px 45px;
    font-family: 'Ubuntu', 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(221, 52%, 20%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(48, 74, 111, 0.25);
}

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

.contact-info-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(48, 74, 111, 0.1);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid hsl(221, 52%, 60%);
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 45px rgba(48, 74, 111, 0.15);
}

.contact-info-card h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.3rem;
    color: hsl(221, 52%, 20%);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info-card .icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, hsl(221, 52%, 35%) 0%, hsl(221, 52%, 60%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

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

.contact-info-card p {
    margin: 0;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.contact-info-card a {
    color: hsl(221, 52%, 35%);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: hsl(221, 52%, 60%);
    text-decoration: underline;
}

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

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

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

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

.working-hours-list .time {
    color: hsl(221, 52%, 35%);
}

.map-placeholder {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(48, 74, 111, 0.1);
    text-align: center;
    margin-top: 25px;
}

.map-placeholder h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.3rem;
    color: hsl(221, 52%, 20%);
    margin-bottom: 15px;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .contact-form-wrapper {
        padding: 35px 25px;
        margin-bottom: 30px;
    }
    
    .contact-section .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .section-title {
        font-size: 1.9rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
}

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

  :root {
    --primary-color: hsl(221, 52%, 35%);
    --secondary-color: hsl(221, 52%, 20%);
    --accent-color: hsl(221, 52%, 60%);
  }

  body {
    font-family: 'Playfair Display', serif;
    color: #333;
    line-height: 1.8;
  }

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

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

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

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

  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
    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(--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;
    font-size: 1.05rem;
  }

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

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

  .intro-box p {
    margin-bottom: 0;
    color: white;
    text-align: left;
  }

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

  .contact-box p {
    margin-bottom: 0.5rem;
    text-align: left;
  }

  .cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
  }

  .cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    background-color: white;
  }

  .cookie-table tr:last-child td {
    border-bottom: none;
  }

  .cookie-table tr:hover td {
    background-color: #f8f9fa;
  }

  .highlight-box {
    background-color: #e8f0fe;
    border-left: 4px solid var(--accent-color);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }

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

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

.faq-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(221, 52%, 20%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

.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);
  transform: translateY(-2px);
}

.accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(221, 52%, 20%);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  border: none;
  transition: all 0.3s ease;
}

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

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

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

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

.accordion-body {
  padding: 1.5rem;
  background-color: #ffffff;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  border-top: 1px solid #e9ecef;
}

.accordion-body strong {
  color: hsl(221, 52%, 35%);
  font-weight: 600;
}

.accordion-body ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

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

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(221, 52%, 35%) 0%, hsl(221, 52%, 20%) 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"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 10l5 15h16l-13 10 5 15-13-10-13 10 5-15-13-10h16z" fill="rgba(255,255,255,0.03)"/></svg>');
  opacity: 0.4;
}

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

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

.newsletter-description {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  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;
}

.newsletter-input-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

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

.newsletter-submit-btn {
  padding: 1rem 2.5rem;
  background: hsl(221, 52%, 60%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: hsl(221, 52%, 50%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

.newsletter-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f8f9fa;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
}

.newsletter-benefit-icon {
  width: 20px;
  height: 20px;
  background: hsl(221, 52%, 60%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
  flex-shrink: 0;
}

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

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

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

  .newsletter-input-group {
    flex-direction: column;
    gap: 1rem;
  }

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

  .newsletter-submit-btn {
    width: 100%;
  }

  .newsletter-benefits {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

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

  .newsletter-email-input,
  .newsletter-submit-btn {
    padding: 0.875rem 1.25rem;
  }
}

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

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

  .hero-section h1 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: hsl(221, 52%, 20%);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero-section h2 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    color: hsl(221, 52%, 35%);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

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

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

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }

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

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

  .hero-advantages li {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #222;
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li::before {
    content: "\F26B";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(221, 52%, 60%);
    font-size: 1.3rem;
    font-weight: bold;
  }

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

  .btn-hero-primary {
    font-family: 'Ubuntu', sans-serif;
    background-color: hsl(221, 52%, 35%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border: 2px solid hsl(221, 52%, 35%);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-hero-primary:hover {
    background-color: hsl(221, 52%, 20%);
    border-color: hsl(221, 52%, 20%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }

  .btn-hero-secondary {
    font-family: 'Ubuntu', sans-serif;
    background-color: transparent;
    color: hsl(221, 52%, 35%);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border: 2px solid hsl(221, 52%, 35%);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-hero-secondary:hover {
    background-color: hsl(221, 52%, 35%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px 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-image-wrapper {
      margin-bottom: 2rem;
    }
  }

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

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

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

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

    .btn-hero-primary,
    .btn-hero-secondary {
      width: 100%;
      justify-content: center;
      font-size: 1rem;
      padding: 12px 24px;
    }
  }

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

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(221, 52%, 60%);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 30px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.offer-description {
  font-family: 'Playfair Display', 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: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

.deadline-block {
  background: linear-gradient(135deg, hsl(221, 52%, 60%) 0%, hsl(221, 52%, 35%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

.deadline-date {
  font-family: 'Ubuntu', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  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: 40px 0;
}

.benefits-list li {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #333333;
  padding: 20px 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: 40px;
  height: 40px;
  background: hsl(221, 52%, 35%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.discount-highlight {
  background: hsl(221, 52%, 35%);
  color: #ffffff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 40px;
}

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

.discount-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  opacity: 0.95;
}

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

.offer-btn {
  background: hsl(221, 52%, 35%);
  color: #ffffff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-btn:hover {
  background: hsl(221, 52%, 20%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

@media (max-width: 768px) {
  .offer-section {
    padding: 60px 0;
  }
  
  .offer-title {
    font-size: 36px;
  }
  
  .offer-card {
    padding: 30px 20px;
  }
  
  .deadline-date {
    font-size: 32px;
    flex-direction: column;
  }
  
  .discount-percentage {
    font-size: 42px;
  }
  
  .benefits-list li {
    font-size: 16px;
  }
}

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

.credentials-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(221, 52%, 20%);
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

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

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

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

.credential-title {
  font-family: 'Ubuntu', sans-serif;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

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

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

  .services-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(221, 52%, 20%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

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

  .nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-tabs .nav-link {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(221, 52%, 35%);
    background: #ffffff;
    border: 2px solid hsl(221, 52%, 60%);
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 5px;
  }

  .nav-tabs .nav-link:hover {
    background: hsl(221, 52%, 60%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .nav-tabs .nav-link.active {
    background: hsl(221, 52%, 35%);
    color: #ffffff;
    border-color: hsl(221, 52%, 35%);
  }

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

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(34, 60, 108, 0.15);
    border-color: hsl(221, 52%, 60%);
  }

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

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(221, 52%, 35%) 0%, hsl(221, 52%, 20%) 100%);
  }

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

  .service-card h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(221, 52%, 20%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

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

  .service-price {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(221, 52%, 35%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .service-terms {
    background: #f8f9fa;
    border-left: 4px solid hsl(221, 52%, 60%);
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
  }

  .service-terms h5 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(221, 52%, 20%);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .service-terms ul {
    margin: 0;
    padding-left: 20px;
    color: #555;
    font-size: 0.95rem;
  }

  .service-terms ul li {
    margin-bottom: 5px;
  }

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

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

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

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

    .service-card {
      padding: 25px;
      margin-bottom: 20px;
    }

    .nav-tabs .nav-link {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  }

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

.testimonials-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(221, 52%, 20%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(221, 52%, 35%) 0%, hsl(221, 52%, 25%) 100%);
  color: #ffffff;
}

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

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

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

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

.testimonial-card.detailed {
  padding: 35px;
  background: #f8f9fa;
  border: 2px solid hsl(221, 52%, 60%);
}

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

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

.rating-stars.featured i {
  color: #ffd54f;
}

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

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

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

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

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

.customer-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: hsl(221, 52%, 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

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

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

.customer-name {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(221, 52%, 20%);
  margin-bottom: 3px;
}

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

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'Ubuntu', sans-serif;
  margin-top: 5px;
}

.verified-badge i {
  font-size: 0.9rem;
}

.testimonial-card.featured .verified-badge {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}

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

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

  .blog-preview-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(221, 52%, 20%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

  .blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 3px solid hsl(221, 52%, 60%);
  }

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

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

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

  .blog-meta-item i {
    color: hsl(221, 52%, 60%);
    font-size: 0.85rem;
  }

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

  .blog-card h3 a {
    color: hsl(221, 52%, 35%);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-card h3 a:hover {
    color: hsl(221, 52%, 60%);
  }

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

  .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(221, 52%, 35%);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .blog-read-more:hover {
    color: hsl(221, 52%, 60%);
    gap: 12px;
  }

  .blog-read-more i {
    font-size: 0.9rem;
  }

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

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

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

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

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

    .blog-card-body {
      padding: 25px;
    }

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

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

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

.disclaimer-section .container {
  max-width: 900px;
}

.disclaimer-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(221, 52%, 60%) 0%, hsl(221, 52%, 35%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.disclaimer-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(221, 52%, 20%);
  text-align: center;
  margin-bottom: 40px;
}

.disclaimer-content {
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid hsl(221, 52%, 35%);
}

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

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

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

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

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

  .disclaimer-icon {
    width: 65px;
    height: 65px;
  }

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
  
  :root {
    --primary-color: hsl(221, 52%, 35%);
    --secondary-color: hsl(221, 52%, 20%);
    --accent-color: hsl(221, 52%, 60%);
  }
  
  .policy-content {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1.25rem;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: var(--accent-color);
    border-radius: 3px;
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
  }
  
  .policy-header h1 {
    color: white;
    border-bottom: none;
    margin-bottom: 0.5rem;
  }
  
  .last-updated {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
  }
  
  .info-box {
    background-color: rgba(221, 52%, 60%, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.25rem;
  }
  
  .contact-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
    border: 2px solid var(--accent-color);
  }
  
  .contact-section h3 {
    margin-top: 0;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 3rem 0;
    border: none;
  }

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

  :root {
    --primary-color: hsl(221, 52%, 35%);
    --secondary-color: hsl(221, 52%, 20%);
    --accent-color: hsl(221, 52%, 60%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Ubuntu', sans-serif;
    color: var(--secondary-color);
    font-weight: 700;
  }

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

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }

  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }

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

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

  .policy-content a:hover {
    color: var(--accent-color);
    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-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }

  .intro-section {
    background-color: hsl(221, 52%, 97%);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-color);
  }

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

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

  .contact-box a {
    color: var(--accent-color);
    font-weight: 600;
  }

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

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

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