:root {
            --primary-color: hsl(259, 31%, 44%);
            --secondary-color: hsl(259, 31%, 29%);
            --accent-color: hsl(259, 31%, 69%);
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6, .navbar-brand {
            font-family: 'Ubuntu', sans-serif;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            font-family: 'Ubuntu', sans-serif;
        }
        
        .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, 73, 114, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28103, 73, 114, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.about-section {
    font-family: 'Playfair Display', 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: 'Ubuntu', sans-serif;
    color: hsl(259, 31%, 29%);
  }

  .about-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    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(259, 31%, 44%);
  }

  .about-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: hsl(259, 31%, 44%);
  }

  .about-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(259, 31%, 44%);
  }

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

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

  .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(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

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

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

  .value-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
  }

  .value-card p {
    margin: 0;
    color: #555;
    line-height: 1.7;
  }

  .mission-vision-box {
    background: hsl(259, 31%, 44%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
  }

  .mission-vision-box h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
  }

  .mission-vision-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: #f8f9fa;
  }

  .stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 3rem 0;
    padding: 2rem 0;
    background: #f8f9fa;
    border-radius: 10px;
  }

  .stat-item {
    text-align: center;
    padding: 1rem;
    min-width: 150px;
  }

  .stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(259, 31%, 44%);
    display: block;
    margin-bottom: 0.5rem;
  }

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

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

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

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

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

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

    .mission-vision-box {
      padding: 2rem;
    }
  }

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

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

  .portfolio-intro {
    font-family: 'Playfair Display', serif;
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

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

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

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(259, 31%, 44%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

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

  .portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
  }

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

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

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

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

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

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

  .overlay-icon {
    color: #fff;
    font-size: 2.5rem;
    transform: scale(0);
    transition: transform 0.4s ease;
  }

  .portfolio-item:hover .overlay-icon {
    transform: scale(1);
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(259, 31%, 44%);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

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

  .portfolio-description {
    font-family: 'Playfair Display', serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(259, 31%, 44%) 0%, hsl(259, 31%, 29%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 30px;
  }

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

  .modal-category {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(259, 31%, 44%);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .modal-description {
    font-family: 'Playfair Display', serif;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }

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

  .project-details h5 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(259, 31%, 29%);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .project-details ul {
    font-family: 'Playfair Display', serif;
    color: #555;
    line-height: 1.8;
  }

  .project-details ul li {
    margin-bottom: 8px;
  }

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

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

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

    .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(259, 31%, 29%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

.advantage-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 5px 20px 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(259, 31%, 44%) 0%, hsl(259, 31%, 69%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(259, 31%, 69%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(259, 31%, 44%) 0%, hsl(259, 31%, 69%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    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(259, 31%, 29%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(259, 31%, 44%) 0%, hsl(259, 31%, 29%) 100%);
    position: relative;
    overflow: hidden;
}

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

.statistics-section .section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.statistics-section .section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: #ffffff;
}

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

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

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

.stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(259, 31%, 29%);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #555555;
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-context {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: #777777;
    font-style: italic;
}

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

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

footer {
  background: linear-gradient(135deg, hsl(259, 31%, 29%) 0%, hsl(259, 31%, 44%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Playfair Display', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: hsl(259, 31%, 69%);
}

footer p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}

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

footer a:hover {
  color: hsl(259, 31%, 69%);
  transform: translateX(5px);
}

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

.footer-contact-item i {
  margin-right: 12px;
  color: hsl(259, 31%, 69%);
  font-size: 1.1rem;
  min-width: 20px;
}

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

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

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

#cookieNotice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  width: 90%;
  z-index: 9999;
  padding: 30px;
  border: 2px solid hsl(259, 31%, 69%);
}

#cookieNotice h5 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(259, 31%, 29%);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

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

.cookie-category {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: #333;
  font-size: 0.9rem;
}

.cookie-category strong {
  color: hsl(259, 31%, 29%);
  font-weight: 600;
  margin-right: 8px;
}

.cookie-category-required {
  color: #28a745;
  font-size: 0.8rem;
  margin-left: 5px;
}

.cookie-category-optional {
  color: #6c757d;
  font-size: 0.8rem;
  margin-left: 5px;
}

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

.cookie-btn {
  flex: 1;
  min-width: 150px;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

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

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

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

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

.cookie-btn-manage {
  background: hsl(259, 31%, 44%);
  color: #ffffff;
}

.cookie-btn-manage:hover {
  background: hsl(259, 31%, 29%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 64, 129, 0.3);
  color: #ffffff;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  #cookieNotice {
    bottom: 10px;
    width: 95%;
    padding: 20px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    min-width: 100%;
  }
}

.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(259, 31%, 44%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Ubuntu, sans-serif; color: hsl(259, 31%, 29%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(259, 31%, 44%); }
.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(259, 31%, 29%); font-family: Ubuntu, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(259, 31%, 29%); font-family: Ubuntu, sans-serif; }
.blog-article a { color: hsl(259, 31%, 44%); }
.blog-article a:hover { color: hsl(259, 31%, 69%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(259, 31%, 44%); 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;
}

.contact-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(259, 31%, 29%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid hsl(259, 31%, 44%);
}

.contact-info-item {
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(259, 31%, 44%), hsl(259, 31%, 69%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.contact-info-item h4 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(259, 31%, 29%);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-item p {
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-item a {
    color: hsl(259, 31%, 44%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: hsl(259, 31%, 29%);
}

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

.contact-form-card h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(259, 31%, 29%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-label {
    font-family: 'Ubuntu', sans-serif;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

.form-control:focus, .form-select:focus {
    border-color: hsl(259, 31%, 44%);
    box-shadow: 0 0 0 0.2rem rgba(103, 77, 133, 0.15);
}

.form-control::placeholder {
    color: #999;
}

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

.btn-submit {
    font-family: 'Ubuntu', sans-serif;
    background: linear-gradient(135deg, hsl(259, 31%, 44%), hsl(259, 31%, 29%));
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 77, 133, 0.3);
}

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

.working-hours-list li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

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

.working-hours-list strong {
    color: #333;
    display: inline-block;
    min-width: 120px;
}

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

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .btn-submit {
        width: 100%;
    }
}

@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(259, 31%, 44%);
    --secondary-color: hsl(259, 31%, 29%);
    --accent-color: hsl(259, 31%, 69%);
  }

  body {
    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: 4px solid var(--primary-color);
  }

  .policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
  }

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

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

  .policy-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }

  .policy-content a:hover {
    color: var(--secondary-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.8rem;
  }

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

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(259, 31%, 85%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .contact-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .contact-box h3 {
    color: white;
    margin-bottom: 1.5rem;
  }

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

  .contact-box a {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }

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

  .cookie-category {
    background-color: #f8f9fa;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }

  .cookie-category:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
  }

  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }

  .table-cookies {
    margin: 2rem 0;
  }

  .table-cookies th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
  }

  .table-cookies td {
    vertical-align: middle;
  }

.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(259, 31%, 96%) 0%, hsl(259, 31%, 98%) 100%);
  font-family: 'Playfair Display', serif;
}

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

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

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

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

.faq-accordion .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(259, 31%, 29%);
  background: #ffffff;
  padding: 1.5rem 1.25rem;
  border: none;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: hsl(259, 31%, 44%);
  color: #ffffff;
}

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

.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='%23695B7C'%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 1.25rem;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  background: #ffffff;
}

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

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(259, 31%, 44%) 0%, hsl(259, 31%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(259, 31%, 69%);
    opacity: 0.1;
    border-radius: 50%;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(259, 31%, 69%);
    opacity: 0.08;
    border-radius: 50%;
}

.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: 20px;
    text-align: center;
}

.newsletter-description {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    color: #f8f9fa;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.newsletter-input-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    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(259, 31%, 69%);
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.newsletter-submit-btn {
    padding: 16px 40px;
    background: hsl(259, 31%, 69%);
    color: #222;
    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: #ffffff;
    color: hsl(259, 31%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.newsletter-benefit-icon {
    width: 22px;
    height: 22px;
    background: hsl(259, 31%, 69%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-weight: bold;
    flex-shrink: 0;
}

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

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

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

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

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

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

    .newsletter-benefits {
        gap: 20px;
        margin-top: 25px;
    }

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

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

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

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

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

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text-wrapper {
  margin-bottom: 50px;
}

.hero-badge {
  display: inline-block;
  background: hsl(259, 31%, 69%);
  color: hsl(259, 31%, 29%);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'Ubuntu', sans-serif;
}

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

.hero-section h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(259, 31%, 44%);
  margin-bottom: 25px;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 35px 0;
}

.hero-features li {
  padding: 12px 0;
  color: #222;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  line-height: 1.6;
}

.hero-features li i {
  color: hsl(259, 31%, 44%);
  font-size: 1.3rem;
  margin-right: 15px;
  min-width: 25px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.btn-hero-primary {
  background: hsl(259, 31%, 44%);
  color: #ffffff;
  padding: 14px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2px solid hsl(259, 31%, 44%);
  display: inline-block;
}

.btn-hero-primary:hover {
  background: hsl(259, 31%, 29%);
  border-color: hsl(259, 31%, 29%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-hero-secondary {
  background: transparent;
  color: hsl(259, 31%, 44%);
  padding: 14px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2px solid hsl(259, 31%, 44%);
  display: inline-block;
}

.btn-hero-secondary:hover {
  background: hsl(259, 31%, 44%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.hero-image-wrapper {
  margin-top: 50px;
  text-align: center;
}

.hero-image-wrapper img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offer-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    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 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
  }

  .discount-circle {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, hsl(259, 31%, 44%), hsl(259, 31%, 29%));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .discount-percent {
    font-family: 'Ubuntu', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
  }

  .discount-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 5px;
  }

  .deadline-box {
    background: linear-gradient(135deg, hsl(259, 31%, 69%) 0%, hsl(259, 31%, 44%) 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    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: 36px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .calendar-icon {
    font-size: 40px;
  }

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

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

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

  .benefit-icon {
    width: 40px;
    height: 40px;
    background: hsl(259, 31%, 44%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

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

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

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

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

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

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

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

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

    .discount-circle {
      width: 120px;
      height: 120px;
    }

    .discount-percent {
      font-size: 36px;
    }
  }

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

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

  .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;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

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

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

    .credential-card {
      padding: 20px 10px;
    }

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

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

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

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

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

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

.blog-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 3px solid hsl(259, 31%, 44%);
}

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

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

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

.blog-date i, .blog-reading-time i {
  color: hsl(259, 31%, 44%);
  font-size: 1rem;
}

.blog-card-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: hsl(259, 31%, 29%);
  margin-bottom: 1rem;
  line-height: 1.4;
}

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

.blog-card-title a:hover {
  color: hsl(259, 31%, 44%);
}

.blog-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(259, 31%, 44%);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Ubuntu', sans-serif;
}

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

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

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

.view-all-btn:hover {
  background: hsl(259, 31%, 29%);
  border-color: hsl(259, 31%, 29%);
  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-section {
    padding: 60px 0;
  }

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

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

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

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

  .view-all-btn {
    padding: 12px 32px;
    font-size: 1rem;
  }
}

.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(259, 31%, 29%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

.testimonial-card.style-1 {
  border-left: 4px solid hsl(259, 31%, 44%);
}

.testimonial-card.style-2 {
  border-top: 4px solid hsl(259, 31%, 69%);
}

.testimonial-card.style-3 {
  background: linear-gradient(to bottom right, #ffffff 0%, #f8f9fa 100%);
}

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

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

.rating i.empty {
  color: #e0e0e0;
}

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

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(259, 31%, 69%) 0%, hsl(259, 31%, 44%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

.author-name {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: hsl(259, 31%, 29%);
  font-size: 1.05rem;
  margin-bottom: 3px;
}

.author-location {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-highlight {
  background: hsl(259, 31%, 95%);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-style: italic;
  color: hsl(259, 31%, 29%);
  font-weight: 500;
}

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

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

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

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

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: hsl(259, 31%, 69%);
}

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

.service-card:hover .service-icon {
  transform: rotate(360deg);
  background: linear-gradient(135deg, hsl(259, 31%, 69%) 0%, hsl(259, 31%, 44%) 100%);
}

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

.service-card h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(259, 31%, 29%);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.service-price {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(259, 31%, 44%);
  font-size: 1.8rem;
  font-weight: 700;
}

.service-duration {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

.service-btn {
  background: hsl(259, 31%, 44%);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.service-btn:hover {
  background: hsl(259, 31%, 29%);
  color: #ffffff;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-section h2 {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
}

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

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

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

.disclaimer-icon i {
  font-size: 3.5rem;
  color: hsl(259, 31%, 44%);
  opacity: 0.9;
}

.disclaimer-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: hsl(259, 31%, 29%);
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

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

.disclaimer-highlight {
  background: #f8f9fa;
  padding: 25px;
  border-left: 4px solid hsl(259, 31%, 44%);
  border-radius: 6px;
  margin-top: 25px;
  font-size: 0.95rem;
  color: #444444;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 50px 0;
  }
  
  .disclaimer-container {
    padding: 35px 25px;
  }
  
  .disclaimer-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .disclaimer-content {
    font-size: 1rem;
    text-align: left;
  }
  
  .disclaimer-icon i {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .disclaimer-container {
    padding: 30px 20px;
  }
  
  .disclaimer-title {
    font-size: 1.6rem;
  }
  
  .disclaimer-highlight {
    padding: 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(259, 31%, 44%);
    --secondary-color: hsl(259, 31%, 29%);
    --accent-color: hsl(259, 31%, 69%);
  }

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

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

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

  .policy-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    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);
  }

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

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

  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }

  .policy-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
  }

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

  .policy-content li {
    margin-bottom: 0.8rem;
  }

  .info-box {
    background-color: rgba(259, 31%, 69%, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

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

  .contact-info h3 {
    color: var(--accent-color);
  }

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

  .contact-info a:hover {
    color: var(--accent-color);
  }

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

  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }

@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(259, 31%, 44%);
    --secondary-color: hsl(259, 31%, 29%);
    --accent-color: hsl(259, 31%, 69%);
  }

  .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(--primary-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.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }

  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }

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

  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }

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

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

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

  .info-box {
    background-color: hsl(259, 31%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

  .contact-info {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 3rem;
  }

  .contact-info h3 {
    color: white;
    margin-bottom: 1rem;
  }

  .contact-info p {
    margin-bottom: 0.5rem;
  }

  .contact-info a {
    color: var(--accent-color);
  }

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

  .last-updated {
    font-style: italic;
    color: #666;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
  }