:root {
            --primary-color: hsl(350, 50%, 33%);
            --secondary-color: hsl(350, 50%, 18%);
            --accent-color: hsl(350, 50%, 58%);
        }
        
        * {
            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(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(162, 41, 56, 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%28162, 41, 56, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #fff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
        }

.about-section {
  font-family: 'Playfair Display', serif;
  color: #333;
  background-color: #fff;
  padding: 80px 0;
}

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

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  margin-top: 3rem;
}

.about-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: hsl(350, 50%, 58%);
}

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

.about-hero {
  background: linear-gradient(135deg, hsl(350, 50%, 33%) 0%, hsl(350, 50%, 18%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  border-radius: 12px;
}

.about-hero h1 {
  color: #fff;
  text-align: center;
}

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

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

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

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

.value-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid hsl(350, 50%, 58%);
  transition: transform 0.3s ease, box-shadow 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: 'Ubuntu', sans-serif;
  color: hsl(350, 50%, 33%);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

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

.story-content {
  background: #f5f5f5;
  padding: 3rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.expertise-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.expertise-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  color: #444;
  border-bottom: 1px solid #e0e0e0;
}

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

.expertise-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(350, 50%, 58%);
  font-weight: bold;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h1 {
    font-size: 2.2rem;
  }
  
  .about-section h2 {
    font-size: 1.8rem;
  }
  
  .story-content {
    padding: 2rem 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, #fff 0%, #fef5f7 100%);
    font-family: 'Playfair Display', serif;
  }

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

  #portfolio .section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(350, 50%, 33%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

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

  #portfolio .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

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

  #portfolio .filter-btn {
    font-family: 'Ubuntu', sans-serif;
    padding: 10px 28px;
    border: 2px solid hsl(350, 50%, 58%);
    background: #fff;
    color: hsl(350, 50%, 33%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(350, 50%, 58%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(174, 50, 66, 0.3);
  }

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

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

  #portfolio .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(174, 50, 66, 0.2);
  }

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

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

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

  #portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(77, 28, 36, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
  }

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

  #portfolio .overlay-content {
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
  }

  #portfolio .portfolio-item:hover .overlay-content {
    transform: translateY(0);
  }

  #portfolio .overlay-icon {
    font-size: 2rem;
    color: hsl(350, 50%, 58%);
    margin-bottom: 10px;
  }

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

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

  #portfolio .portfolio-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(350, 50%, 33%);
    margin-bottom: 12px;
    line-height: 1.3;
  }

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

  #portfolio .view-details-btn {
    font-family: 'Ubuntu', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(350, 50%, 33%);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }

  #portfolio .view-details-btn:hover {
    color: hsl(350, 50%, 58%);
    gap: 12px;
  }

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

  .portfolio-modal .modal-header {
    background: linear-gradient(135deg, hsl(350, 50%, 33%) 0%, hsl(350, 50%, 18%) 100%);
    color: #fff;
    border: none;
    padding: 25px 30px;
  }

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

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

  .portfolio-modal .modal-body {
    padding: 30px;
  }

  .portfolio-modal .modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
  }

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

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

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

  .portfolio-modal .detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #333;
  }

  .portfolio-modal .detail-item:last-child {
    margin-bottom: 0;
  }

  .portfolio-modal .detail-icon {
    color: hsl(350, 50%, 58%);
    font-size: 1.2rem;
  }

  .portfolio-modal .detail-label {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    color: hsl(350, 50%, 33%);
    min-width: 100px;
  }

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

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

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

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

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

    .portfolio-modal .modal-image {
      height: 250px;
    }

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

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

    #portfolio .portfolio-image {
      height: 250px;
    }

    .portfolio-modal .detail-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }

    .portfolio-modal .detail-label {
      min-width: auto;
    }
  }

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

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

.advantage-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(350, 50%, 33%), hsl(350, 50%, 58%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

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

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

.advantage-card h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(350, 50%, 18%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.advantages-row {
    margin-top: 3rem;
}

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

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(350, 50%, 33%), hsl(350, 50%, 58%), hsl(350, 50%, 33%));
}

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

.statistics-section .section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(350, 50%, 18%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.statistics-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(350, 50%, 58%);
}

