:root {
            --primary-color: hsl(292, 52%, 34%);
            --secondary-color: hsl(292, 52%, 19%);
            --accent-color: hsl(292, 52%, 59%);
        }
        
        body {
            font-family: 'Lora', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            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: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Lora', serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(157, 65, 129, 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%28157, 65, 129, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

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

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

  #about .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: hsl(292, 52%, 34%);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #about .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
  }

  #about .about-content {
    margin-bottom: 50px;
  }

  #about .about-text {
    padding: 20px 0;
  }

  #about .about-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(292, 52%, 34%);
    margin-bottom: 20px;
    margin-top: 30px;
  }

  #about .about-text h3:first-of-type {
    margin-top: 0;
  }

  #about .about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
  }

  #about .about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: 100%;
  }

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

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

  #about .values-section {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 50px;
  }

  #about .values-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(292, 52%, 34%);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
  }

  #about .value-item {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid hsl(292, 52%, 59%);
    transition: all 0.3s ease;
  }

  #about .value-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
  }

  #about .value-icon {
    font-size: 2rem;
    color: hsl(292, 52%, 34%);
    margin-right: 20px;
    min-width: 50px;
  }

  #about .value-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(292, 52%, 34%);
    margin-bottom: 10px;
  }

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

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

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

    #about .about-text h3 {
      font-size: 1.5rem;
    }

    #about .values-section {
      padding: 30px 20px;
    }

    #about .value-item {
      flex-direction: column;
      text-align: center;
    }

    #about .value-icon {
      margin-right: 0;
      margin-bottom: 15px;
    }

    #about .about-text p {
      text-align: left;
    }
  }

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

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

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

#portfolio .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(292, 52%, 34%);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

#portfolio .filter-btn {
    font-family: 'Oswald', sans-serif;
    padding: 12px 30px;
    border: 2px solid hsl(292, 52%, 34%);
    background: transparent;
    color: hsl(292, 52%, 34%);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
}

#portfolio .filter-btn:hover,
#portfolio .filter-btn.active {
    background: hsl(292, 52%, 34%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 68, 123, 0.3);
}

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

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

#portfolio .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(142, 68, 123, 0.25);
}

#portfolio .portfolio-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

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

#portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(142, 68, 123, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

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

#portfolio .overlay-content {
    color: #ffffff;
}

#portfolio .overlay-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

#portfolio .overlay-content .category {
    font-size: 0.9rem;
    color: hsl(292, 52%, 85%);
    font-weight: 500;
}

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

#portfolio .portfolio-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    text-transform: uppercase;
}

#portfolio .portfolio-content .category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: hsl(292, 52%, 95%);
    color: hsl(292, 52%, 34%);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#portfolio .portfolio-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

#portfolio .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

#portfolio .modal-header {
    background: linear-gradient(135deg, hsl(292, 52%, 34%) 0%, hsl(292, 52%, 19%) 100%);
    color: #ffffff;
    border: none;
    padding: 25px 30px;
}

#portfolio .modal-header .modal-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

#portfolio .modal-body {
    padding: 35px;
}

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

#portfolio .modal-body h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(292, 52%, 34%);
    margin-bottom: 15px;
    text-transform: uppercase;
}

#portfolio .modal-body p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

#portfolio .modal-body .detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

#portfolio .modal-body .detail-item:last-child {
    border-bottom: none;
}

#portfolio .modal-body .detail-label {
    font-weight: 600;
    color: #333;
}

#portfolio .modal-body .detail-value {
    color: #666;
}

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

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

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

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

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

    #portfolio .modal-body {
        padding: 25px;
    }
}

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

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

#advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(292, 52%, 59%, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

