:root {
            --primary-color: hsl(269, 50%, 38%);
            --secondary-color: hsl(269, 50%, 23%);
            --accent-color: hsl(269, 50%, 63%);
        }
        
        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.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-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(103, 58, 183, 0.25);
        }

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

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

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 20px;
}

.about-section h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: hsl(269, 50%, 63%);
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: hsl(269, 50%, 38%);
}

.about-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.about-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 3rem;
}

.about-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
}

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

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

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

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

.value-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid hsl(269, 50%, 63%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  color: hsl(269, 50%, 38%);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

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

.stats-row {
  background: hsl(269, 50%, 38%);
  color: #ffffff;
  padding: 3rem 0;
  margin: 4rem 0;
  border-radius: 12px;
}

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

.stat-number {
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(269, 50%, 63%);
  display: block;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

.filter-btn:hover,
.filter-btn.active {
    background: hsl(269, 50%, 38%);
    color: #fff;
}

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

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

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

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    padding: 25px 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 80%, transparent 100%);
}

.portfolio-category {
    display: inline-block;
    padding: 5px 12px;
    background: hsl(269, 50%, 63%);
    color: #fff;
    font-size: 0.75rem;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    border-radius: 15px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

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

.modal-header {
    background: hsl(269, 50%, 38%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 20px 30px;
}

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

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

.modal-body {
    padding: 30px;
    color: #333;
}

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

.project-details {
    margin-top: 20px;
}

.project-details h5 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: hsl(269, 50%, 23%);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.project-details p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

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

.project-info-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
}

.project-info-list li strong {
    color: hsl(269, 50%, 23%);
    font-family: 'Lato', sans-serif;
}

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

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

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

    .filter-buttons {
        gap: 10px;
    }

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

.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(269, 50%, 23%);
    margin-bottom: 1rem;
    text-align: center;
}

.advantages-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    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(269, 50%, 38%), hsl(269, 50%, 63%));
    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(106, 63, 121, 0.2);
    border-color: hsl(269, 50%, 63%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(269, 50%, 38%), hsl(269, 50%, 63%));
    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(269, 50%, 23%);
    margin-bottom: 15px;
    text-align: center;
}

.advantage-card p {
    font-size: 0.95rem;
    color: #555;
    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;
    }
}

#statistics {
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(269, 50%, 38%) 0%, hsl(269, 50%, 23%) 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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

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

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

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

#statistics .stats-grid {
  position: relative;
  z-index: 1;
}

#statistics .stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  margin-bottom: 30px;
}

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

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

#statistics .stat-card:hover .stat-icon {
  background: #ffffff;
  color: hsl(269, 50%, 38%);
  transform: scale(1.1) rotate(5deg);
}

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

#statistics .stat-label {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}

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

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

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

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

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

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

  #statistics .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }
}

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

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

footer {
  background: linear-gradient(135deg, hsl(269, 50%, 23%) 0%, hsl(269, 50%, 38%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Merriweather', serif;
}

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

footer p, footer ul, footer a {
  font-size: 0.95rem;
  line-height: 1.8;
}

footer .company-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

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

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

footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: hsl(269, 50%, 63%);
  padding-left: 5px;
}

footer .contact-info i {
  width: 20px;
  margin-right: 8px;
  color: hsl(269, 50%, 63%);
}

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

#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: 3px solid hsl(269, 50%, 38%);
  font-family: 'Merriweather', serif;
}

#cookieNotice h4 {
  font-family: 'Lato', sans-serif;
  color: hsl(269, 50%, 23%);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

#cookieNotice p {
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

#cookieNotice .cookie-category {
  padding: 8px 0;
  color: #333333;
  font-size: 0.9rem;
}

#cookieNotice .cookie-category strong {
  color: hsl(269, 50%, 23%);
  font-weight: 600;
}

#cookieNotice .cookie-category.required {
  color: #555555;
}

#cookieNotice .btn-accept-all {
  background: #28a745;
  border: none;
  color: #ffffff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
  margin-right: 10px;
  margin-bottom: 10px;
}

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

#cookieNotice .btn-reject {
  background: #6c757d;
  border: none;
  color: #ffffff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
  margin-right: 10px;
  margin-bottom: 10px;
}

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

#cookieNotice .btn-manage {
  background: transparent;
  border: 2px solid hsl(269, 50%, 38%);
  color: hsl(269, 50%, 38%);
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