.statistics-section .section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
}

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

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(350, 50%, 58%), hsl(350, 50%, 33%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: hsl(350, 50%, 58%);
}

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

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

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(165, 42, 42, 0.3);
}

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

.stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(350, 50%, 33%);
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

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

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-section .section-title {
        font-size: 2rem;
    }
    
    .stat-card {
        margin-bottom: 25px;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .statistics-section .section-title {
        font-size: 1.75rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.75rem;
    }
}

footer {
  background: linear-gradient(135deg, hsl(350, 50%, 18%) 0%, hsl(350, 50%, 33%) 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;
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

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

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

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

.footer-description {
  max-width: 350px;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

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

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

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

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

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

.business-hours {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.business-hours p {
  margin: 5px 0;
  font-size: 0.9rem;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 4px solid hsl(350, 50%, 33%);
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content h4 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(350, 50%, 18%);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.cookie-categories {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  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 {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-category-title {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: hsl(350, 50%, 18%);
  font-size: 1rem;
  margin-bottom: 5px;
}

.cookie-category-desc {
  color: #555555;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-category-badge {
  display: inline-block;
  background: hsl(350, 50%, 33%);
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-left: 10px;
  font-family: 'Ubuntu', sans-serif;
}

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

.btn-accept-all {
  background: #28a745;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

.btn-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

.btn-manage {
  background: transparent;
  color: hsl(350, 50%, 33%);
  border: 2px solid hsl(350, 50%, 33%);
  padding: 10px 30px;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

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

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

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

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

  .btn-accept-all,
  .btn-reject,
  .btn-manage {
    width: 100%;
    text-align: center;
  }

  #cookieNotice {
    padding: 20px 0;
  }
}

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

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

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

.contact-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(350, 50%, 33%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(350, 50%, 33%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

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

.contact-form .form-control:focus {
    border-color: hsl(350, 50%, 58%);
    box-shadow: 0 0 0 0.2rem rgba(191, 64, 64, 0.15);
    outline: none;
}

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

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

.contact-form .btn-submit:hover {
    background: hsl(350, 50%, 18%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

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

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

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

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

.contact-info-content p,
.contact-info-content a {
    color: #f0f0f0;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

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

.contact-info-content a:hover {
    color: hsl(350, 50%, 58%);
}

.required-field::after {
    content: "*";
    color: hsl(350, 50%, 58%);
    margin-left: 4px;
}

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

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }
    
    .contact-info-item {
        margin-bottom: 1.5rem;
    }
}

@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(350, 50%, 33%);
    --secondary-color: hsl(350, 50%, 18%);
    --accent-color: hsl(350, 50%, 58%);
  }

  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.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }

  .policy-content h2 {
    font-size: 1.85rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    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-color: var(--accent-color);
    border-radius: 3px;
  }

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

  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }

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

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

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

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

  .policy-intro {
    background: linear-gradient(135deg, hsl(350, 50%, 95%) 0%, hsl(350, 50%, 98%) 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    margin-bottom: 2.5rem;
  }

  .policy-section {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .policy-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

  .cookie-type-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }

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

  .table-responsive {
    margin: 1.5rem 0;
  }

  .table {
    font-family: 'Playfair Display', serif;
  }

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

  .table thead th {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    border: none;
  }

  .table-striped tbody tr:nth-of-type(odd) {
    background-color: hsl(350, 50%, 97%);
  }

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

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

  .faq-section .lead {
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
  }

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

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

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

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

  .faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(350, 50%, 33%);
    color: #ffffff;
  }

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

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

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

  .faq-accordion .accordion-body {
    padding: 1.75rem;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    background: #ffffff;
  }

  .faq-accordion .accordion-body strong {
    color: hsl(350, 50%, 33%);
    font-weight: 600;
  }

  .faq-accordion .accordion-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
  }

  .faq-accordion .accordion-body li {
    margin-bottom: 0.5rem;
  }

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(350, 50%, 33%) 0%, hsl(350, 50%, 18%) 100%);
  padding: 80px 0;
  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%;
  z-index: 0;
}

.newsletter-section::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-content {
  position: relative;
  z-index: 1;
}

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

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

.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;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
}

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

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

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

.newsletter-submit-btn:hover {
  background: hsl(350, 60%, 65%);
  transform: translateY(-2px);
  box-shadow: 0 6px 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: 3rem;
  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(350, 50%, 58%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.8rem;
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: hsl(350, 50%, 58%);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
  }

  .hero-section h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(350, 50%, 18%);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
  }

  .hero-section h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: hsl(350, 50%, 33%);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
  }

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

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

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

  .hero-advantages li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    color: #222;
    font-size: 1.05rem;
    line-height: 1.6;
  }

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

  .hero-image-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
  }

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

  .hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: hsl(350, 50%, 33%);
    opacity: 0.1;
    border-radius: 20px;
    z-index: -1;
  }

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

  .btn-hero-primary {
    background: hsl(350, 50%, 33%);
    color: #fff;
    padding: 1rem 2.5rem;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .btn-hero-primary:hover {
    background: hsl(350, 50%, 18%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    color: #fff;
  }

  .btn-hero-secondary {
    background: transparent;
    color: hsl(350, 50%, 33%);
    padding: 1rem 2.5rem;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    border: 2px solid hsl(350, 50%, 33%);
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
  }

  .btn-hero-secondary:hover {
    background: hsl(350, 50%, 33%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  }

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

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

    .hero-image-wrapper img {
      transform: translateY(0);
    }

    .hero-image-wrapper::after {
      width: 150px;
      height: 150px;
    }
  }

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

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

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

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

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

    .btn-hero-primary,
    .btn-hero-secondary {
      width: 100%;
      justify-content: center;
    }
  }

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

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

.blog-preview-section .section-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(350, 50%, 33%);
  margin-bottom: 20px;
}