#advantages::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(292, 52%, 34%, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.advantages-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(292, 52%, 19%);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.advantage-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 35px rgba(146, 51, 127, 0.2);
    border-color: hsl(292, 52%, 59%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(292, 52%, 34%) 0%, hsl(292, 52%, 59%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(146, 51, 127, 0.3);
}

.advantage-icon i {
    font-size: 2.2rem;
    color: #ffffff;
}

.advantage-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(292, 52%, 19%);
    margin-bottom: 18px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantage-card p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

.advantage-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsla(292, 52%, 59%, 0.15);
    line-height: 1;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-number {
    color: hsla(292, 52%, 59%, 0.3);
    transform: scale(1.2);
}

@media (max-width: 991px) {
    #advantages {
        padding: 60px 0;
    }
    
    .advantages-header h2 {
        font-size: 2.3rem;
    }
    
    .advantage-card {
        margin-bottom: 30px;
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {
    .advantages-header h2 {
        font-size: 2rem;
    }
    
    .advantages-header p {
        font-size: 1.05rem;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
    }
    
    .advantage-icon i {
        font-size: 2rem;
    }
    
    .advantage-card h3 {
        font-size: 1.35rem;
    }
    
    .advantage-number {
        font-size: 2.5rem;
    }
}

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(292, 52%, 34%), hsl(292, 52%, 59%), hsl(292, 52%, 34%));
  }

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

  #statistics .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(292, 52%, 19%);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

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

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(292, 52%, 34%), hsl(292, 52%, 59%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    border-color: hsl(292, 52%, 59%);
    box-shadow: 0 8px 25px rgba(146, 64, 128, 0.2);
  }

  #statistics .stat-card:hover::before {
    transform: scaleX(1);
  }

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

  #statistics .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(146, 64, 128, 0.3);
  }

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

  #statistics .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(292, 52%, 34%);
    margin-bottom: 10px;
    line-height: 1;
  }

  #statistics .stat-label {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
  }

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

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

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

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

    #statistics .stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    #statistics .stat-card {
      padding: 25px 15px;
    }

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

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

    #statistics .stat-icon i {
      font-size: 1.7rem;
    }
  }

  @media (max-width: 576px) {
    #statistics .stats-grid {
      grid-template-columns: 1fr;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(292, 52%, 19%) 0%, hsl(292, 52%, 34%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  font-family: 'Lora', serif;
}

footer h5 {
  font-family: 'Oswald', sans-serif;
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

footer a:hover {
  color: hsl(292, 52%, 59%);
  padding-left: 5px;
}

footer .company-description {
  max-width: 350px;
  margin-bottom: 1.5rem;
}

footer .contact-info i {
  color: hsl(292, 52%, 59%);
  margin-right: 10px;
  width: 20px;
}

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

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

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

footer .business-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

footer .business-hours p {
  margin-bottom: 0.5rem;
  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: 2rem 0;
  border-top: 4px solid hsl(292, 52%, 34%);
  font-family: 'Lora', serif;
}

#cookieNotice h4 {
  font-family: 'Oswald', sans-serif;
  color: hsl(292, 52%, 19%);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#cookieNotice p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

#cookieNotice .cookie-category {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
}

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

#cookieNotice .cookie-category h6 {
  font-family: 'Oswald', sans-serif;
  color: hsl(292, 52%, 34%);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

#cookieNotice .cookie-category p {
  color: #555;
  font-size: 0.85rem;
  margin-bottom: 0;
}

#cookieNotice .cookie-category .badge {
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  margin-left: 0.5rem;
}

#cookieNotice .btn-accept-all {
  background: #28a745;
  border: none;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#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: 0.75rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

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

#cookieNotice .btn-manage {
  background: transparent;
  border: 2px solid hsl(292, 52%, 34%);
  color: hsl(292, 52%, 34%);
  padding: 0.75rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

#cookieNotice .btn-manage:hover {
  background: hsl(292, 52%, 34%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(119, 45, 88, 0.3);
}

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

@media (max-width: 768px) {
  #cookieNotice {
    padding: 1.5rem 0;
  }
  
  #cookieNotice .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  #cookieNotice .cookie-buttons button,
  #cookieNotice .cookie-buttons a {
    width: 100%;
    text-align: center;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
  }
}

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

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

.contact-section h2 {
  font-family: 'Oswald', sans-serif;
  color: hsl(292, 52%, 34%);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-section .section-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-top: 4px solid hsl(292, 52%, 34%);
}

