:root {
            --primary-color: hsl(336, 51%, 40%);
            --secondary-color: hsl(336, 51%, 25%);
            --accent-color: hsl(336, 51%, 65%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
        }
        
        .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;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-brand img {
            margin-right: 12px;
        }
        
        .navbar-nav .nav-link {
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(189, 42, 99, 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%28189, 42, 99, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(336, 51%, 40%);
  font-weight: 700;
}

.about-hero {
  background: linear-gradient(135deg, hsl(336, 51%, 40%) 0%, hsl(336, 51%, 25%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  color: #fff;
}

.about-hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-hero .lead {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

.story-block {
  margin-bottom: 50px;
}

.story-block h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.story-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: hsl(336, 51%, 65%);
}

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

.about-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  margin-bottom: 30px;
}

.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: 30px;
  margin-top: 40px;
}

.value-card {
  background-color: #f8f9fa;
  padding: 35px 25px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: hsl(336, 51%, 65%);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: hsl(336, 51%, 40%);
}

.value-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.expertise-section {
  background-color: #f5f5f5;
  padding: 50px 0;
  margin-top: 60px;
  border-radius: 15px;
}

.expertise-content {
  max-width: 900px;
  margin: 0 auto;
}

.expertise-content h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 2rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
}

.expertise-list li {
  padding: 15px 0;
  padding-left: 35px;
  position: relative;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.expertise-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(336, 51%, 40%);
  font-weight: bold;
  font-size: 1.3rem;
}

.mission-vision {
  margin-top: 60px;
  padding: 50px;
  background: linear-gradient(to right, hsl(336, 51%, 40%), hsl(336, 51%, 25%));
  border-radius: 15px;
  color: #fff;
}

.mission-vision h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
}

.mission-vision p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 30px;
}

.mission-vision .row > div:first-child {
  border-right: 2px solid rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .about-hero .lead {
    font-size: 1rem;
  }
  
  .story-block h2 {
    font-size: 1.8rem;
  }
  
  .mission-vision {
    padding: 30px 20px;
  }
  
  .mission-vision .row > div:first-child {
    border-right: none;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

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

  .portfolio-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(336, 51%, 40%);
    margin-bottom: 1rem;
    text-align: center;
  }

  .portfolio-intro {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
  }

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

  .filter-btn {
    font-family: 'Quicksand', sans-serif;
    padding: 10px 28px;
    border: 2px solid hsl(336, 51%, 40%);
    background: transparent;
    color: hsl(336, 51%, 40%);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(336, 51%, 40%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 44, 92, 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(179, 44, 92, 0.25);
  }

  .portfolio-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s 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(179, 44, 92, 0.95) 0%, rgba(179, 44, 92, 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: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    color: hsl(336, 51%, 65%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

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

  .portfolio-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .portfolio-overlay .portfolio-title {
    color: #fff;
    margin-bottom: 10px;
  }

  .portfolio-overlay .portfolio-category {
    color: #fff;
    opacity: 0.9;
  }

  .view-details-btn {
    font-family: 'Quicksand', sans-serif;
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    color: hsl(336, 51%, 40%);
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .view-details-btn:hover {
    background: hsl(336, 51%, 65%);
    color: #fff;
    transform: scale(1.05);
  }

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

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

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

  .modal-body {
    padding: 35px;
  }

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

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

  .modal-description {
    font-family: 'Libre Baskerville', serif;
    color: #444;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 25px;
  }

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

  .modal-details-list li {
    font-family: 'Libre Baskerville', serif;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
  }

  .modal-details-list li strong {
    font-family: 'Quicksand', sans-serif;
    color: hsl(336, 51%, 40%);
    font-weight: 600;
    margin-right: 10px;
  }

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

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

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

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

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(336, 51%, 65%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
  }

  #advantages .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(336, 51%, 40%);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }

  #advantages .section-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }

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

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(179, 45, 94, 0.15);
    border-color: hsl(336, 51%, 65%);
  }

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

  .advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(336, 51%, 65%) 0%, hsl(336, 51%, 40%) 100%);
  }

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

  .advantage-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 18px;
  }

  .advantage-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    line-height: 1.7;
  }

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

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

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

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

.statistics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(336, 51%, 40%), hsl(336, 51%, 65%));
}

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

.statistics-section .section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(336, 51%, 25%);
  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(336, 51%, 40%);
}

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

.stat-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(186, 44, 98, 0.15);
  border-color: hsl(336, 51%, 65%);
}

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

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

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

.stat-number {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(336, 51%, 40%);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  color: #666;
  font-weight: 400;
  line-height: 1.5;
}