#cookieNotice .btn-manage:hover {
  background: hsl(269, 50%, 38%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-top: 25px;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 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(269, 50%, 38%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Lato, sans-serif; color: hsl(269, 50%, 23%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(269, 50%, 38%); }
.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(269, 50%, 23%); font-family: Lato, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(269, 50%, 23%); font-family: Lato, sans-serif; }
.blog-article a { color: hsl(269, 50%, 38%); }
.blog-article a:hover { color: hsl(269, 50%, 63%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(269, 50%, 38%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

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

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

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

.contact-form-wrapper h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    color: hsl(269, 50%, 38%);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.contact-form .form-control,
.contact-form .form-control:focus {
    border: 2px solid #e0e0e0;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
    font-family: 'Merriweather', serif;
    color: #333;
    background: #ffffff;
}

.contact-form .form-control:focus {
    border-color: hsl(269, 50%, 38%);
    box-shadow: 0 0 0 0.2rem rgba(116, 64, 135, 0.15);
    outline: 0;
}

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

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

.contact-form .btn-submit:hover {
    background: hsl(269, 50%, 23%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116, 64, 135, 0.3);
}

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

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

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

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

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

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

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

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

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

.contact-info-content a:hover {
    color: hsl(269, 50%, 83%);
    text-decoration: underline;
}

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

.business-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

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

.business-hours-list .day {
    font-weight: 600;
}

@media (max-width: 991px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        margin-bottom: 30px;
    }
}

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

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

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

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

@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(269, 50%, 38%);
    --secondary-color: hsl(269, 50%, 23%);
    --accent-color: hsl(269, 50%, 63%);
  }
  
  .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);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
    font-weight: 900;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
  }
  
  .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;
  }
  
  .policy-intro {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .policy-intro p {
    margin-bottom: 0;
    font-size: 1.1rem;
  }
  
  .cookie-type-card {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-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);
  }
  
  .cookie-type-card h3 {
    margin-top: 0;
    color: var(--secondary-color);
  }
  
  .contact-box {
    background-color: var(--accent-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-box h2 {
    color: white;
    border-left-color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: white;
    border-bottom-color: white;
    font-weight: 700;
  }
  
  .contact-box a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
  }
  
  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-top: 1rem;
  }
  
  strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

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