.contact-form-wrapper h3 {
  font-family: 'Oswald', sans-serif;
  color: hsl(292, 52%, 19%);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

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

.contact-form .form-control:focus {
  border-color: hsl(292, 52%, 59%);
  box-shadow: 0 0 0 0.2rem rgba(147, 71, 131, 0.15);
  outline: none;
}

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

.contact-form .btn-submit {
  background: hsl(292, 52%, 34%);
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
}

.contact-form .btn-submit:hover {
  background: hsl(292, 52%, 19%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(147, 71, 131, 0.3);
}

.contact-info-wrapper {
  background: linear-gradient(135deg, hsl(292, 52%, 34%) 0%, hsl(292, 52%, 19%) 100%);
  border-radius: 12px;
  padding: 40px;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  height: 100%;
}

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

.contact-info-item {
  margin-bottom: 2rem;
  padding-left: 50px;
  position: relative;
}

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

.contact-info-item .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
}

.contact-info-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-item p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.98rem;
}

.contact-info-item a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.contact-info-item a:hover {
  color: hsl(292, 52%, 90%);
  border-bottom-color: hsl(292, 52%, 90%);
}

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

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

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

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

.form-required {
  color: hsl(292, 52%, 59%);
}

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

@media (max-width: 576px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 25px;
  }
  
  .contact-section h2 {
    font-size: 1.9rem;
  }
  
  .contact-info-item {
    padding-left: 45px;
  }
  
  .working-hours-list li {
    flex-direction: column;
    gap: 4px;
  }
}

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

  :root {
    --primary-color: hsl(292, 52%, 34%);
    --secondary-color: hsl(292, 52%, 19%);
    --accent-color: hsl(292, 52%, 59%);
  }

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

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

  h1 {
    font-size: 2.75rem;
    font-weight: 700;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
  }

  h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

  h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-top: 1.5rem;
  }

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

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

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

  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }

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

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

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

  .info-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

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

  .info-box strong {
    color: var(--accent-color);
  }

  .cookie-category {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--accent-color);
  }

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

  .table {
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .table thead {
    background: var(--primary-color);
    color: white;
  }

  .table tbody tr:hover {
    background: rgba(292, 52%, 59%, 0.1);
  }

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

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

  .faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(292, 52%, 59%, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .faq-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(292, 52%, 34%, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

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

  .faq-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: hsl(292, 52%, 59%);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }

  .faq-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(292, 52%, 19%);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .faq-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

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

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

  .accordion-button {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: hsl(292, 52%, 19%);
    background: #ffffff;
    padding: 22px 28px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(292, 52%, 34%) 0%, hsl(292, 52%, 19%) 100%);
    color: #ffffff;
    box-shadow: none;
  }

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

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

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

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

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

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

  .accordion-body li {
    margin-bottom: 8px;
    color: #555;
  }

  .faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, hsl(292, 52%, 34%) 0%, hsl(292, 52%, 19%) 100%);
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .faq-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
  }

  .faq-cta-button {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(292, 52%, 19%);
    background: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .faq-cta-button:hover {
    background: hsl(292, 52%, 59%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

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

    .faq-title {
      font-size: 2.2rem;
    }

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

    .accordion-button {
      font-size: 1.05rem;
      padding: 18px 20px;
    }

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

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

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

  @media (max-width: 576px) {
    .faq-title {
      font-size: 1.9rem;
    }

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

    .faq-cta {
      padding: 30px 15px;
    }
  }

#newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(292, 52%, 34%) 0%, hsl(292, 52%, 19%) 100%);
    position: relative;
    overflow: hidden;
  }

  #newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(292, 52%, 59%);
    opacity: 0.1;
    border-radius: 50%;
  }

  #newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(292, 52%, 59%);
    opacity: 0.08;
    border-radius: 50%;
  }

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

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

  .newsletter-icon {
    width: 70px;
    height: 70px;
    background: hsl(292, 52%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

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

  .newsletter-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .newsletter-description {
    font-family: 'Lora', 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: 'Lora', 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(292, 52%, 59%);
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }

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

  .newsletter-submit {
    padding: 16px 40px;
    background: hsl(292, 52%, 59%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .newsletter-submit:hover {
    background: hsl(292, 52%, 49%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }

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

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

  .newsletter-privacy a {
    color: hsl(292, 52%, 59%);
    text-decoration: none;
    font-weight: 600;
  }

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

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

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

  .newsletter-benefit svg {
    width: 20px;
    height: 20px;
    fill: hsl(292, 52%, 59%);
    flex-shrink: 0;
  }

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

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

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

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

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

    .newsletter-benefits {
      gap: 20px;
    }

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

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

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

    .newsletter-icon svg {
      width: 30px;
      height: 30px;
    }

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

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

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

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-image-wrapper {
  flex: 0 0 40%;
  position: relative;
}

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

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

.hero-text-wrapper {
  flex: 0 0 60%;
  padding-left: 20px;
}

.hero-section h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: hsl(292, 52%, 34%);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: hsl(292, 52%, 19%);
  margin-bottom: 25px;
  line-height: 1.4;
}

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

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

.hero-advantages li {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: #222;
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}

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

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

.hero-btn-primary {
  font-family: 'Oswald', sans-serif;
  background-color: hsl(292, 52%, 34%);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
  background-color: hsl(292, 52%, 19%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.hero-btn-secondary {
  font-family: 'Oswald', sans-serif;
  background-color: transparent;
  color: hsl(292, 52%, 34%);
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid hsl(292, 52%, 34%);
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background-color: hsl(292, 52%, 34%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-image-wrapper,
  .hero-text-wrapper {
    flex: 0 0 100%;
    padding-left: 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

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

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

  .services-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(292, 52%, 34%);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(145, 62, 133, 0.2);
    border-color: hsl(292, 52%, 59%);
  }

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

  .service-card:hover .service-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(292, 52%, 59%), hsl(292, 52%, 34%));
  }

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

  .service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(292, 52%, 19%);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 25px;
    flex-grow: 1;
  }

  .service-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(292, 52%, 34%);
    text-align: center;
    margin-bottom: 15px;
  }

  .service-price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
  }

  .service-terms {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: auto;
  }

  .service-terms ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #555;
  }

  .service-terms ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
  }

  .service-terms ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(292, 52%, 59%);
    font-weight: bold;
  }

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

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

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

    .service-icon-wrapper {
      width: 70px;
      height: 70px;
    }

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

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

    .service-price {
      font-size: 1.5rem;
    }
  }

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

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

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

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

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

