:root {
            --primary-color: hsl(329, 52%, 32%);
            --secondary-color: hsl(329, 52%, 17%);
            --accent-color: hsl(329, 52%, 57%);
        }
        
        body {
            font-family: 'Crimson Text', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .navbar {
            background-color: #fff;
            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: 'Work Sans', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Work Sans', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(162, 38, 89, 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(162, 38, 89, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(329, 52%, 32%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-section h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(329, 52%, 17%);
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.about-intro {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 50px;
  border-left: 4px solid hsl(329, 52%, 57%);
}

.about-intro p {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #222;
}

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

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

.value-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border-top: 3px solid hsl(329, 52%, 57%);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.value-card h4 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(329, 52%, 32%);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

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

.stats-row {
  background: hsl(329, 52%, 32%);
  color: #ffffff;
  padding: 50px 0;
  margin: 60px 0;
  border-radius: 8px;
}

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

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

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

  #portfolio .section-header h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #portfolio .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(329, 52%, 32%), hsl(329, 52%, 57%));
    border-radius: 2px;
  }

  #portfolio .section-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    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: 'Work Sans', sans-serif;
    padding: 12px 30px;
    border: 2px solid hsl(329, 52%, 32%);
    background: #fff;
    color: hsl(329, 52%, 32%);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(329, 52%, 32%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(162, 43, 90, 0.3);
  }

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

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

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

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

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

  #portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(162, 43, 90, 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 .portfolio-content {
    padding: 25px;
  }

  #portfolio .portfolio-category {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    color: hsl(329, 52%, 57%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  #portfolio .portfolio-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  #portfolio .portfolio-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  #portfolio .view-details {
    font-family: 'Work Sans', sans-serif;
    color: hsl(329, 52%, 32%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  #portfolio .view-details:hover {
    color: hsl(329, 52%, 57%);
    gap: 12px;
  }

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

  #portfolio .modal-header {
    background: linear-gradient(135deg, hsl(329, 52%, 32%), hsl(329, 52%, 57%));
    color: #fff;
    border: none;
    padding: 25px 30px;
  }

  #portfolio .modal-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
  }

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

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

  #portfolio .modal-category {
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    background: hsl(329, 52%, 57%);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  #portfolio .modal-description {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
  }

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

  #portfolio .project-details h5 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  #portfolio .project-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #portfolio .project-details li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    font-size: 1rem;
  }

  #portfolio .project-details li:last-child {
    border-bottom: none;
  }

  #portfolio .project-details strong {
    color: hsl(329, 52%, 32%);
    font-weight: 600;
    margin-right: 10px;
  }

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

  @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 20px;
    }
  }

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

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

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

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

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

  #advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(329, 52%, 32%), hsl(329, 52%, 57%));
  }

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

  #advantages .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(329, 52%, 17%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #advantages .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(329, 52%, 57%);
  }

  #advantages .section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

  .advantage-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 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(329, 52%, 32%), hsl(329, 52%, 57%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

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

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

  .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(329, 52%, 32%), hsl(329, 52%, 57%));
    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);
  }

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

  .advantage-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(329, 52%, 17%);
    margin-bottom: 15px;
    text-align: center;
  }

  .advantage-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    text-align: center;
  }

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

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

    #advantages .section-subtitle {
      font-size: 1.1rem;
    }

    .advantage-card {
      margin-bottom: 25px;
    }
  }

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

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

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

    .advantage-title {
      font-size: 1.2rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;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(329, 52%, 32%), hsl(329, 52%, 57%));
  }

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

  #statistics .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(329, 52%, 17%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #statistics .section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    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: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

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

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: hsl(329, 52%, 57%);
  }

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

  #statistics .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(329, 52%, 32%), hsl(329, 52%, 57%));
    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);
  }

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

  #statistics .stat-number {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(329, 52%, 32%);
    margin-bottom: 12px;
    display: block;
    line-height: 1.2;
  }

  #statistics .stat-label {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
  }

  #statistics .stat-context {
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
  }

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

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

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

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

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(329, 52%, 17%) 0%, hsl(329, 52%, 25%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 1.5rem;
  margin-top: 5rem;
  font-family: 'Crimson Text', serif;
}

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

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

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

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

footer .company-description {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

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

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

footer .contact-info li strong {
  min-width: 110px;
  color: hsl(329, 52%, 57%);
  font-weight: 600;
}

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

footer .footer-links li {
  margin-bottom: 0.8rem;
}

footer .footer-links a {
  display: inline-block;
}

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

#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: 3px solid hsl(329, 52%, 32%);
  font-family: 'Crimson Text', serif;
}

