:root {
--primary-color: hsl(358, 63%, 46%);
  --secondary-color: hsl(358, 63%, 31%);
--accent-color: hsl(358, 63%, 71%);
}

* {
    margin: 0;
  padding: 0;
    box-sizing: border-box;
}

body {
font-family: 'Merriweather', serif;
    color: #333;
line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
    font-weight: 700;
  color: #222;
}

.navbar {
background-color: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
align-items: center;
  gap: 12px;
    font-family: 'Lato', sans-serif;
font-weight: 900;
    font-size: 1.4rem;
  color: var(--primary-color) !important;
    transition: transform 0.3s;
}

.navbar-brand:hover {
transform: scale(1.03);
}

.navbar-brand img {
    transition: transform 0.4s ease;
}

.navbar-brand:hover img {
  transform: rotate(5deg);
}

.nav-link {
font-family: 'Lato', sans-serif;
    font-weight: 500;
  color: #333 !important;
    padding: 0.6rem 1.1rem !important;
  position: relative;
    transition: color 0.3s;
}

.nav-link::after {
content: '';
    position: absolute;
  bottom: 0;
    left: 50%;
transform: translateX(-50%);
  width: 0;
    height: 2px;
background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link:hover::after {
width: 70%;
}

.navbar-toggler {
  border: none;
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: none;
  outline: 2px solid var(--accent-color);
}

.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='%23c52f3a' 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);
}

  .nav-link::after {
display: none;
  }
}

#about {
    padding: 80px 0;
    background: #ffffff;
  }

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

  #about .section-header h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    color: hsl(358, 63%, 31%);
    font-weight: 700;
    margin-bottom: 15px;
  }

  #about .section-header .underline {
    width: 80px;
    height: 4px;
    background: hsl(358, 63%, 46%);
    margin: 0 auto;
  }

  #about .about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
  }

  #about .about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

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

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

  #about .about-text {
    flex: 1;
  }

  #about .about-text h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    color: hsl(358, 63%, 46%);
    margin-bottom: 20px;
    font-weight: 600;
  }

  #about .about-text p {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
  }

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

  #about .value-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  #about .value-card:hover {
    border-color: hsl(358, 63%, 46%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  #about .value-card .icon {
    font-size: 2.5rem;
    color: hsl(358, 63%, 46%);
    margin-bottom: 15px;
  }

  #about .value-card h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: hsl(358, 63%, 31%);
    margin-bottom: 12px;
    font-weight: 600;
  }

  #about .value-card p {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
  }

  #about .stats-section {
    background: hsl(358, 63%, 31%);
    padding: 50px;
    border-radius: 8px;
    margin-top: 60px;
    text-align: center;
  }

  #about .stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
  }

  #about .stat-item {
    flex: 1;
    min-width: 200px;
  }

  #about .stat-item .number {
    font-family: 'Lato', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
  }

  #about .stat-item .label {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: hsl(358, 63%, 71%);
  }

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

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

    #about .about-content {
      flex-direction: column;
      gap: 30px;
    }

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

    #about .values-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

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

    #about .stat-item .number {
      font-size: 2.5rem;
    }
  }