.offer-title {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

.discount-highlight {
  background: linear-gradient(135deg, hsl(292, 52%, 59%) 0%, hsl(292, 52%, 34%) 100%);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 72px;
  font-weight: 700;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  display: inline-block;
  line-height: 1;
}

.discount-text {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: hsl(292, 52%, 34%);
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deadline-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0;
  border-left: 5px solid hsl(292, 52%, 59%);
}

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

.deadline-date {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: hsl(292, 52%, 34%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 50px;
  height: 50px;
  background: hsl(292, 52%, 59%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

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

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

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

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(292, 52%, 59%) 0%, hsl(292, 52%, 34%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

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

.btn-offer {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, hsl(292, 52%, 59%) 0%, hsl(292, 52%, 34%) 100%);
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(142, 46, 108, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-offer:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(142, 46, 108, 0.4);
  color: #fff;
}

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

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

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

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

  .discount-highlight {
    font-size: 56px;
    padding: 20px;
  }

  .discount-text {
    font-size: 20px;
  }

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

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

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

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

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

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(292, 52%, 59%, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(292, 52%, 34%, 0.03);
  border-radius: 50%;
  z-index: 0;
}

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

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

.testimonials-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(292, 52%, 19%);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid hsl(292, 52%, 59%);
  position: relative;
}

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

.testimonial-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, hsl(292, 52%, 34%) 0%, hsl(292, 52%, 19%) 100%);
  color: #ffffff;
  border-left: none;
  border-top: 4px solid hsl(292, 52%, 59%);
}

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

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

.testimonial-card.featured .customer-location {
  color: hsl(292, 52%, 85%);
}

.testimonial-card.featured .rating i {
  color: hsl(292, 52%, 59%);
}

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

.rating i {
  color: hsl(292, 52%, 59%);
  font-size: 1.1rem;
}

.rating i.far {
  color: #ddd;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-text.short {
  font-size: 1.15rem;
  font-weight: 500;
}

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

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.customer-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(292, 52%, 59%) 0%, hsl(292, 52%, 34%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(292, 52%, 34%);
}

.customer-details {
  flex: 1;
}

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

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

.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  color: hsl(292, 52%, 59%, 0.15);
  font-family: Georgia, serif;
}

.testimonial-card.featured .quote-icon {
  color: rgba(255, 255, 255, 0.15);
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(292, 52%, 34%);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
  .testimonial-card.featured {
    grid-column: span 1;
  }
}

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

  .testimonials-header h2 {
    font-size: 2.2rem;
  }

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

  .testimonial-card {
    padding: 25px;
  }

  .testimonials-stats {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }

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

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

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

  .testimonial-card {
    padding: 20px;
  }

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

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

  .blog-preview-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(292, 52%, 59%, 0.05);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .blog-preview-section .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: hsl(292, 52%, 19%);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .blog-preview-section .section-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(146, 61, 142, 0.15);
  }

  .blog-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
  }

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

  .blog-card:hover .blog-card-image img {
    transform: scale(1.1);
  }

  .blog-card-meta {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 15px;
    z-index: 2;
  }

  .blog-meta-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: hsl(292, 52%, 34%);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

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

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

  .blog-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: hsl(292, 52%, 19%);
    margin-bottom: 18px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  .blog-card:hover .blog-card-title {
    color: hsl(292, 52%, 34%);
  }

  .blog-card-excerpt {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
  }

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

  .blog-read-more {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(292, 52%, 34%);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

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

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

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

  .blog-view-all {
    text-align: center;
    margin-top: 60px;
  }

  .btn-view-all {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, hsl(292, 52%, 34%) 0%, hsl(292, 52%, 44%) 100%);
    padding: 16px 45px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(146, 61, 142, 0.3);
  }

  .btn-view-all:hover {
    background: linear-gradient(135deg, hsl(292, 52%, 44%) 0%, hsl(292, 52%, 34%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(146, 61, 142, 0.4);
    color: #ffffff;
  }

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

    .blog-preview-section .section-title {
      font-size: 2.2rem;
    }

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

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

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

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

    .blog-card-excerpt {
      font-size: 0.95rem;
    }

    .blog-meta-badge {
      font-size: 0.8rem;
      padding: 5px 12px;
    }

    .btn-view-all {
      padding: 14px 35px;
      font-size: 1rem;
    }
  }

  @media (max-width: 576px) {
    .blog-preview-section .section-title {
      font-size: 1.9rem;
    }

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

    .blog-card-footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
  }

#credentials {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }

  #credentials .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: hsl(292, 52%, 34%);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

  #credentials .credential-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
  }

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

  #credentials .credential-subtitle {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
  }

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

    #credentials .section-title {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    #credentials .credential-card {
      margin-bottom: 1rem;
    }
  }

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

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

    #credentials .credential-title {
      font-size: 1rem;
    }
  }

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