#cookieNotice h4 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(329, 52%, 17%);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

#cookieNotice p {
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

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

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

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

#cookieNotice .cookie-category strong {
  color: hsl(329, 52%, 32%);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.3rem;
  font-family: 'Work Sans', sans-serif;
}

#cookieNotice .cookie-category span {
  color: #666666;
  font-size: 0.95rem;
}

#cookieNotice .cookie-category.required strong::after {
  content: " (Required)";
  color: #28a745;
  font-size: 0.9rem;
  font-weight: 600;
}

#cookieNotice .cookie-category.optional strong::after {
  content: " (Optional)";
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 600;
}

#cookieNotice .btn-accept-all {
  background: #28a745;
  color: #ffffff;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Work Sans', sans-serif;
}

#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;
  color: #ffffff;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Work Sans', sans-serif;
}

#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;
  color: hsl(329, 52%, 32%);
  border: 2px solid hsl(329, 52%, 32%);
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
}

#cookieNotice .btn-manage:hover {
  background: hsl(329, 52%, 32%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(142, 54, 89, 0.3);
}

#cookieNotice .cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1rem;
  }
  
  footer h5 {
    font-size: 1.2rem;
    margin-top: 2rem;
  }
  
  footer h5:first-child {
    margin-top: 0;
  }
  
  #cookieNotice {
    padding: 1.5rem 0;
  }
  
  #cookieNotice h4 {
    font-size: 1.3rem;
  }
  
  #cookieNotice .cookie-buttons {
    flex-direction: column;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    width: 100%;
    text-align: center;
  }
}

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

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

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

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

.contact-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(329, 52%, 17%);
  margin-bottom: 1rem;
  text-align: center;
}

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

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form-container {
  background: #ffffff;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(329, 52%, 32%);
  margin-bottom: 25px;
}

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

.contact-form .form-control,
.contact-form .form-control:focus {
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #fafafa;
  color: #222;
}

.contact-form .form-control:focus {
  border-color: hsl(329, 52%, 57%);
  box-shadow: 0 0 0 0.2rem rgba(186, 52, 99, 0.15);
  background: #ffffff;
  outline: none;
}

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

.contact-form .btn-submit {
  font-family: 'Work Sans', sans-serif;
  background: hsl(329, 52%, 32%);
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.contact-form .btn-submit:hover {
  background: hsl(329, 52%, 17%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 35, 71, 0.3);
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid hsl(329, 52%, 57%);
  transition: all 0.3s ease;
}

.contact-info-box:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateX(5px);
}

.contact-info-box h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(329, 52%, 32%);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-box h4 i {
  color: hsl(329, 52%, 57%);
  font-size: 1.4rem;
}