.portfolio-section {
    padding: 80px 0;
    background: #f8f9fa;
  }

  .portfolio-section h2 {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 63%, 31%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

  .portfolio-intro {
    font-family: 'Merriweather', serif;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.6;
  }

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

  .filter-btn {
    font-family: 'Lato', sans-serif;
    padding: 10px 24px;
    border: 2px solid hsl(358, 63%, 46%);
    background: #fff;
    color: hsl(358, 63%, 46%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .filter-btn:hover {
    background: hsl(358, 63%, 46%);
    color: #fff;
    transform: translateY(-2px);
  }

  .filter-btn.active {
    background: hsl(358, 63%, 46%);
    color: #fff;
  }

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

  .portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
  }

  .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }

  .portfolio-image {
    position: relative;
    overflow: hidden;
    height: 260px;
  }

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

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }

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

  .overlay-text {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 63%, 46%);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

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

  .portfolio-description {
    font-family: 'Merriweather', serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
  }

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

  .modal-header {
    background: hsl(358, 63%, 46%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 20px 30px;
  }

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

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

  .modal-body {
    padding: 30px;
  }

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

  .modal-category {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 63%, 46%);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

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

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

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

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

  .project-details li {
    font-family: 'Merriweather', serif;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
  }

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

  .project-details strong {
    color: #222;
    font-weight: 600;
  }

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

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

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

    .filter-buttons {
      gap: 8px;
    }

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

#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(358, 63%, 71%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

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

  #advantages .section-title {
    font-family: 'Lato', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(358, 63%, 31%);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
  }

  #advantages .section-subtitle {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
  }

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

  .advantage-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 35px rgba(193, 37, 50, 0.15);
    border-color: hsl(358, 63%, 71%);
  }

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

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

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

  .advantage-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(358, 63%, 31%);
    margin-bottom: 18px;
    text-align: center;
  }

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

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

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

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

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

    .advantage-icon i {
      font-size: 1.7rem;
    }
  }

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

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

#statistics {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }
  
  #statistics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(358, 63%, 71%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }
  
  #statistics .container {
    position: relative;
    z-index: 1;
  }
  
  #statistics h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
  }
  
  #statistics .lead-text {
    font-family: 'Merriweather', serif;
    color: #555;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  
  .stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
  }
  
  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: hsl(358, 63%, 71%);
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(358, 63%, 46%) 0%, hsl(358, 63%, 31%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
  }
  
  .stat-number {
    font-family: 'Lato', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: hsl(358, 63%, 46%);
    margin-bottom: 8px;
    line-height: 1;
  }
  
  .stat-label {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
  }
  
  @media (max-width: 768px) {
    #statistics {
      padding: 50px 0;
    }
    
    #statistics h2 {
      font-size: 2rem;
    }
    
    .stat-card {
      margin-bottom: 25px;
      padding: 30px 15px;
    }
    
    .stat-number {
      font-size: 2.3rem;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(358, 63%, 31%) 0%, hsl(358, 63%, 46%) 100%);
    color: #fff;
  padding: 60px 0 20px;
  font-family: 'Merriweather', serif;
}

footer h5 {
font-family: 'Lato', sans-serif;
  font-weight: 700;
    margin-bottom: 20px;
  font-size: 1.1rem;
}

footer p, footer ul {
  font-size: 0.95rem;
    line-height: 1.7;
}

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

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

footer a {
  color: #fff;
  text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
  color: hsl(358, 63%, 71%);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
  padding-top: 20px;
    text-align: center;
  font-size: 0.9rem;
}

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

.contact-item i {
  margin-right: 10px;
    margin-top: 3px;
}

#cookieNotice {
  position: fixed;
    bottom: 0;
  left: 0;
    right: 0;
  background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
    padding: 25px 0;
  border-top: 3px solid hsl(358, 63%, 46%);
}

#cookieNotice h4 {
  font-family: 'Lato', sans-serif;
    color: #222;
  margin-bottom: 15px;
    font-size: 1.3rem;
}

#cookieNotice p {
  color: #555;
    font-size: 0.95rem;
  margin-bottom: 15px;
}

.cookie-categories {
  background: #f8f9fa;
    padding: 15px;
  border-radius: 8px;
    margin: 15px 0;
}

.cookie-category {
  margin-bottom: 10px;
    font-size: 0.9rem;
  color: #333;
}

.cookie-category strong {
  color: #222;
    display: block;
  margin-bottom: 3px;
}

.cookie-category.required {
  color: #666;
}

.cookie-buttons {
  display: flex;
    gap: 10px;
  flex-wrap: wrap;
    margin-top: 20px;
}

.btn-accept-all {
  background: #28a745;
    color: #fff;
  border: none;
    padding: 12px 28px;
  border-radius: 6px;
    font-family: 'Lato', sans-serif;
  font-weight: 600;
    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 {
  background: #6c757d;
    color: #fff;
  border: none;
    padding: 12px 28px;
  border-radius: 6px;
    font-family: 'Lato', sans-serif;
  font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
}

.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(358, 63%, 46%);
  border: 2px solid hsl(358, 63%, 46%);
    padding: 10px 26px;
  border-radius: 6px;
    font-family: 'Lato', sans-serif;
  font-weight: 600;
    text-decoration: none;
  display: inline-block;
    transition: all 0.3s ease;
}