.faq-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(269, 50%, 23%);
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.faq-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: hsl(269, 50%, 63%);
}

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(269, 50%, 38%) 0%, hsl(269, 50%, 23%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<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;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

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

.newsletter-description {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  margin-bottom: 35px;
  line-height: 1.7;
}

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

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

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

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

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

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

.newsletter-submit:hover {
  background: hsl(269, 50%, 53%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.newsletter-privacy {
  font-family: 'Merriweather', serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
  line-height: 1.5;
}

.newsletter-privacy a {
  color: hsl(269, 50%, 63%);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

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

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

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

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

  .newsletter-submit {
    padding: 14px 30px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Merriweather:wght@300;400;700&display=swap');

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

  .hero-section h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: hsl(269, 50%, 23%);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: hsl(269, 50%, 38%);
    margin-bottom: 2rem;
    line-height: 1.4;
  }

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

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

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

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

  .hero-content {
    padding: 40px;
  }

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

  .advantages-list li {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: #333;
    padding: 12px 0 12px 45px;
    position: relative;
    line-height: 1.6;
  }

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

  .advantages-list li::after {
    content: '✓';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
  }

  .cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }

  .btn-primary-hero {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 40px;
    background: hsl(269, 50%, 38%);
    color: #fff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .btn-primary-hero:hover {
    background: hsl(269, 50%, 23%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }

  .btn-secondary-hero {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 40px;
    background: transparent;
    color: hsl(269, 50%, 38%);
    border: 3px solid hsl(269, 50%, 38%);
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }

  .btn-secondary-hero:hover {
    background: hsl(269, 50%, 38%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

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

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

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

    .hero-content {
      padding: 30px 15px;
    }

    .hero-image-wrapper {
      margin-bottom: 40px;
    }
  }

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

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

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

    .advantages-list li {
      font-size: 1rem;
      padding-left: 40px;
    }

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

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

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

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

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

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

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(269, 50%, 38%) 0%, hsl(269, 50%, 63%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  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: 0.2rem;
}

.testimonial-location {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

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

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

.star.empty {
  color: #ddd;
}

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

.testimonial-text strong {
  color: hsl(269, 50%, 38%);
  font-weight: 600;
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(269, 50%, 38%) 0%, hsl(269, 50%, 23%) 100%);
  color: #ffffff;
}

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

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

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

.testimonial-card.featured .testimonial-text strong {
  color: hsl(269, 50%, 93%);
}

.testimonial-card.featured .testimonial-date {
  color: rgba(255,255,255,0.7);
}

.testimonial-card.compact {
  padding: 1.5rem;
}

.testimonial-card.compact .testimonial-avatar {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

.testimonial-card.compact .testimonial-name {
  font-size: 1.1rem;
}

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

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.promo-offer-section {
  background: linear-gradient(135deg, hsl(269, 50%, 38%) 0%, hsl(269, 50%, 23%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.promo-badge {
  display: inline-block;
  background: hsl(269, 50%, 63%);
  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;
}

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

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

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

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

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

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

.calendar-icon {
  width: 50px;
  height: 50px;
  fill: #fff;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-family: 'Merriweather', serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  fill: hsl(269, 50%, 38%);
  flex-shrink: 0;
  margin-top: 2px;
}

.discount-badge {
  display: inline-block;
  background: hsl(269, 50%, 38%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 64px;
  font-weight: 900;
  padding: 20px 40px;
  border-radius: 15px;
  margin: 30px 0;
  line-height: 1;
}

.discount-text {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

.promo-cta-btn {
  display: inline-block;
  background: hsl(269, 50%, 38%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.promo-cta-btn:hover {
  background: hsl(269, 50%, 23%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

  .calendar-icon {
    width: 40px;
    height: 40px;
  }

  .discount-badge {
    font-size: 48px;
    padding: 15px 30px;
  }

  .promo-cta-btn {
    font-size: 18px;
    padding: 15px 40px;
  }
}

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

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

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

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

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

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

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

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

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

.blog-meta-item i {
  color: hsl(269, 50%, 38%);
}

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

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

.blog-card-title a:hover {
  color: hsl(269, 50%, 38%);
}

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

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

.blog-read-more:hover {
  color: hsl(269, 50%, 23%);
  gap: 0.8rem;
}

.blog-view-all {
  text-align: center;
  margin-top: 3rem;
}

.btn-view-all {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: hsl(269, 50%, 38%);
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-view-all:hover {
  background: hsl(269, 50%, 23%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

  .blog-card-img {
    height: 220px;
  }

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

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

  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

.credential-card {
  background: #fff;
  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-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

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

.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.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(269, 50%, 38%), hsl(269, 50%, 63%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

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

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: hsl(269, 50%, 63%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(269, 50%, 38%), hsl(269, 50%, 63%));
    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 {
    transform: rotate(360deg) scale(1.1);
  }

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

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

  .service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    min-height: 120px;
  }

  .service-price {
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: hsl(269, 50%, 38%);
    margin-bottom: 0.5rem;
  }

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

  .service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: hsl(269, 50%, 63%);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
  }

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

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

    .service-description {
      min-height: auto;
    }
  }

.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: #222;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.disclaimer-icon i {
  font-size: 4rem;
  color: hsl(269, 50%, 38%);
  opacity: 0.9;
}

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

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-section h2 {
    font-size: 2rem;
  }
  
  .disclaimer-icon i {
    font-size: 3rem;
  }
  
  .disclaimer-content {
    padding: 1.5rem;
  }
  
  .disclaimer-content p {
    font-size: 1rem;
    text-align: left;
  }
}

@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(269, 50%, 38%);
    --secondary-color: hsl(269, 50%, 23%);
    --accent-color: hsl(269, 50%, 63%);
  }
  
  .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);
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
    font-weight: 900;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    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: 700;
    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-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: 4px solid var(--accent-color);
  }
  
  .effective-date {
    background-color: hsl(269, 50%, 95%);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border-left: 5px solid var(--accent-color);
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--secondary-color);
  }
  
  .contact-box {
    background-color: hsl(269, 50%, 97%);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2.5rem;
    border: 2px solid var(--accent-color);
  }
  
  .contact-box h3 {
    color: var(--secondary-color);
    margin-top: 0;
  }
  
  .highlight-box {
    background-color: hsl(269, 50%, 98%);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 5px solid var(--primary-color);
    margin: 1.5rem 0;
  }

@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(269, 50%, 38%);
    --secondary-color: hsl(269, 50%, 23%);
    --accent-color: hsl(269, 50%, 63%);
  }
  
  .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);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
    font-weight: 900;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }
  
  .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: 700;
    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: 700;
  }
  
  .effective-date {
    background-color: hsl(269, 50%, 95%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: white;
    border-bottom-color: white;
  }
  
  .contact-box a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 2rem 0;
    border: none;
  }