.contact-info-box p {
  margin: 8px 0;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.contact-info-box a:hover {
  color: hsl(329, 52%, 57%);
  text-decoration: underline;
}

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

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

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

.working-hours-list li strong {
  color: #222;
  font-weight: 600;
}

.contact-cta-box {
  background: linear-gradient(135deg, hsl(329, 52%, 32%) 0%, hsl(329, 52%, 17%) 100%);
  padding: 35px;
  border-radius: 12px;
  color: #ffffff;
  text-align: center;
}

.contact-cta-box h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.contact-cta-box p {
  font-size: 1.05rem;
  margin-bottom: 0;
  opacity: 0.95;
  color: #ffffff;
}

@media (max-width: 991px) {
  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-section h2 {
    font-size: 2.2rem;
  }
  
  .contact-form-container {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-section h2 {
    font-size: 1.9rem;
  }
  
  .contact-section .section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 40px;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .contact-info-box {
    padding: 25px 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  :root {
    --primary-color: hsl(329, 52%, 32%);
    --secondary-color: hsl(329, 52%, 17%);
    --accent-color: hsl(329, 52%, 57%);
  }

  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }

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

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

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

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

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

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

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

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

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

  .info-box {
    background: linear-gradient(135deg, rgba(179, 43, 92, 0.05) 0%, rgba(179, 43, 92, 0.1) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

  .cookie-type-card {
    background: #fff;
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .cookie-type-card h3 {
    margin-top: 0;
    color: var(--primary-color);
  }

  .last-updated {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: 'Work Sans', sans-serif;
  }

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

  .contact-section h2 {
    color: white;
    border-left-color: white;
  }

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

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

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

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

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

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

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

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

  .faq-accordion .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: hsl(329, 52%, 32%);
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: background-color 0.3s ease;
  }

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

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

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

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

  .faq-accordion .accordion-body {
    padding: 1.5rem;
    background-color: #fafafa;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
  }

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

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

  .faq-accordion .accordion-body strong {
    color: hsl(329, 52%, 32%);
    font-weight: 600;
  }

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

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

    .faq-intro {
      font-size: 1rem;
      margin-bottom: 2rem;
    }

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

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

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

  #newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
  }

  #newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 0;
  }

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

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

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

  #newsletter .newsletter-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    color: #f8f9fa;
    margin-bottom: 40px;
    line-height: 1.7;
  }

  #newsletter .newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }

  #newsletter .form-group {
    margin-bottom: 0;
  }

  #newsletter .email-input-wrapper {
    display: flex;
    gap: 15px;
    align-items: stretch;
  }

  #newsletter .form-control {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    transition: all 0.3s ease;
    flex: 1;
  }

  #newsletter .form-control::placeholder {
    color: #666;
  }

  #newsletter .form-control:focus {
    outline: none;
    border-color: hsl(329, 52%, 57%);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  }

  #newsletter .btn-subscribe {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 40px;
    background: hsl(329, 52%, 57%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  #newsletter .btn-subscribe:hover {
    background: hsl(329, 52%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

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

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

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

  #newsletter .benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(329, 52%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

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

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

    #newsletter h2 {
      font-size: 2rem;
    }

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

    #newsletter .newsletter-form {
      padding: 30px 20px;
    }

    #newsletter .email-input-wrapper {
      flex-direction: column;
      gap: 12px;
    }

    #newsletter .btn-subscribe {
      width: 100%;
      padding: 14px 30px;
    }

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

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

  @media (max-width: 480px) {
    #newsletter h2 {
      font-size: 1.75rem;
    }

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

    #newsletter .form-control {
      padding: 14px 18px;
      font-size: 1rem;
    }

    #newsletter .btn-subscribe {
      font-size: 1rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  .hero-section {
    background-color: #ffffff;
    padding: 80px 0 100px;
    font-family: 'Crimson Text', serif;
  }

  .hero-section h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: hsl(329, 52%, 32%);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: hsl(329, 52%, 17%);
    margin-bottom: 30px;
    line-height: 1.4;
  }

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

  .hero-description {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: left;
  }

  .hero-image-wrapper {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-advantages {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
  }

  .hero-advantages li {
    font-size: 1.05rem;
    color: #222222;
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: hsl(329, 52%, 57%);
    font-size: 1.3rem;
  }

  .hero-cta {
    margin-top: 45px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-hero-primary {
    background-color: hsl(329, 52%, 32%);
    color: #ffffff;
    padding: 14px 38px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
  }

  .btn-hero-primary:hover {
    background-color: hsl(329, 52%, 17%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(0,0,0,0.18);
  }

  .btn-hero-secondary {
    background-color: transparent;
    color: hsl(329, 52%, 32%);
    padding: 14px 38px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid hsl(329, 52%, 32%);
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-hero-secondary:hover {
    background-color: hsl(329, 52%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
  }

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

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

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

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

    .hero-advantages li {
      font-size: 1rem;
      padding-left: 30px;
    }

    .hero-cta {
      flex-direction: column;
      align-items: center;
    }

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

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

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

.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(329, 52%, 57%, 0.05);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .blog-section-header h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(329, 52%, 17%);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .blog-section-header p {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    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;
    border: 1px solid #f0f0f0;
  }

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

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

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

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

  .blog-meta-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: hsl(329, 52%, 32%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

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

  .blog-card-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(329, 52%, 17%);
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

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

  .blog-card-excerpt {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

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

  .blog-date {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
  }

  .blog-read-more {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: hsl(329, 52%, 32%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

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

  .blog-read-more::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

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

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

  .btn-view-all {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, hsl(329, 52%, 32%) 0%, hsl(329, 52%, 42%) 100%);
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(142, 42, 83, 0.25);
    border: none;
  }

  .btn-view-all:hover {
    background: linear-gradient(135deg, hsl(329, 52%, 42%) 0%, hsl(329, 52%, 32%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(142, 42, 83, 0.35);
    color: #ffffff;
  }

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

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

    .blog-section-header p {
      font-size: 1.1rem;
    }

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

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

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

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

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

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(329, 52%, 57%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.offer-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Crimson Text', serif;
  font-size: 1.25rem;
  color: #f8f9fa;
  line-height: 1.8;
  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;
}

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

.deadline-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deadline-date {
  font-family: 'Work Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  font-size: 3rem;
}

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

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

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

.benefit-icon {
  color: hsl(329, 52%, 32%);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.discount-highlight {
  background: hsl(329, 52%, 57%);
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 35px;
}

.discount-percentage {
  font-family: 'Work Sans', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.discount-text {
  font-family: 'Crimson Text', serif;
  font-size: 1.3rem;
  margin: 10px 0 0 0;
}

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

.offer-btn {
  display: inline-block;
  background: hsl(329, 52%, 32%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

  .offer-description {
    font-size: 1.1rem;
  }

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

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

  .calendar-icon {
    font-size: 2.5rem;
  }

  .discount-percentage {
    font-size: 3rem;
  }

  .benefits-list li {
    font-size: 1rem;
  }

  .offer-btn {
    font-size: 1rem;
    padding: 15px 35px;
  }
}

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

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

.testimonials-section .lead-text {
  text-align: center;
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  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;
  border-left: 4px solid hsl(329, 52%, 57%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(329, 52%, 57%), hsl(329, 52%, 32%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-size: 1.2rem;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.testimonial-location {
  color: #777;
  font-size: 0.95rem;
  margin: 0;
}

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

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

.star.empty {
  color: #ddd;
}

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

.testimonial-date {
  color: #999;
  font-size: 0.9rem;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.testimonial-card.style-alt {
  border-left: none;
  border-top: 4px solid hsl(329, 52%, 32%);
}

.testimonial-card.style-minimal {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: none;
  background: #fafafa;
}

.testimonial-card.style-featured {
  background: linear-gradient(135deg, hsl(329, 52%, 32%) 0%, hsl(329, 52%, 17%) 100%);
  color: #ffffff;
  border-left: none;
}

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

.testimonial-card.style-featured .testimonial-info h4 {
  color: #ffffff;
}

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

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

.testimonial-card.style-compact {
  padding: 20px;
}

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

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

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

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

.credentials-section .section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  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: 12px;
}

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

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

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

  .services-section .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(329, 52%, 32%);
    margin-bottom: 1rem;
    text-align: center;
  }

  .services-section .section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .service-card:hover {
    transform: translateY(-8px);
    border-color: hsl(329, 52%, 57%);
    box-shadow: 0 12px 30px rgba(146, 46, 82, 0.2);
  }

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

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

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

  .service-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(329, 52%, 17%);
    margin-bottom: 1rem;
    text-align: center;
  }

  .service-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
  }

  .service-price {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(329, 52%, 32%);
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .service-term {
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    font-style: italic;
  }

  .services-grid {
    margin-top: 3rem;
  }

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

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

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

    .service-title {
      font-size: 1.3rem;
    }

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

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

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

.disclaimer-section .section-icon {
  font-size: 3rem;
  color: hsl(329, 52%, 32%);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.disclaimer-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 2rem;
  text-align: center;
}

.disclaimer-section .disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid hsl(329, 52%, 32%);
}

.disclaimer-section .disclaimer-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

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

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

  .disclaimer-section .disclaimer-content {
    padding: 2rem 1.5rem;
  }

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  :root {
    --primary-color: hsl(329, 52%, 32%);
    --secondary-color: hsl(329, 52%, 17%);
    --accent-color: hsl(329, 52%, 57%);
  }

  .policy-content {
    font-family: 'Crimson Text', serif;
    color: #333;
    line-height: 1.8;
    font-size: 1.125rem;
  }

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

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

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

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

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

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

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

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

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

  .policy-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
  }

  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
    padding: 0;
  }

  .effective-date {
    background-color: hsl(329, 52%, 95%);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border-left: 5px solid var(--accent-color);
    margin: 2rem 0;
    font-weight: 600;
  }

  .contact-box {
    background-color: hsl(329, 52%, 97%);
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 2rem 0;
  }

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  :root {
    --primary-color: hsl(329, 52%, 32%);
    --secondary-color: hsl(329, 52%, 17%);
    --accent-color: hsl(329, 52%, 57%);
  }

  .policy-content {
    font-family: 'Crimson Text', serif;
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
  }

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

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

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

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

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

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

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

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

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

  .info-box {
    background: linear-gradient(135deg, rgba(179, 41, 94, 0.05) 0%, rgba(179, 41, 94, 0.1) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

  .last-updated {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: 'Work Sans', sans-serif;
  }

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