:root {
            --primary-color: hsl(314, 58%, 34%);
            --secondary-color: hsl(314, 58%, 19%);
            --accent-color: hsl(314, 58%, 59%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Ubuntu', sans-serif;
            font-weight: 700;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Ubuntu', 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: 'Ubuntu', sans-serif;
            color: #333;
            font-weight: 500;
            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, 44, 109, 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, 44, 109, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(314, 58%, 34%);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-section h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(314, 58%, 19%);
  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;
  text-align: justify;
}

.about-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
  color: #444;
  font-size: 1.15rem;
}

.about-content-wrapper {
  background: #ffffff;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
}

.about-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

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

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

.value-card {
  background: linear-gradient(135deg, hsl(314, 58%, 59%) 0%, hsl(314, 58%, 34%) 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #fff;
}

.value-card p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  text-align: center;
}

.timeline-section {
  margin-top: 4rem;
  padding: 3rem;
  background: #f8f9fa;
  border-radius: 12px;
}

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

.timeline-year {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(314, 58%, 34%);
  min-width: 100px;
}

.timeline-content {
  flex: 1;
}

.timeline-content h5 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(314, 58%, 19%);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #555;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h2 {
    font-size: 2.2rem;
  }
  
  .about-content-wrapper {
    padding: 30px 20px;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .timeline-year {
    font-size: 1.5rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

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

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

  #portfolio .section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(314, 58%, 34%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

  .filter-btn {
    font-family: 'Ubuntu', sans-serif;
    padding: 12px 28px;
    border: 2px solid hsl(314, 58%, 34%);
    background: transparent;
    color: hsl(314, 58%, 34%);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(314, 58%, 34%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(169, 39, 117, 0.3);
  }

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

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

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

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

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

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

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

  .portfolio-content {
    padding: 25px;
  }

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

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

  .portfolio-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .portfolio-overlay-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }

  .portfolio-overlay-text {
    font-size: 0.95rem;
    color: #fff;
    opacity: 0.95;
  }

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

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

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

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

  .btn-close:hover {
    opacity: 1;
  }

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

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

  .modal-category {
    font-family: 'Ubuntu', sans-serif;
    display: inline-block;
    background: hsl(314, 58%, 59%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

  .modal-details h5 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.3rem;
    color: hsl(314, 58%, 34%);
    margin-bottom: 15px;
    font-weight: 700;
  }

  .modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

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

  .modal-details li:last-child {
    border-bottom: none;
  }

  .modal-details li strong {
    color: #222;
    font-weight: 600;
    margin-right: 10px;
  }

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

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

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

    .portfolio-filters {
      gap: 10px;
    }

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

    .modal-body {
      padding: 25px 20px;
    }

    .portfolio-image {
      height: 220px;
    }
  }

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

    .filter-btn {
      padding: 8px 16px;
      font-size: 0.85rem;
    }

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

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

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

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

.advantage-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(314, 58%, 34%), hsl(314, 58%, 59%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

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

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

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

.advantage-card h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(314, 58%, 34%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

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

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

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

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

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

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

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

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

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

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(314, 58%, 59%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: hsl(314, 58%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.15) rotate(360deg);
    background: #ffffff;
}

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

.stat-item:hover .stat-icon i {
    color: hsl(314, 58%, 34%);
}

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

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

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

@media (max-width: 992px) {
    .statistics-header h2 {
        font-size: 2.3rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    #statistics {
        padding: 60px 0;
    }
    
    .statistics-header h2 {
        font-size: 2rem;
    }
    
    .statistics-header p {
        font-size: 1.1rem;
    }
    
    .stat-item {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .statistics-header h2 {
        font-size: 1.7rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
}

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

footer h5 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1.3rem;
  color: #ffffff;
}

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

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

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

.footer-description {
  margin-bottom: 25px;
  line-height: 1.7;
}

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

.footer-contact-item i {
  color: hsl(314, 58%, 59%);
  margin-right: 12px;
  margin-top: 3px;
  font-size: 1.1rem;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-policy-links {
  margin-top: 15px;
}

.footer-policy-links a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 15px;
  font-size: 0.85rem;
}

.footer-policy-links a:hover {
  color: hsl(314, 58%, 59%);
  padding-left: 0;
}

#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: 30px 0;
  border-top: 3px solid hsl(314, 58%, 34%);
}

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

.cookie-notice-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(314, 58%, 34%);
  margin-bottom: 15px;
}

.cookie-notice-text {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.cookie-category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}

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

.cookie-category-name {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: #222222;
  font-size: 1rem;
  margin-bottom: 5px;
}

.cookie-category-desc {
  color: #666666;
  font-size: 0.85rem;
  line-height: 1.5;
  flex: 1;
}

.cookie-category-required {
  color: hsl(314, 58%, 34%);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 10px;
}

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

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

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

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

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

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

.btn-cookie-settings {
  background: transparent;
  color: hsl(314, 58%, 34%);
  border: 2px solid hsl(314, 58%, 34%);
}

.btn-cookie-settings:hover {
  background: hsl(314, 58%, 34%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

  footer h5 {
    margin-top: 30px;
    font-size: 1.1rem;
  }

  footer h5:first-child {
    margin-top: 0;
  }

  #cookieNotice {
    padding: 20px 0;
  }

  .cookie-notice-title {
    font-size: 1.2rem;
  }

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

  .btn-cookie {
    width: 100%;
    text-align: center;
  }

  .footer-policy-links a {
    display: block;
    margin: 10px 0;
  }
}

.blog-page { padding: 4rem 0; }
.blog-page h1 { margin-bottom: 3rem; text-align: center; }
.blog-card { margin-bottom: 2rem; transition: transform 0.3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card .card-img-top { height: 200px; object-fit: cover; }
.blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

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

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

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

#contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(314, 58%, 59%, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

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

.contact-header h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(314, 58%, 34%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(314, 58%, 59%);
    border-radius: 2px;
}

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

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

.contact-form-wrapper {
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(180, 50, 130, 0.1);
}

.contact-form-wrapper h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group label .required {
    color: hsl(314, 58%, 34%);
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #333;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: hsl(314, 58%, 59%);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(180, 50, 130, 0.1);
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, hsl(314, 58%, 34%) 0%, hsl(314, 58%, 44%) 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(180, 50, 130, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, hsl(314, 58%, 29%) 0%, hsl(314, 58%, 39%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 50, 130, 0.4);
}

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

.info-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border-left: 4px solid hsl(314, 58%, 59%);
    transition: all 0.3s ease;
}

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

.info-card h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(314, 58%, 34%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card h4 i {
    font-size: 1.5rem;
    color: hsl(314, 58%, 59%);
}

.info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 12px;
}

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

.info-item i {
    color: hsl(314, 58%, 59%);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.info-item a {
    color: #333;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.info-item a:hover {
    color: hsl(314, 58%, 34%);
}

.info-item p {
    color: #555;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
}

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

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

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

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

.map-wrapper {
    margin-top: 30px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.map-wrapper h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(314, 58%, 34%);
    margin-bottom: 15px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
    border: 2px dashed #ddd;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-header h2 {
        font-size: 2.3rem;
    }
    
    .contact-form-wrapper {
        padding: 35px;
    }
}

@media (max-width: 576px) {
    #contact {
        padding: 60px 0;
    }
    
    .contact-header h2 {
        font-size: 1.9rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .info-card {
        padding: 25px;
    }
    
    .hours-list li {
        flex-direction: column;
        gap: 5px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
    
    :root {
        --primary-color: hsl(314, 58%, 34%);
        --secondary-color: hsl(314, 58%, 19%);
        --accent-color: hsl(314, 58%, 59%);
    }
    
    body {
        font-family: 'Playfair Display', serif;
        color: #333;
        line-height: 1.8;
    }
    
    .policy-content h1,
    .policy-content h2,
    .policy-content h3,
    .policy-content h4,
    .policy-content h5,
    .policy-content h6 {
        font-family: 'Ubuntu', sans-serif;
        color: var(--primary-color);
        font-weight: 700;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .policy-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 3px solid var(--accent-color);
    }
    
    .policy-content h2 {
        font-size: 1.8rem;
        color: var(--secondary-color);
        margin-top: 2.5rem;
    }
    
    .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: all 0.3s ease;
    }
    
    .policy-content a:hover {
        color: var(--accent-color);
        text-decoration: underline;
    }
    
    .policy-content p {
        margin-bottom: 1rem;
        text-align: justify;
    }
    
    .policy-content ul,
    .policy-content ol {
        margin-bottom: 1.5rem;
        padding-left: 2rem;
    }
    
    .policy-content li {
        margin-bottom: 0.5rem;
    }
    
    .highlight-box {
        background: linear-gradient(135deg, rgba(179, 49, 119, 0.05) 0%, rgba(179, 49, 119, 0.1) 100%);
        border-left: 4px solid var(--accent-color);
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 0 8px 8px 0;
    }
    
    .contact-info {
        background-color: var(--secondary-color);
        color: white;
        padding: 2rem;
        border-radius: 10px;
        margin-top: 3rem;
    }
    
    .contact-info h3 {
        color: white;
        margin-top: 0;
    }
    
    .contact-info a {
        color: var(--accent-color);
    }
    
    .contact-info a:hover {
        color: white;
    }
    
    .cookie-type {
        background-color: #f8f9fa;
        padding: 1rem;
        margin: 1rem 0;
        border-radius: 8px;
        border: 1px solid #dee2e6;
    }
    
    .cookie-type h4 {
        color: var(--primary-color);
        margin-top: 0;
        font-size: 1.1rem;
    }
    
    .last-updated {
        font-style: italic;
        color: #6c757d;
        margin-bottom: 2rem;
    }

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

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

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

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

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

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

.faq-accordion .accordion-button {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    background: #fff;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(314, 58%, 34%);
    color: #fff;
    box-shadow: none;
}

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

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

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

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

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

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

.faq-accordion .accordion-body strong {
    color: hsl(314, 58%, 34%);
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: hsl(314, 58%, 34%);
    border-radius: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta h3 {
    font-family: 'Ubuntu', sans-serif;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: #f8f9fa;
    margin-bottom: 1.5rem;
}

.faq-cta .btn-contact {
    background: #fff;
    color: hsl(314, 58%, 34%);
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.faq-cta .btn-contact:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-accordion .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-accordion .accordion-body {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.newsletter-benefit-icon {
    width: 24px;
    height: 24px;
    background: hsl(314, 58%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

    .newsletter-email-input,
    .newsletter-submit-btn {
        padding: 14px 20px;
    }
}

.hero-section {
  background: linear-gradient(135deg, hsl(314, 58%, 97%) 0%, hsl(314, 30%, 95%) 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-content {
  margin-bottom: 40px;
}

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

.hero-section h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: hsl(314, 58%, 34%);
  margin-bottom: 25px;
}

.hero-description {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 600px;
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
  max-width: 600px;
}

.advantages-list li {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}

.advantages-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: hsl(314, 58%, 34%);
  font-size: 1.3rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero-primary {
  font-family: 'Ubuntu', sans-serif;
  background-color: hsl(314, 58%, 34%);
  color: #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-hero-primary:hover {
  background-color: hsl(314, 58%, 19%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 42, 117, 0.3);
}

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

.btn-hero-secondary:hover {
  background-color: hsl(314, 58%, 34%);
  color: #fff;
  transform: translateY(-2px);
}

.hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.3rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  .hero-content {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 50px 0 40px;
  }
  
  .hero-section h1 {
    font-size: 1.9rem;
  }
  
  .hero-section h2 {
    font-size: 1.15rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .advantages-list li {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.blog-meta-item i {
    color: hsl(314, 58%, 59%);
}

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

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

.blog-card h3 a:hover {
    color: hsl(314, 58%, 34%);
}

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

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

.blog-read-more:hover {
    gap: 0.8rem;
    color: hsl(314, 58%, 19%);
}

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

.btn-view-all {
    display: inline-block;
    padding: 14px 40px;
    background: hsl(314, 58%, 34%);
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(157, 42, 107, 0.2);
}

.btn-view-all:hover {
    background: hsl(314, 58%, 19%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(157, 42, 107, 0.3);
}

@media (max-width: 768px) {
    .blog-preview-section {
        padding: 60px 0;
    }
    
    .blog-preview-section h2 {
        font-size: 2rem;
    }
    
    .blog-card-image {
        height: 220px;
    }
    
    .blog-card-content {
        padding: 1.5rem;
    }
    
    .blog-card h3 {
        font-size: 1.3rem;
    }
    
    .blog-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

.offer-section {
  background: linear-gradient(135deg, hsl(314, 58%, 34%) 0%, hsl(314, 58%, 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(314, 58%, 59%);
  opacity: 0.1;
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

.deadline-date {
  font-family: 'Ubuntu', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

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

.benefit-item {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #333;
  padding: 18px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.benefit-item:last-child {
  border-bottom: none;
}

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

.benefit-text {
  flex: 1;
  padding-top: 8px;
}

.discount-highlight {
  background: hsl(314, 58%, 59%);
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

.offer-btn {
  display: inline-block;
  background: linear-gradient(135deg, hsl(314, 58%, 34%) 0%, hsl(314, 58%, 19%) 100%);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  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);
}

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

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

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

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

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

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

  .discount-percentage {
    font-size: 42px;
  }

  .benefit-item {
    font-size: 16px;
  }

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

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

.services-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(314, 58%, 34%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(145, 38, 96, 0.2);
    border-color: hsl(314, 58%, 59%);
}

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

.service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(314, 58%, 59%) 0%, hsl(314, 58%, 34%) 100%);
    transform: rotate(360deg);
}

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

.service-card h3 {
    font-family: 'Ubuntu', sans-serif;
    color: #222;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    margin-top: auto;
}

.price-tag {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(314, 58%, 34%);
    font-size: 1.8rem;
    font-weight: 700;
}

.price-period {
    color: #888;
    font-size: 0.9rem;
    margin-left: 5px;
}

.service-btn {
    background: hsl(314, 58%, 34%);
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.service-btn:hover {
    background: hsl(314, 58%, 19%);
    color: #ffffff;
    transform: scale(1.05);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    color: #555;
    font-size: 0.92rem;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(314, 58%, 59%);
    font-weight: bold;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

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

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

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

  #credentials .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%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

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

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

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

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

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

    #credentials .credential-card {
      padding: 20px 12px;
      margin-bottom: 15px;
    }

    #credentials .credential-icon {
      font-size: 2rem;
      margin-bottom: 12px;
    }

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

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

    #credentials .section-title {
      font-size: 1.5rem;
      margin-bottom: 25px;
    }

    #credentials .credential-card {
      padding: 18px 10px;
      margin-bottom: 12px;
    }

    #credentials .credential-icon {
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

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

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

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

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

.testimonials-section .section-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(314, 58%, 34%);
  margin-bottom: 15px;
}

.testimonials-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-color: hsl(314, 58%, 59%);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(314, 58%, 34%) 0%, hsl(314, 58%, 19%) 100%);
  color: #ffffff;
  grid-column: span 2;
}

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

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

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

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

.testimonial-card.detailed {
  padding: 35px;
}

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

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

.star.empty {
  color: #ddd;
}

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

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

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

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

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

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

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

.customer-details {
  flex: 1;
}

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

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

.testimonial-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: hsl(314, 58%, 59%);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Ubuntu', sans-serif;
}

.testimonial-card.featured .testimonial-badge {
  background: #ffffff;
  color: hsl(314, 58%, 34%);
}

.highlight-text {
  color: hsl(314, 58%, 34%);
  font-weight: 600;
}

.testimonial-card.featured .highlight-text {
  color: hsl(314, 58%, 59%);
}

@media (max-width: 992px) {
  .testimonial-card.featured {
    grid-column: span 1;
  }
  
  .testimonials-section .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonials-section .section-title {
    font-size: 1.9rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
}

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

.disclaimer-section .section-icon {
  font-size: 3.5rem;
  color: hsl(314, 58%, 34%);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.disclaimer-section h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 2rem;
  font-weight: 700;
}

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

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

@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;
  }
  
  .disclaimer-section .section-icon {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .disclaimer-section h2 {
    font-size: 1.75rem;
  }
  
  .disclaimer-section .disclaimer-content {
    padding: 1.5rem 1.25rem;
  }
}

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

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

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

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

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

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

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

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

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 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.5rem;
  }

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

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

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

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

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

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

  .highlight {
    background-color: rgba(179, 44, 118, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
  }

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

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

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

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

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

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

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

  .policy-content h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    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 p {
    margin-bottom: 1.2rem;
    text-align: justify;
  }

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

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

  .info-box {
    background: linear-gradient(135deg, rgba(314, 58%, 34%, 0.05) 0%, rgba(314, 58%, 59%, 0.05) 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

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

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

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

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

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

  .highlight-text {
    background: linear-gradient(120deg, var(--accent-color) 0%, var(--accent-color) 100%);
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 85%;
    font-weight: 600;
  }

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