.blog-preview-section .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(161, 50, 66, 0.15);
}

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

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

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

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

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

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta-item i {
  color: hsl(350, 50%, 58%);
  font-size: 0.95rem;
}

.blog-card-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: hsl(350, 50%, 18%);
  margin-bottom: 16px;
  line-height: 1.4;
}

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

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

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

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

.blog-read-more:hover {
  color: hsl(350, 50%, 58%);
  gap: 12px;
}

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

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

.view-all-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 16px 48px;
  background: hsl(350, 50%, 33%);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(161, 50, 66, 0.2);
}

.view-all-btn:hover {
  background: hsl(350, 50%, 58%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(161, 50, 66, 0.3);
}

.blog-btn-wrapper {
  text-align: center;
}

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

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

  .blog-card {
    margin-bottom: 30px;
  }

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

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

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

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

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

.credentials-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(350, 50%, 33%);
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

.credential-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(162, 50, 66, 0.2);
    border-color: hsl(350, 50%, 58%);
}

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

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

.service-icon i {
    font-size: 32px;
    color: #fff;
}

.service-card h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(350, 50%, 33%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

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

.service-price {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(350, 50%, 58%);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.service-terms {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.service-badge {
    display: inline-block;
    background: hsl(350, 50%, 58%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 15px;
}

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

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

.testimonials-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(350, 50%, 33%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

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

.testimonial-card.featured {
    background: linear-gradient(135deg, hsl(350, 50%, 33%) 0%, hsl(350, 50%, 18%) 100%);
    color: #fff;
}

.testimonial-card.featured .customer-name,
.testimonial-card.featured .customer-location {
    color: #fff;
}

.testimonial-card.featured .stars {
    color: hsl(350, 50%, 58%);
}

.testimonial-card.compact {
    padding: 25px;
    border-left: 4px solid hsl(350, 50%, 58%);
}

.testimonial-card.detailed {
    padding: 35px;
    background: #fefefe;
    border: 2px solid #f0f0f0;
}

.stars {
    color: hsl(350, 50%, 58%);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
}

.stars.rating-4 .star:last-child {
    opacity: 0.3;
}

.stars.rating-3 .star:nth-child(4),
.stars.rating-3 .star:nth-child(5) {
    opacity: 0.3;
}

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

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

.testimonial-text.short {
    font-size: 1.1rem;
    font-style: italic;
}

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

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

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

.testimonial-card.featured .customer-avatar {
    background: #fff;
    color: hsl(350, 50%, 33%);
}

.customer-details {
    flex-grow: 1;
}

.customer-name {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(350, 50%, 33%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

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

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

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: 'Ubuntu', sans-serif;
    margin-top: 5px;
}

.testimonial-card.featured .verified-badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

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

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

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

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

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

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

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

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

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

.deadline-box {
    background: linear-gradient(135deg, hsl(350, 50%, 58%) 0%, hsl(350, 50%, 43%) 100%);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.deadline-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.deadline-label {
    font-family: 'Ubuntu', sans-serif;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    position: relative;
}

.deadline-date {
    font-family: 'Ubuntu', sans-serif;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.calendar-icon {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    opacity: 0.9;
}

.offer-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid hsl(350, 50%, 58%);
}

.benefit-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(350, 50%, 58%) 0%, hsl(350, 50%, 43%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #fff;
    font-size: 1.3rem;
}

.benefit-text {
    flex: 1;
}

.benefit-text h4 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(350, 50%, 18%);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-text p {
    font-family: 'Playfair Display', serif;
    color: #555;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.discount-highlight {
    background: linear-gradient(135deg, hsl(350, 50%, 33%) 0%, hsl(350, 50%, 18%) 100%);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
}

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

.discount-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    opacity: 0.95;
}

.offer-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, hsl(350, 50%, 58%) 0%, hsl(350, 50%, 43%) 100%);
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(177, 50, 73, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@media (max-width: 768px) {
    .offer-heading {
        font-size: 2rem;
    }
    
    .offer-description {
        font-size: 1rem;
    }
    
    .deadline-date {
        font-size: 2.5rem;
    }
    
    .discount-percentage {
        font-size: 3rem;
    }
    
    .offer-content-wrapper {
        padding: 30px 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

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

.disclaimer-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(350, 50%, 33%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(350, 50%, 58%);
}

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

.disclaimer-icon i {
  font-size: 3.5rem;
  color: hsl(350, 50%, 58%);
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-section h2 {
    font-size: 2rem;
  }
  
  .disclaimer-content {
    padding: 30px 20px;
  }
  
  .disclaimer-text {
    font-size: 1rem;
  }
  
  .disclaimer-icon i {
    font-size: 2.8rem;
  }
}

@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(350, 50%, 33%);
    --secondary-color: hsl(350, 50%, 18%);
    --accent-color: hsl(350, 50%, 58%);
  }

  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.75rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }

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

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

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

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

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

  .effective-date {
    background-color: hsl(350, 50%, 95%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
  }

  .contact-box {
    background-color: hsl(350, 50%, 97%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 2px solid var(--accent-color);
  }

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

  .highlight-box {
    background-color: hsl(350, 50%, 98%);
    padding: 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 3px solid var(--primary-color);
  }

@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(350, 50%, 33%);
    --secondary-color: hsl(350, 50%, 18%);
    --accent-color: hsl(350, 50%, 58%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Ubuntu', sans-serif;
    color: var(--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.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-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-bottom: 1.5rem;
    padding-left: 2rem;
  }

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

  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }

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

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

  .effective-date {
    background-color: hsl(350, 50%, 95%);
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
  }

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

@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: hsl(350, 50%, 33%);
    --secondary: hsl(350, 50%, 18%);
    --accent: hsl(350, 50%, 58%);
  }

  .thank-you-section {
    font-family: 'Playfair Display', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 1rem;
  }

  .thank-you-container {
    max-width: 650px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    text-align: center;
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
  }

  .success-icon svg {
    width: 60px;
    height: 60px;
  }

  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .thank-you-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }

  .thank-you-message {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 2rem;
  }

  .thank-you-message strong {
    color: var(--secondary);
    font-weight: 600;
  }

  .info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .info-card {
    background: #f8f9fa;
    border-left: 4px solid var(--accent);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: left;
  }

  .info-card-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .info-card-text {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
  }

  .home-button {
    font-family: 'Ubuntu', sans-serif;
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .home-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: white;
  }

  .decorative-line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 1.5rem auto;
    border-radius: 2px;
  }

  @media (max-width: 768px) {
    .thank-you-heading {
      font-size: 2rem;
    }

    .thank-you-container {
      padding: 2rem 1.5rem;
    }

    .success-icon {
      width: 80px;
      height: 80px;
    }

    .success-icon svg {
      width: 50px;
      height: 50px;
    }

    .thank-you-message {
      font-size: 1rem;
    }

    .home-button {
      padding: 0.75rem 2rem;
      font-size: 1rem;
    }
  }

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

    .info-card {
      padding: 1rem;
    }
  }