:root {
--primary-color: hsl(358, 41%, 36%);
  --secondary-color: hsl(358, 41%, 21%);
--accent-color: hsl(358, 41%, 61%);
}

body {
font-family: 'Merriweather', serif;
  color: #222;
    line-height: 1.7;
}

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

.navbar {
background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 1rem 0;
}

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

.navbar-brand:hover {
    color: var(--accent-color) !important;
}

.nav-link {
font-family: 'Lato', sans-serif;
    font-weight: 500;
  color: #333 !important;
      padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

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

.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
  filter: invert(28%) sepia(18%) saturate(1547%) hue-rotate(310deg) brightness(91%) contrast(88%);
}

@media (max-width: 991px) {
.navbar-collapse {
    background-color: #f8f9fa;
  margin-top: 1rem;
      padding: 1rem;
    border-radius: 8px;
}
}

#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, 41%, 36%);
    margin-bottom: 15px;
    font-weight: 700;
  }

  #about .section-header .underline {
    width: 80px;
    height: 3px;
    background: hsl(358, 41%, 61%);
    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 4px 15px 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, 41%, 36%);
    margin-bottom: 20px;
    font-weight: 600;
  }

  #about .about-text p {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.7;
    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 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  #about .value-card:hover {
    border-color: hsl(358, 41%, 61%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

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

  #about .value-card h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: hsl(358, 41%, 21%);
    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-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, hsl(358, 41%, 36%) 0%, hsl(358, 41%, 21%) 100%);
    border-radius: 8px;
  }

  #about .stat-item {
    text-align: center;
    padding: 20px;
    min-width: 150px;
  }

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

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

  @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 .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, 41%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

  .filter-btn:hover {
    background: hsl(358, 41%, 61%);
    border-color: hsl(358, 41%, 61%);
    color: #fff;
  }

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

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

  @media (max-width: 768px) {
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
  }

  .portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    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: 280px;
  }

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

  .portfolio-category {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: hsl(358, 41%, 61%);
    background: hsl(358, 41%, 95%);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .portfolio-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    color: hsl(358, 41%, 21%);
    margin-bottom: 12px;
    font-weight: 700;
  }

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

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

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

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

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

  .modal-body {
    padding: 30px;
  }

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

  .modal-category {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: hsl(358, 41%, 36%);
    background: hsl(358, 41%, 95%);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
  }

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

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

  .project-details h5 {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 41%, 21%);
    font-size: 1.1rem;
    margin-bottom: 14px;
    font-weight: 700;
  }

  .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;
    font-size: 0.95rem;
  }

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

  .project-details strong {
    color: hsl(358, 41%, 36%);
    font-weight: 600;
  }

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

  #advantages .section-title {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 41%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

  .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: hsl(358, 41%, 61%);
  }

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

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

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

  .advantage-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(358, 41%, 21%);
    margin-bottom: 1rem;
    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: 2rem;
    }

    .advantage-card {
      margin-bottom: 1.5rem;
    }
  }

#statistics {
    padding: 70px 0;
    background: linear-gradient(135deg, hsl(358, 41%, 96%) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  #statistics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(358, 41%, 61%);
    opacity: 0.05;
    border-radius: 50%;
  }

  #statistics .section-title {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(358, 41%, 21%);
    margin-bottom: 15px;
    text-align: center;
  }

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

  .stat-card {
    background: #ffffff;
    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;
    position: relative;
    z-index: 1;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: hsl(358, 41%, 61%);
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(358, 41%, 36%) 0%, hsl(358, 41%, 21%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
  }

  .stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(358, 41%, 61%) 0%, hsl(358, 41%, 36%) 100%);
  }

  .stat-number {
    font-family: 'Lato', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(358, 41%, 36%);
    margin-bottom: 10px;
    line-height: 1;
  }

  .stat-label {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
  }

  .stat-context {
    font-family: 'Merriweather', serif;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
  }

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

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

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

    .stat-number {
      font-size: 2.3rem;
    }
  }

  @media (max-width: 576px) {
    .stat-icon {
      width: 60px;
      height: 60px;
      font-size: 28px;
    }

    .stat-number {
      font-size: 2rem;
    }
  }

footer {
  background: hsl(358, 41%, 21%);
    color: #f8f9fa;
  padding: 3rem 0 1rem;
    font-family: 'Merriweather', serif;
}

footer h5 {
font-family: 'Lato', sans-serif;
    color: #fff;
  margin-bottom: 1.2rem;
      font-size: 1.1rem;
}