.disclaimer-section .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: hsl(292, 52%, 34%);
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disclaimer-content-wrapper {
  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);
  border-left: 5px solid hsl(292, 52%, 59%);
}

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

.disclaimer-icon-wrapper i {
  font-size: 3.5rem;
  color: hsl(292, 52%, 59%);
  opacity: 0.9;
}

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

.disclaimer-text strong {
  color: hsl(292, 52%, 34%);
  font-weight: 600;
}

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

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

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

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

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

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

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

  .disclaimer-icon-wrapper {
    margin-bottom: 25px;
  }
}

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

  :root {
    --primary-color: hsl(292, 52%, 34%);
    --secondary-color: hsl(292, 52%, 19%);
    --accent-color: hsl(292, 52%, 59%);
  }

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

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

  .policy-content h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

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

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

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

  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom-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: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

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

  .contact-box {
    background: linear-gradient(135deg, hsl(292, 52%, 95%) 0%, hsl(292, 52%, 98%) 100%);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
  }

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

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

  .highlight-box {
    background: hsl(292, 52%, 97%);
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
  }

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

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

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

  :root {
    --primary-color: hsl(292, 52%, 34%);
    --secondary-color: hsl(292, 52%, 19%);
    --accent-color: hsl(292, 52%, 59%);
  }

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

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

  .policy-content h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

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

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

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

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

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

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

  .contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

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

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

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

  .effective-date {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    font-style: italic;
  }

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