.btn-manage:hover {
  background: hsl(358, 63%, 46%);
    color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-top: 25px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .btn-accept-all, .btn-reject, .btn-manage {
    width: 100%;
      text-align: center;
  }
}

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

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Merriweather, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(358, 63%, 46%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Lato, sans-serif; color: hsl(358, 63%, 31%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(358, 63%, 46%); }
.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(358, 63%, 31%); font-family: Lato, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(358, 63%, 31%); font-family: Lato, sans-serif; }
.blog-article a { color: hsl(358, 63%, 46%); }
.blog-article a:hover { color: hsl(358, 63%, 71%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(358, 63%, 46%); 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: 'Merriweather', serif;
  }
  
  .contact-section h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .contact-section .lead-text {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .contact-form-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  
  .contact-form-wrapper h3 {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 63%, 46%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  .contact-form .form-control,
  .contact-form textarea {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .contact-form .form-control:focus,
  .contact-form textarea:focus {
    border-color: hsl(358, 63%, 46%);
    box-shadow: 0 0 0 0.2rem rgba(199, 42, 42, 0.15);
    outline: none;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 140px;
  }
  
  .submit-btn {
    background: hsl(358, 63%, 46%);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    width: 100%;
  }
  
  .submit-btn:hover {
    background: hsl(358, 63%, 31%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 42, 42, 0.3);
  }
  
  .contact-info-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
  }
  
  .contact-info-wrapper h3 {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 63%, 46%);
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .contact-info-item {
    margin-bottom: 2rem;
    padding-left: 50px;
    position: relative;
  }
  
  .contact-info-item:last-child {
    margin-bottom: 0;
  }
  
  .contact-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: hsl(358, 63%, 71%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
  }
  
  .contact-info-item h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .contact-info-item p,
  .contact-info-item a {
    color: #555;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .contact-info-item a {
    text-decoration: none;
    color: hsl(358, 63%, 46%);
    transition: color 0.3s ease;
  }
  
  .contact-info-item a:hover {
    color: hsl(358, 63%, 31%);
    text-decoration: underline;
  }
  
  .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .hours-list li {
    color: #555;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
  }
  
  @media (max-width: 991px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
      margin-bottom: 30px;
    }
    
    .contact-section {
      padding: 60px 0;
    }
    
    .contact-section h2 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
      padding: 30px 20px;
    }
    
    .contact-section h2 {
      font-size: 1.75rem;
    }
    
    .submit-btn {
      padding: 12px 30px;
      font-size: 1rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:wght@300;400;700&display=swap');

  :root {
    --primary-color: hsl(358, 63%, 46%);
    --secondary-color: hsl(358, 63%, 31%);
    --accent-color: hsl(358, 63%, 71%);
  }

  .policy-content {
    font-family: 'Merriweather', serif;
    color: #2c3e50;
    line-height: 1.8;
  }

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

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

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

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

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

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

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

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

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

  .policy-intro {
    background: linear-gradient(135deg, rgba(200, 49, 60, 0.05) 0%, rgba(200, 49, 60, 0.1) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
  }

  .policy-section {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px 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 5px 20px rgba(200, 49, 60, 0.15);
  }

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

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

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

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

  .cookie-table {
    width: 100%;
    margin: 1.5rem 0;
  }

  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    font-family: 'Lato', sans-serif;
  }

  .cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
  }

  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
  }

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
  }

  .faq-section h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
  }

  .faq-intro {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
  }

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

  .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
  }

  .accordion-button {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    background: #fff;
    padding: 22px 28px;
    border: none;
    box-shadow: none !important;
  }

  .accordion-button:not(.collapsed) {
    background: hsl(358, 63%, 46%);
    color: #fff;
  }

  .accordion-button::after {
    filter: brightness(0);
  }

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

  .accordion-body {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    padding: 25px 28px;
    background: #fff;
  }

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

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

  .accordion-body strong {
    color: hsl(358, 63%, 31%);
    font-weight: 600;
  }

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(358, 63%, 46%) 0%, hsl(358, 63%, 31%) 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%;
  }

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

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

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

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

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

  .newsletter-input-group {
    display: flex;
    gap: 12px;
    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: 'Merriweather', 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;
  }

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

  .newsletter-submit-btn:hover {
    background: hsl(358, 63%, 71%);
    color: #ffffff;
    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: 30px;
    margin-top: 35px;
    flex-wrap: wrap;
  }

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

  .newsletter-benefit-icon {
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }

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

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

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

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

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Merriweather:wght@300;400;700&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css');

  .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }

  .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(198, 46, 55, 0.85) 0%, rgba(132, 31, 37, 0.9) 100%);
    z-index: 2;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
  }

  .hero-content h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
  }

  .hero-content h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #f8f9fa;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
  }

  .hero-description {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  }

  .hero-advantages {
    list-style: none;
    padding: 0;
    margin: 3rem auto;
    max-width: 700px;
    text-align: left;
  }

  .hero-advantages li {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    color: #ffffff;
  }

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

  .hero-cta-wrapper {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-hero-primary {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    padding: 16px 40px;
    font-size: 1.1rem;
    background-color: hsl(358, 63%, 46%);
    border: none;
    color: #ffffff;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .btn-hero-primary:hover {
    background-color: hsl(358, 63%, 31%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #ffffff;
  }

  .btn-hero-secondary {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    padding: 16px 40px;
    font-size: 1.1rem;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .btn-hero-secondary:hover {
    background-color: #ffffff;
    color: hsl(358, 63%, 46%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }

  @media (max-width: 992px) {
    .hero-content h1 {
      font-size: 2.8rem;
    }
    .hero-content h2 {
      font-size: 1.5rem;
    }
    .hero-description {
      font-size: 1rem;
    }
  }

  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.2rem;
    }
    .hero-content h2 {
      font-size: 1.3rem;
    }
    .hero-advantages li {
      font-size: 0.95rem;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
      padding: 14px 30px;
      font-size: 1rem;
    }
    .hero-cta-wrapper {
      flex-direction: column;
      align-items: center;
    }
    .hero-cta-wrapper a {
      width: 100%;
      max-width: 300px;
    }
  }

  @media (max-width: 576px) {
    .hero-content h1 {
      font-size: 1.8rem;
    }
    .hero-content h2 {
      font-size: 1.1rem;
    }
    .hero-section {
      min-height: auto;
    }
  }

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }
  
  .testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(358, 63%, 71%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }
  
  .testimonials-section .container {
    position: relative;
    z-index: 1;
  }
  
  .testimonials-section h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .testimonials-section .subtitle {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
  }
  
  .testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    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-top: 4px solid hsl(358, 63%, 46%);
    background: linear-gradient(to bottom, #fff 0%, #fafafa 100%);
  }
  
  .testimonial-card.compact {
    padding: 25px;
    border-left: 3px solid hsl(358, 63%, 71%);
  }
  
  .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(358, 63%, 46%) 0%, hsl(358, 63%, 31%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
  }
  
  .testimonial-info h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: #222;
    margin: 0 0 5px 0;
    font-weight: 600;
  }
  
  .testimonial-location {
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    color: #777;
    margin: 0;
  }
  
  .testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
  }
  
  .star {
    color: #ffc107;
    font-size: 1.2rem;
  }
  
  .star.empty {
    color: #ddd;
  }
  
  .testimonial-text {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    flex-grow: 1;
    margin-bottom: 15px;
  }
  
  .testimonial-date {
    font-family: 'Merriweather', serif;
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
    margin-top: auto;
  }
  
  .testimonial-badge {
    display: inline-block;
    background: hsl(358, 63%, 46%);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    margin-top: 10px;
    font-weight: 600;
  }
  
  .quote-icon {
    font-size: 3rem;
    color: hsl(358, 63%, 71%);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
  }
  
  @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.2rem;
    }
  }

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

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

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    height: 100%;
    border: 2px solid #e9ecef;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(358, 63%, 46%), hsl(358, 63%, 71%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

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

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(358, 63%, 46%);
  }

  .service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(358, 63%, 46%), hsl(358, 63%, 31%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(358, 63%, 31%), hsl(358, 63%, 46%));
  }

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

  .service-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
  }

  .service-description {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
  }

  .service-details {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    margin-top: auto;
  }

  .service-price {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(358, 63%, 46%);
    text-align: center;
    margin-bottom: 10px;
  }

  .service-duration {
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-bottom: 15px;
  }

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

  .service-features li {
    font-family: 'Merriweather', serif;
    font-size: 0.85rem;
    color: #555;
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
  }

  .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(358, 63%, 46%);
    font-weight: bold;
  }

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

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

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