footer p, footer a {
  color: #e0e0e0;
    font-size: 0.9rem;
}

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

footer a:hover {
    color: hsl(358, 41%, 61%);
}

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

footer ul li {
margin-bottom: 0.6rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

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

#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: 1.5rem 0;
  border-top: 3px solid hsl(358, 41%, 36%);
}

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

.cookie-title {
    font-family: 'Lato', sans-serif;
  color: hsl(358, 41%, 21%);
    font-size: 1.3rem;
  margin-bottom: 0.8rem;
      font-weight: 700;
}

.cookie-text {
color: #333;
    font-size: 0.9rem;
  margin-bottom: 1rem;
      line-height: 1.6;
}

.cookie-categories {
  margin: 1rem 0;
    padding: 0;
  list-style: none;
}

.cookie-categories li {
    padding: 0.4rem 0;
  color: #555;
      font-size: 0.85rem;
}

.cookie-categories strong {
  color: hsl(358, 41%, 21%);
}

.cookie-buttons {
    display: flex;
  gap: 0.8rem;
      flex-wrap: wrap;
  margin-top: 1.2rem;
}

.btn-accept-all {
background: #28a745;
    color: #fff;
  border: none;
      padding: 0.7rem 1.8rem;
    border-radius: 5px;
  font-family: 'Lato', sans-serif;
      font-weight: 600;
    cursor: pointer;
  transition: background 0.3s ease;
}

.btn-accept-all:hover {
    background: #218838;
}

.btn-reject {
  background: #6c757d;
    color: #fff;
      border: none;
  padding: 0.7rem 1.8rem;
    border-radius: 5px;
  font-family: 'Lato', sans-serif;
      font-weight: 600;
    cursor: pointer;
  transition: background 0.3s ease;
}

.btn-reject:hover {
background: #5a6268;
}

.btn-manage {
    background: transparent;
  color: hsl(358, 41%, 36%);
      border: 2px solid hsl(358, 41%, 36%);
  padding: 0.65rem 1.8rem;
    border-radius: 5px;
  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, 41%, 36%);
    color: #fff;
}