.stat-context {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.8rem;
  color: #999;
  margin-top: 8px;
  font-style: italic;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-card.animate {
  animation: countUp 0.8s ease-out forwards;
}

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

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

footer {
  background: linear-gradient(135deg, hsl(336, 51%, 25%) 0%, hsl(336, 51%, 40%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Libre Baskerville', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

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

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

footer a:hover {
  color: hsl(336, 51%, 65%);
  transform: translateX(3px);
}

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

footer ul li {
  margin-bottom: 12px;
}

.footer-description {
  margin-bottom: 25px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

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

.contact-info-item i {
  margin-right: 10px;
  color: hsl(336, 51%, 65%);
  margin-top: 3px;
}

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

.footer-links-inline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-links-inline a {
  color: rgba(255, 255, 255, 0.85);
  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: 3px solid hsl(336, 51%, 40%);
  font-family: 'Libre Baskerville', serif;
}

#cookieNotice h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(336, 51%, 25%);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

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

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

.cookie-category {
  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-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #222222;
  font-size: 1rem;
  margin-bottom: 5px;
}

.cookie-category-required {
  color: hsl(336, 51%, 40%);
  font-size: 0.85rem;
  font-weight: 600;
}

.cookie-category-optional {
  color: #6c757d;
  font-size: 0.85rem;
}

.cookie-category-desc {
  color: #555555;
  font-size: 0.88rem;
  margin-top: 5px;
  line-height: 1.5;
}

.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: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

.btn-manage-settings {
  background: transparent;
  color: hsl(336, 51%, 40%);
  border: 2px solid hsl(336, 51%, 40%);
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-manage-settings:hover {
  background: hsl(336, 51%, 40%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(178, 44, 90, 0.3);
}

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

  footer h5 {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }

  .footer-bottom {
    margin-top: 35px;
  }

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

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

  #cookieNotice {
    padding: 20px 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: Libre Baskerville, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(336, 51%, 40%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Quicksand, sans-serif; color: hsl(336, 51%, 25%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(336, 51%, 40%); }
.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(336, 51%, 25%); font-family: Quicksand, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(336, 51%, 25%); font-family: Quicksand, sans-serif; }
.blog-article a { color: hsl(336, 51%, 40%); }
.blog-article a:hover { color: hsl(336, 51%, 65%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(336, 51%, 40%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

.contact-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(336, 51%, 40%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(336, 51%, 40%) 0%, hsl(336, 51%, 25%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.25rem;
}

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

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

.contact-info-content p,
.contact-info-content a {
    color: #555;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.contact-info-content a:hover {
    color: hsl(336, 51%, 40%);
}

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

.contact-form-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: #222;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.form-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control,
.form-control:focus {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #333;
    background: #ffffff;
}

.form-control:focus {
    border-color: hsl(336, 51%, 40%);
    box-shadow: 0 0 0 0.2rem rgba(180, 44, 90, 0.15);
    outline: none;
}

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

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

.btn-submit {
    background: linear-gradient(135deg, hsl(336, 51%, 40%) 0%, hsl(336, 51%, 25%) 100%);
    color: #ffffff;
    border: none;
    padding: 0.875rem 2.5rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 44, 90, 0.3);
}

.required-mark {
    color: hsl(336, 51%, 40%);
    margin-left: 2px;
}

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

.hours-list li {
    padding: 0.4rem 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
}

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

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

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

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

    .contact-form-card {
        padding: 2rem;
    }
}

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

    .contact-section h2 {
        font-size: 1.75rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  :root {
    --primary-color: hsl(336, 51%, 40%);
    --secondary-color: hsl(336, 51%, 25%);
    --accent-color: hsl(336, 51%, 65%);
  }

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

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

  .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(--primary-color);
  }

  .policy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

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

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

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

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

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

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

  .policy-header h1 {
    color: white;
    border-bottom: none;
    margin-bottom: 0.5rem;
  }

  .last-updated {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 5px;
  }

  .contact-box {
    background-color: #f8f9fa;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
  }

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

  .cookie-type-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

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

  strong {
    color: var(--secondary-color);
  }

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

  .faq-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(336, 51%, 25%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

  .accordion-button {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: hsl(336, 51%, 25%);
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
  }

  .accordion-button:not(.collapsed) {
    background-color: hsl(336, 51%, 40%);
    color: #ffffff;
    box-shadow: none;
  }

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

  .accordion-button::after {
    background-size: 1.2rem;
    filter: brightness(0) saturate(100%) invert(16%) sepia(28%) saturate(1500%) hue-rotate(295deg) brightness(85%) contrast(90%);
  }

  .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(100%);
  }

  .accordion-body {
    padding: 1.5rem;
    background-color: #ffffff;
    color: #333;
    font-size: 0.98rem;
    line-height: 1.8;
    border-top: 2px solid hsl(336, 51%, 65%);
  }

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

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

  .accordion-body strong {
    color: hsl(336, 51%, 40%);
    font-weight: 600;
  }

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(336, 51%, 40%) 0%, hsl(336, 51%, 25%) 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: 1;
}

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

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

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

.newsletter-description {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 2.5rem;
  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: 'Libre Baskerville', 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: #ffffff;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-email-input::placeholder {
  color: #999;
  font-size: 0.95rem;
}

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

.newsletter-submit-btn:hover {
  background: hsl(336, 51%, 55%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px 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: 'Libre Baskerville', serif;
  font-size: 0.95rem;
}

.newsletter-benefit-icon {
  width: 24px;
  height: 24px;
  background: hsl(336, 51%, 65%);
  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: 2rem;
  }

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

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

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

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  .hero-section {
    background-color: #ffffff;
    padding: 80px 0 100px;
    overflow: hidden;
  }

  .hero-section h1 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: hsl(336, 51%, 40%);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: hsl(336, 51%, 25%);
    margin-bottom: 2rem;
  }

  .hero-section p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

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

  .hero-text {
    flex: 1;
  }

  .hero-image-wrapper {
    flex: 1;
    position: relative;
  }

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

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

  .advantages-list li {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: #333;
    padding: 12px 0 12px 40px;
    position: relative;
    line-height: 1.6;
  }

  .advantages-list li i {
    position: absolute;
    left: 0;
    top: 14px;
    color: hsl(336, 51%, 40%);
    font-size: 1.3rem;
  }

  .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .btn-hero-primary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: hsl(336, 51%, 40%);
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid hsl(336, 51%, 40%);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.05rem;
  }

  .btn-hero-primary:hover {
    background-color: hsl(336, 51%, 25%);
    border-color: hsl(336, 51%, 25%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .btn-hero-secondary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: transparent;
    color: hsl(336, 51%, 40%);
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid hsl(336, 51%, 40%);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.05rem;
  }

  .btn-hero-secondary:hover {
    background-color: hsl(336, 51%, 40%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 992px) {
    .hero-content {
      flex-direction: column;
      gap: 40px;
    }

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

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

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

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

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

    .hero-section p {
      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%);
    position: relative;
    overflow: hidden;
  }

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

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

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

  .blog-preview-section .section-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(336, 51%, 40%);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }

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

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

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(176, 46, 95, 0.15);
  }

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

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

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

  .blog-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: hsl(336, 51%, 40%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
  }

  .blog-card-meta span {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blog-card-meta span::before {
    content: '';
    width: 4px;
    height: 4px;
    background: hsl(336, 51%, 65%);
    border-radius: 50%;
  }

  .blog-card-meta span:first-child::before {
    display: none;
  }

  .blog-card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  .blog-card:hover .blog-card-title {
    color: hsl(336, 51%, 40%);
  }

  .blog-card-excerpt {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.98rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 25px;
    flex-grow: 1;
  }

  .blog-card-link {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(336, 51%, 40%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

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

  .blog-card-link:hover {
    color: hsl(336, 51%, 25%);
    gap: 12px;
  }

  .blog-card-link:hover::after {
    transform: translateX(4px);
  }

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

  .btn-view-all {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(336, 51%, 40%);
    border: none;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(176, 46, 95, 0.2);
  }

  .btn-view-all:hover {
    background: hsl(336, 51%, 25%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(176, 46, 95, 0.3);
  }

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

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

    .blog-preview-section .section-header {
      margin-bottom: 40px;
    }

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

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

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

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

    .blog-view-all {
      margin-top: 40px;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  #credentials {
    padding: 60px 0;
    background-color: #f8f9fa;
    font-family: 'Libre Baskerville', serif;
  }

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

  #credentials .credential-text {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }

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

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

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

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

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

.offer-section {
  background: linear-gradient(135deg, hsl(336, 51%, 40%) 0%, hsl(336, 51%, 25%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.offer-description {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  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-block {
  background: linear-gradient(135deg, hsl(336, 51%, 65%) 0%, hsl(336, 51%, 40%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

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

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

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

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

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

.benefit-icon {
  color: hsl(336, 51%, 40%);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.discount-badge {
  display: inline-block;
  background: hsl(336, 51%, 40%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.offer-cta {
  background: hsl(336, 51%, 40%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-cta:hover {
  background: hsl(336, 51%, 25%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

  .discount-badge {
    font-size: 1.4rem;
    padding: 12px 24px;
  }

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

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

  .services-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(336, 51%, 40%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

  .service-card {
    background: #ffffff;
    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(179, 41, 94, 0.2);
    border-color: hsl(336, 51%, 65%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(336, 51%, 40%) 0%, hsl(336, 51%, 25%) 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(336, 51%, 65%) 0%, hsl(336, 51%, 40%) 100%);
    transform: rotate(360deg);
  }

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

  .service-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(336, 51%, 25%);
    margin-bottom: 15px;
  }

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

  .service-price {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(336, 51%, 40%);
    margin-bottom: 15px;
  }

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

  .service-terms {
    background: #f8f9fa;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #555;
    margin-top: auto;
  }

  .service-terms strong {
    color: hsl(336, 51%, 40%);
    font-weight: 600;
  }

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

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

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

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

.testimonials-section h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(336, 51%, 40%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials-section .section-subtitle {
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

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

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

.testimonial-card.featured {
  border-left: 4px solid hsl(336, 51%, 40%);
  background: linear-gradient(135deg, #fff 0%, #fef8fa 100%);
}

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

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

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(336, 51%, 65%) 0%, hsl(336, 51%, 40%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

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

.testimonial-location {
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

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

.star.empty {
  color: #ddd;
}

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

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

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

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

.testimonial-highlight {
  background: hsl(336, 51%, 95%);
  border-left: 3px solid hsl(336, 51%, 40%);
  padding: 15px 20px;
  margin: 15px 0;
  border-radius: 4px;
  font-style: italic;
  color: #444;
}

.service-tag {
  display: inline-block;
  background: hsl(336, 51%, 65%);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 10px;
  font-family: 'Quicksand', sans-serif;
}

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

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

  .disclaimer-section .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

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

  .disclaimer-section .info-icon {
    font-size: 3.5rem;
    color: hsl(336, 51%, 40%);
    opacity: 0.9;
  }

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

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

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');
  
  :root {
    --primary-color: hsl(336, 51%, 40%);
    --secondary-color: hsl(336, 51%, 25%);
    --accent-color: hsl(336, 51%, 65%);
  }
  
  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--primary-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .effective-date {
    background-color: hsl(336, 51%, 95%);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: var(--accent-color);
    border-bottom-color: white;
  }
  
  .contact-box a:hover {
    color: white;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 2rem 0;
  }

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

  :root {
    --primary-color: hsl(336, 51%, 40%);
    --secondary-color: hsl(336, 51%, 25%);
    --accent-color: hsl(336, 51%, 65%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
  }

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

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

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

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

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

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

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

  .effective-date {
    background-color: hsl(336, 51%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
  }

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

  .section-highlight {
    background-color: hsl(336, 51%, 98%);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
  }

  .important-notice {
    background-color: hsl(336, 51%, 92%);
    border: 2px solid var(--primary-color);
    padding: 1.25rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    font-weight: 600;
  }

:root {
    --primary: hsl(336, 51%, 40%);
    --secondary: hsl(336, 51%, 25%);
    --accent: hsl(336, 51%, 65%);
  }

  .thank-you-section {
    font-family: 'Libre Baskerville', serif;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, rgba(189, 54, 106, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
  }

  .thank-you-section h1,
  .thank-you-section h2,
  .thank-you-section h3 {
    font-family: 'Quicksand', sans-serif;
  }

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

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

  .success-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmark 0.6s ease-out 0.3s both;
  }

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

  @keyframes checkmark {
    0% {
      stroke-dasharray: 100;
      stroke-dashoffset: 100;
    }
    100% {
      stroke-dasharray: 100;
      stroke-dashoffset: 0;
    }
  }

  .thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
  }

  .thank-you-subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 600;
    animation: fadeInUp 0.6s ease-out 0.4s both;
  }

  .thank-you-message {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
  }

  .thank-you-message p {
    margin-bottom: 1rem;
  }

  .highlight-box {
    background: linear-gradient(135deg, rgba(189, 54, 106, 0.08) 0%, rgba(189, 54, 106, 0.03) 100%);
    border-left: 4px solid var(--accent);
    padding: 1.25rem;
    border-radius: 10px;
    margin: 2rem 0;
    animation: fadeInUp 0.6s ease-out 0.8s both;
  }

  .highlight-box p {
    margin: 0;
    color: var(--secondary);
    font-weight: 500;
  }

  .home-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    animation: fadeInUp 0.6s ease-out 1s both;
  }

  .home-button:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 54, 106, 0.3);
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .thank-you-container {
      padding: 2rem 1.5rem;
    }

    .thank-you-title {
      font-size: 2rem;
    }

    .thank-you-subtitle {
      font-size: 1.1rem;
    }

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

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

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

  @media (max-width: 576px) {
    .thank-you-section {
      padding: 2rem 1rem;
    }

    .thank-you-title {
      font-size: 1.75rem;
    }

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