.credentials-section {
    padding: 50px 0;
    background: #f8f9fa;
  }
  
  .credentials-title {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .trust-badge {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .trust-badges-row {
    margin-bottom: 1.5rem;
  }

  .trust-badge-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: #28a745;
  }

  .trust-badge-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
  }

  .trust-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .trust-section {
    padding: 50px 0;
    background: #ffffff;
  }

  .trust-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

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

  .trust-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 0.75rem;
  }

  .trust-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

  .credentials-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }

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

  .trust-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 0.75rem;
  }

  .trust-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

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

  .credential-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }

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

  .credential-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

  .credentials-section {
    background: #f8f9fa;
    padding: 3rem 0;
  }

  .credential-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
  }

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

  .credential-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

  .trust-section {
    padding: 50px 0;
    background: #f8f9fa;
  }

  .trust-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
  }

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

  .trust-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 0.75rem;
  }

  .trust-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

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

  .credential-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }

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

  .credential-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

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

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

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

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

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

  .credentials-title {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 63%, 31%);
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
  }

  @media (max-width: 768px) {
    .credential-card {
      margin-bottom: 15px;
    }
    
    .credentials-title {
      font-size: 1.75rem;
      margin-bottom: 25px;
    }
  }

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

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

  #blog .section-subtitle {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px 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 12px 30px rgba(195, 41, 50, 0.15);
  }

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

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

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

  .blog-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: #777;
  }

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

  .blog-meta-icon {
    width: 16px;
    height: 16px;
    fill: hsl(358, 63%, 46%);
  }

  .blog-card-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.9rem;
    line-height: 1.4;
  }

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

  .blog-card-title a:hover {
    color: hsl(358, 63%, 46%);
  }

  .blog-card-excerpt {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.3rem;
    flex-grow: 1;
  }

  .blog-read-more {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: hsl(358, 63%, 46%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
  }

  .blog-read-more:hover {
    gap: 0.8rem;
    color: hsl(358, 63%, 31%);
  }

  .blog-cta-container {
    text-align: center;
    margin-top: 3.5rem;
  }

  .blog-view-all {
    display: inline-block;
    padding: 14px 40px;
    background: hsl(358, 63%, 46%);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(195, 41, 50, 0.25);
  }

  .blog-view-all:hover {
    background: hsl(358, 63%, 31%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(195, 41, 50, 0.35);
    color: #fff;
  }

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

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

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

    .blog-card-body {
      padding: 1.4rem;
    }

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

.promo-offer-section {
    background: linear-gradient(135deg, hsl(358, 63%, 46%) 0%, hsl(358, 63%, 31%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .promo-offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
  }
  
  .promo-offer-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
  }
  
  .offer-container {
    position: relative;
    z-index: 2;
  }
  
  .offer-badge {
    display: inline-block;
    background: hsl(358, 63%, 71%);
    color: hsl(358, 63%, 31%);
    padding: 8px 24px;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  .offer-title {
    font-family: 'Lato', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .offer-description {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    color: #f8f9fa;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .deadline-box {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 50px auto;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
  
  .deadline-box:hover {
    transform: translateY(-5px);
  }
  
  .deadline-label {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }
  
  .deadline-date {
    font-family: 'Lato', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: hsl(358, 63%, 46%);
    margin: 0;
    line-height: 1.2;
  }
  
  .calendar-icon {
    font-size: 36px;
    color: hsl(358, 63%, 46%);
    margin-bottom: 10px;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0;
  }
  
  .benefit-card {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .benefit-card:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-5px);
  }
  
  .benefit-icon {
    font-size: 42px;
    color: hsl(358, 63%, 71%);
    margin-bottom: 15px;
  }
  
  .benefit-title {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .benefit-text {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    color: #f8f9fa;
    line-height: 1.6;
    margin: 0;
  }
  
  .cta-button {
    display: inline-block;
    background: #ffffff;
    color: hsl(358, 63%, 46%);
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .cta-button:hover {
    background: hsl(358, 63%, 71%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  }
  
  .discount-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: hsl(358, 63%, 71%);
    color: hsl(358, 63%, 31%);
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 900;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transform: rotate(5deg);
  }
  
  @media (max-width: 768px) {
    .offer-title {
      font-size: 36px;
    }
    
    .deadline-date {
      font-size: 38px;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .discount-tag {
      position: static;
      display: inline-block;
      margin-bottom: 20px;
      transform: rotate(0);
    }
  }

.disclaimer-section {
    padding: 60px 0;
    background: #f8f9fa;
  }
  
  .disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .disclaimer-header {
    text-align: center;
    margin-bottom: 35px;
  }
  
  .disclaimer-icon {
    font-size: 48px;
    color: hsl(358, 63%, 46%);
    margin-bottom: 20px;
  }
  
  .disclaimer-title {
    font-family: 'Lato', sans-serif;
    font-size: 2.2rem;
    color: #222;
    font-weight: 700;
    margin: 0;
  }
  
  .disclaimer-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  
  .disclaimer-text {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .disclaimer-section {
      padding: 40px 0;
    }
    
    .disclaimer-title {
      font-size: 1.8rem;
    }
    
    .disclaimer-content {
      padding: 25px 20px;
    }
    
    .disclaimer-icon {
      font-size: 40px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:wght@300;400;700&display=swap');

  :root {
    --primary-color: hsl(358, 63%, 46%);
    --secondary-color: hsl(358, 63%, 31%);
    --accent-color: hsl(358, 63%, 71%);
  }

  body {
    font-family: 'Merriweather', 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: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

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

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

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

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

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

  .policy-content a:hover {
    color: var(--secondary-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-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .policy-section {
    background: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
  }

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

  .contact-box h2 {
    color: #ffffff;
    border-left-color: var(--accent-color);
  }

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

  .contact-box a:hover {
    color: #ffffff;
  }

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

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

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Merriweather:wght@300;400;700&display=swap');
  
  :root {
    --primary-color: hsl(358, 63%, 46%);
    --secondary-color: hsl(358, 63%, 31%);
    --accent-color: hsl(358, 63%, 71%);
  }
  
  body {
    font-family: 'Merriweather', 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: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .effective-date {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, #fff 100%);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .contact-box h3 {
    color: var(--primary-color);
    margin-top: 0;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 2rem 0;
  }
  
  .highlight-box {
    background-color: #fff5f5;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

.thank-you-section {
    font-family: 'Merriweather', serif;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, hsl(358, 63%, 96%) 0%, hsl(358, 63%, 98%) 100%);
  }

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

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

  .success-icon svg {
    width: 60px;
    height: 60px;
    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-heading {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(358, 63%, 31%);
    margin-bottom: 1rem;
  }

  .thank-you-subheading {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: hsl(358, 63%, 46%);
    margin-bottom: 1.5rem;
  }

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

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

  .info-box {
    background: hsl(358, 63%, 96%);
    border-left: 4px solid hsl(358, 63%, 46%);
    padding: 1.25rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
  }

  .info-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
  }

  .info-box strong {
    color: hsl(358, 63%, 31%);
  }

  .btn-home {
    font-family: 'Lato', sans-serif;
    background: hsl(358, 63%, 46%);
    color: white;
    padding: 0.875rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
  }

  .btn-home:hover {
    background: hsl(358, 63%, 31%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 43, 55, 0.3);
  }

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

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

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

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

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

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