@media (max-width: 768px) {
  .cookie-buttons {
      flex-direction: column;
  }
  
    .cookie-buttons button,
  .cookie-buttons a {
    width: 100%;
      text-align: center;
  }
}

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

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

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

  .contact-section h2 {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 41%, 36%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .contact-section .lead-text {
    font-family: 'Merriweather', serif;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

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

  .contact-form-wrapper h3 {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 41%, 36%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

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

  .contact-form .form-control,
  .contact-form .form-control:focus {
    font-family: 'Merriweather', serif;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  .contact-form .form-control:focus {
    border-color: hsl(358, 41%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(171, 78, 78, 0.15);
    outline: none;
  }

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

  .contact-form .btn-submit {
    background: hsl(358, 41%, 36%);
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 45px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
  }

  .contact-form .btn-submit:hover {
    background: hsl(358, 41%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  .contact-info-wrapper {
    background: hsl(358, 41%, 36%);
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
  }

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

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

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

  .contact-icon {
    width: 45px;
    height: 45px;
    background: hsl(358, 41%, 61%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
  }

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

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

  .contact-info-content p,
  .contact-info-content a {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    margin: 0;
    color: #f0f0f0;
    line-height: 1.6;
  }

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

  .contact-info-content a:hover {
    color: hsl(358, 41%, 61%);
  }

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

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

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

    .contact-form-wrapper,
    .contact-info-wrapper {
      padding: 30px 25px;
    }

    .contact-form-wrapper h3,
    .contact-info-wrapper h3 {
      font-size: 1.5rem;
    }
  }

@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, 41%, 36%);
    --secondary-color: hsl(358, 41%, 21%);
    --accent-color: hsl(358, 41%, 61%);
  }
  
  .policy-content {
    font-family: 'Merriweather', serif;
    color: #333;
    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);
    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: 0.5rem;
    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;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .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(--primary-color);
    font-weight: 700;
  }
  
  .info-box {
    background-color: hsl(358, 41%, 96%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .last-updated {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .contact-section {
    background-color: hsl(358, 41%, 95%);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    border: 2px solid 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: 0.75rem;
    border-bottom: 1px solid #ddd;
  }
  
  .cookie-table tr:hover {
    background-color: hsl(358, 41%, 98%);
  }

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .faq-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .faq-header h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.8rem;
    color: hsl(358, 41%, 36%);
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .faq-header p {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  .accordion-item:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }
  
  .accordion-button {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: hsl(358, 41%, 21%);
    background-color: #ffffff;
    padding: 22px 28px;
    border: none;
    box-shadow: none !important;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: hsl(358, 41%, 36%);
    color: #ffffff;
  }
  
  .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
  }
  
  .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }
  
  .accordion-body {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    padding: 26px 28px;
    background-color: #ffffff;
  }
  
  .accordion-body ul {
    margin: 12px 0;
    padding-left: 22px;
  }
  
  .accordion-body li {
    margin-bottom: 8px;
    color: #555;
  }
  
  .accordion-body strong {
    color: hsl(358, 41%, 36%);
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .faq-section {
      padding: 50px 0;
    }
    
    .faq-header h2 {
      font-size: 2.2rem;
    }
    
    .faq-header {
      margin-bottom: 40px;
    }
    
    .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, 41%, 36%) 0%, hsl(358, 41%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }
  
  .newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

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

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

  .newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
  }

  .newsletter-icon svg {
    width: 35px;
    height: 35px;
    fill: #fff;
  }

  .newsletter-heading {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }

  .newsletter-description {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .newsletter-benefits {
    list-style: none;
    padding: 0;
    margin: 25px 0 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .newsletter-benefits li {
    font-family: 'Merriweather', serif;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .newsletter-benefits li::before {
    content: '✓';
    color: hsl(358, 41%, 61%);
    font-weight: bold;
    font-size: 1.2rem;
  }

  .newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .newsletter-input {
    flex: 1;
    min-width: 280px;
    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-input:focus {
    outline: none;
    border-color: #fff;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.2);
  }

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

  .newsletter-submit {
    padding: 16px 45px;
    background: hsl(358, 41%, 61%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .newsletter-submit:hover {
    background: hsl(358, 41%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }

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

  .newsletter-privacy {
    font-family: 'Merriweather', serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 20px;
  }

  .newsletter-privacy a {
    color: hsl(358, 41%, 61%);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
  }

  .newsletter-privacy a:hover {
    border-bottom-color: hsl(358, 41%, 61%);
  }

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

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

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

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

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

    .newsletter-input,
    .newsletter-submit {
      width: 100%;
      min-width: auto;
    }
  }

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

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

    .newsletter-icon svg {
      width: 30px;
      height: 30px;
    }
  }

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 60px;
    overflow: hidden;
  }
  
  .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .hero-section h1 {
    font-family: 'Lato', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: hsl(358, 41%, 21%);
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }
  
  .hero-section h2 {
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: hsl(358, 41%, 36%);
    margin-bottom: 1.8rem;
  }
  
  .hero-description {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .advantages-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    text-align: left;
  }
  
  .advantages-list li {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #222;
    padding: 0.8rem 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .advantages-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .advantages-list li i {
    color: hsl(358, 41%, 36%);
    font-size: 1.3rem;
    margin-right: 0.9rem;
    flex-shrink: 0;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
  }
  
  .btn-hero-primary {
    font-family: 'Lato', sans-serif;
    background: hsl(358, 41%, 36%);
    color: #fff;
    padding: 14px 38px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid hsl(358, 41%, 36%);
    display: inline-block;
  }
  
  .btn-hero-primary:hover {
    background: hsl(358, 41%, 21%);
    border-color: hsl(358, 41%, 21%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
  .btn-hero-secondary {
    font-family: 'Lato', sans-serif;
    background: transparent;
    color: hsl(358, 41%, 36%);
    padding: 14px 38px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid hsl(358, 41%, 36%);
    display: inline-block;
  }
  
  .btn-hero-secondary:hover {
    background: hsl(358, 41%, 36%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
  .hero-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  }
  
  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .hero-image-wrapper:hover img {
    transform: scale(1.03);
  }
  
  @media (max-width: 768px) {
    .hero-section {
      padding: 50px 0 40px;
    }
    
    .hero-section h1 {
      font-size: 2.2rem;
    }
    
    .hero-section h2 {
      font-size: 1.3rem;
    }
    
    .hero-description {
      font-size: 0.98rem;
    }
    
    .advantages-list {
      grid-template-columns: 1fr;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
      width: 100%;
      max-width: 300px;
    }
  }

.offer-section {
    background: linear-gradient(135deg, hsl(358, 41%, 36%) 0%, hsl(358, 41%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(358, 41%, 61%);
    opacity: 0.1;
    border-radius: 50%;
  }
  
  .offer-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(358, 41%, 61%);
    opacity: 0.08;
    border-radius: 50%;
  }
  
  .offer-container {
    position: relative;
    z-index: 2;
  }
  
  .offer-badge {
    display: inline-block;
    background: hsl(358, 41%, 61%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    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: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
  }
  
  .offer-description {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #f8f9fa;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .deadline-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px 40px;
    margin: 40px auto;
    max-width: 500px;
  }
  
  .deadline-label {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #f8f9fa;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  
  .deadline-date {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .calendar-icon {
    width: 50px;
    height: 50px;
    background: hsl(358, 41%, 61%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
  }
  
  .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: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
  }
  
  .benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(358, 41%, 61%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #fff;
  }
  
  .benefit-text {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #f8f9fa;
    line-height: 1.6;
  }
  
  .offer-cta {
    background: hsl(358, 41%, 61%);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    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.3);
  }
  
  .offer-cta:hover {
    background: hsl(358, 41%, 51%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    color: #fff;
  }
  
  .discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: hsl(358, 41%, 61%);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: rotate 10s linear infinite;
  }
  
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .discount-number {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
  }
  
  .discount-text {
    font-size: 0.8rem;
    text-transform: uppercase;
  }
  
  @media (max-width: 768px) {
    .offer-title {
      font-size: 2rem;
    }
    
    .deadline-date {
      font-size: 1.8rem;
      flex-direction: column;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .discount-badge {
      width: 80px;
      height: 80px;
      top: 10px;
      right: 10px;
    }
    
    .discount-number {
      font-size: 1.5rem;
    }
  }

.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, 41%, 61%, 0.08);
    border-radius: 50%;
    z-index: 0;
  }
  
  .testimonials-section .container {
    position: relative;
    z-index: 1;
  }
  
  .testimonials-section h2 {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 41%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .testimonials-section .subtitle {
    font-family: 'Merriweather', serif;
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid hsl(358, 41%, 61%);
    height: 100%;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  }
  
  .testimonial-card.style-2 {
    border-left: none;
    border-top: 4px solid hsl(358, 41%, 36%);
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
  }
  
  .testimonial-card.style-3 {
    border-left: none;
    border-radius: 8px;
    background: hsl(358, 41%, 21%);
    color: #ffffff;
  }
  
  .testimonial-card.style-3 .testimonial-text {
    color: #f8f9fa;
  }
  
  .testimonial-card.style-3 .customer-name {
    color: #ffffff;
  }
  
  .testimonial-card.style-3 .customer-location {
    color: hsl(358, 41%, 61%);
  }
  
  .rating {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
  }
  
  .rating .star {
    color: #ffc107;
    font-size: 1.2rem;
  }
  
  .rating .star.empty {
    color: #ddd;
  }
  
  .testimonial-text {
    font-family: 'Merriweather', serif;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
  }
  
  .customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: hsl(358, 41%, 61%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
  }
  
  .customer-details {
    flex: 1;
  }
  
  .customer-name {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: hsl(358, 41%, 21%);
    margin-bottom: 3px;
  }
  
  .customer-location {
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    color: #777;
  }
  
  .quote-icon {
    font-size: 3rem;
    color: hsl(358, 41%, 61%, 0.2);
    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;
    }
    
    .customer-avatar {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
    }
  }

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .services-section .section-title {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 41%, 21%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .services-section .section-subtitle {
    font-family: 'Merriweather', serif;
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .services-tabs {
    margin-bottom: 3rem;
  }
  
  .services-tabs .nav-tabs {
    border: none;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .services-tabs .nav-link {
    font-family: 'Lato', sans-serif;
    border: 2px solid hsl(358, 41%, 61%);
    background: #fff;
    color: hsl(358, 41%, 36%);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .services-tabs .nav-link:hover {
    background: hsl(358, 41%, 61%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
  .services-tabs .nav-link.active {
    background: hsl(358, 41%, 36%);
    color: #fff;
    border-color: hsl(358, 41%, 36%);
  }
  
  .service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-color: hsl(358, 41%, 61%);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(358, 41%, 36%), hsl(358, 41%, 61%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  
  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
  }
  
  .service-icon i {
    font-size: 32px;
    color: #fff;
  }
  
  .service-title {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 41%, 21%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .service-description {
    font-family: 'Merriweather', serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .service-price {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 41%, 36%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .service-price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
  }
  
  .service-terms {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
  }
  
  .service-terms ul {
    margin: 0;
    padding-left: 20px;
    font-family: 'Merriweather', serif;
    font-size: 0.85rem;
    color: #555;
  }
  
  .service-terms li {
    margin-bottom: 5px;
  }
  
  .tab-content {
    margin-top: 40px;
  }
  
  @media (max-width: 768px) {
    .services-section .section-title {
      font-size: 2rem;
    }
    
    .service-card {
      margin-bottom: 25px;
    }
    
    .services-tabs .nav-link {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  }

#blog {
    padding: 80px 0;
    background: #f8f9fa;
  }

  #blog .section-title {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 41%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

  #blog .section-subtitle {
    font-family: 'Merriweather', serif;
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    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: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

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

  .blog-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
  }

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

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

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

  .blog-meta-item i {
    color: hsl(358, 41%, 61%);
    font-size: 1rem;
  }

  .blog-card-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(358, 41%, 21%);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

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

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

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

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

  .blog-card-link:hover {
    gap: 0.8rem;
    color: hsl(358, 41%, 21%);
  }

  .blog-card-link i {
    font-size: 0.9rem;
  }

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

  .btn-view-all {
    font-family: 'Lato', sans-serif;
    background: hsl(358, 41%, 36%);
    color: #fff;
    padding: 0.9rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
  }

  .btn-view-all:hover {
    background: hsl(358, 41%, 21%);
    color: #fff;
    transform: translateY(-2px);
  }

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

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

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

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

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

#credentials {
    padding: 50px 0;
    background: #f8f9fa;
  }
  
  #credentials .section-title {
    font-family: 'Lato', sans-serif;
    color: hsl(358, 41%, 36%);
    font-size: 1.9rem;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 600;
  }
  
  .trust-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
  }
  
  .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: 12px;
  }
  
  .trust-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    #credentials {
      padding: 40px 0;
    }
    
    #credentials .section-title {
      font-size: 1.6rem;
      margin-bottom: 25px;
    }
    
    .trust-card {
      padding: 20px 12px;
    }
    
    .trust-icon {
      font-size: 2.2rem;
    }
  }

.disclaimer-section {
    background: #f8f9fa;
    padding: 60px 0;
  }
  
  .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, 41%, 61%);
    margin-bottom: 20px;
  }
  
  .disclaimer-title {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    color: hsl(358, 41%, 21%);
    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: #333;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .disclaimer-section {
      padding: 40px 0;
    }
    
    .disclaimer-title {
      font-size: 1.6rem;
    }
    
    .disclaimer-content {
      padding: 25px 20px;
    }
    
    .disclaimer-icon {
      font-size: 38px;
    }
  }

@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, 41%, 36%);
    --secondary-color: hsl(358, 41%, 21%);
    --accent-color: hsl(358, 41%, 61%);
  }
  
  .policy-content {
    font-family: 'Merriweather', serif;
    color: #333;
    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(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-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: 0.5rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }
  
  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
  }
  
  .effective-date {
    background-color: hsl(358, 41%, 95%);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .contact-box {
    background-color: hsl(358, 41%, 96%);
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--secondary-color);
  }
  
  .section-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

@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, 41%, 36%);
    --secondary-color: hsl(358, 41%, 21%);
    --accent-color: hsl(358, 41%, 61%);
  }
  
  .policy-content {
    font-family: 'Merriweather', serif;
    color: #333;
    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);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
  }
  
  .policy-content h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    font-weight: 300;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    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.5rem;
    font-weight: 300;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .effective-date {
    background-color: hsl(358, 41%, 95%);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .contact-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: var(--accent-color);
  }
  
  .contact-box a:hover {
    color: white;
  }

:root {
    --primary: hsl(358, 41%, 36%);
    --secondary: hsl(358, 41%, 21%);
    --accent: hsl(358, 41%, 61%);
  }

  .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, rgba(139, 51, 51, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
  }

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

  .thank-you-container {
    max-width: 650px;
    text-align: center;
    background: white;
    padding: 3.5rem 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: 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.8s ease-out 0.3s both;
  }

  @keyframes scaleIn {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

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

  .thank-you-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
  }

  .thank-you-subheading {
    font-size: 1.35rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 600;
  }

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

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

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

  .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .info-card {
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(139, 51, 51, 0.05) 0%, rgba(139, 51, 51, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(139, 51, 51, 0.1);
  }

  .info-card-icon {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }

  .info-card-text {
    font-size: 0.95rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.5;
  }

  .btn-home {
    background: var(--primary);
    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;
    box-shadow: 0 4px 15px rgba(139, 51, 51, 0.2);
  }

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

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

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

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

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

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

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

    .info-cards {
      grid-template-columns: 1fr;
    }
  }