:root {
            --primary-color: hsl(349, 64%, 47%);
            --secondary-color: hsl(349, 64%, 32%);
            --accent-color: hsl(349, 64%, 72%);
        }
        
        body {
            font-family: 'Crimson Text', serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6, .navbar-brand {
            font-family: 'Work Sans', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-family: 'Work Sans', sans-serif;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23dc3545' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

#about {
    font-family: 'Crimson Text', serif;
    background-color: #ffffff;
    padding: 80px 0;
  }

  #about h1, #about h2, #about h3, #about h4 {
    font-family: 'Work Sans', sans-serif;
    color: #222;
  }

  #about .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(349, 64%, 47%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

  #about .about-content {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 50px;
  }

  #about .about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
  }

  #about .about-text p {
    margin-bottom: 1.5rem;
  }

  #about .about-text p:last-child {
    margin-bottom: 0;
  }

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

  #about .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  #about .values-section {
    padding: 60px 0;
  }

  #about .values-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(349, 64%, 32%);
    margin-bottom: 3rem;
    text-align: center;
  }

  #about .value-card {
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
  }

  #about .value-card:hover {
    border-color: hsl(349, 64%, 72%);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
  }

  #about .value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(349, 64%, 47%);
    margin-bottom: 1rem;
  }

  #about .value-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
  }

  #about .mission-vision-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 50px;
  }

  #about .mission-box, #about .vision-box {
    background-color: #ffffff;
    border-left: 5px solid hsl(349, 64%, 47%);
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }

  #about .mission-box h3, #about .vision-box h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: hsl(349, 64%, 32%);
    margin-bottom: 1rem;
  }

  #about .mission-box p, #about .vision-box p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin: 0;
  }

  #about .stats-section {
    padding: 50px 0;
  }

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

  #about .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(349, 64%, 47%);
    font-family: 'Work Sans', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
  }

  #about .stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
  }

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

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

    #about .about-content {
      padding: 40px 0;
    }

    #about .values-section {
      padding: 40px 0;
    }

    #about .mission-vision-section {
      padding: 40px 0;
    }

    #about .about-image {
      margin-bottom: 30px;
    }

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

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

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

  .portfolio-section .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  .portfolio-section .section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

  .filter-btn {
    font-family: 'Work Sans', sans-serif;
    padding: 10px 25px;
    border: 2px solid hsl(349, 64%, 47%);
    background: transparent;
    color: hsl(349, 64%, 47%);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(349, 64%, 47%);
    color: #ffffff;
    transform: translateY(-2px);
  }

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

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

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

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

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

  .portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 30px 20px 20px;
    transform: translateY(0);
    transition: all 0.4s ease;
  }

  .portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
  }

  .portfolio-category {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    color: hsl(349, 64%, 72%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .portfolio-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
  }

  .portfolio-excerpt {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
  }

  .portfolio-item:hover .portfolio-excerpt {
    opacity: 1;
    transform: translateY(0);
  }

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

  .modal-header {
    background: hsl(349, 64%, 47%);
    color: #ffffff;
    border-radius: 12px 12px 0 0;
    padding: 20px 30px;
    border: none;
  }

  .modal-title {
    font-family: 'Work Sans', 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: 8px;
    margin-bottom: 25px;
  }

  .project-detail-category {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: hsl(349, 64%, 47%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .project-detail-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
  }

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

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

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

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

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

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

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

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

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

    .portfolio-filter {
      gap: 10px;
    }

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

    .portfolio-item img {
      height: 250px;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

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

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

  #advantages .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  #advantages .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(349, 64%, 47%);
    border-radius: 2px;
  }

  #advantages .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
  }

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

  #advantages .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(349, 64%, 47%), hsl(349, 64%, 72%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: hsl(349, 64%, 72%);
  }

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

  #advantages .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(349, 64%, 47%), hsl(349, 64%, 32%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(201, 42, 70, 0.3);
  }

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

  #advantages .advantage-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
  }

  #advantages .advantage-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

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

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

    #advantages .advantage-card {
      margin-bottom: 25px;
    }
  }

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

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

    #advantages .section-subtitle {
      font-size: 1.1rem;
    }

    #advantages .advantage-title {
      font-size: 1.25rem;
    }

    #advantages .advantage-description {
      font-size: 1rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(349, 64%, 47%) 0%, hsl(349, 64%, 72%) 100%);
  }

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

  #statistics .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

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

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

  #statistics .stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(349, 64%, 47%), hsl(349, 64%, 72%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: hsl(349, 64%, 72%);
  }

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

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

  #statistics .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(349, 64%, 32%), hsl(349, 64%, 47%));
  }

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

  #statistics .stat-number {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(349, 64%, 47%);
    margin-bottom: 10px;
    display: block;
  }

  #statistics .stat-label {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
  }

  #statistics .stat-context {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
  }

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

  #statistics .stat-card {
    animation: countUp 0.6s ease forwards;
    opacity: 0;
  }

  #statistics .stat-card:nth-child(1) { animation-delay: 0.1s; }
  #statistics .stat-card:nth-child(2) { animation-delay: 0.15s; }
  #statistics .stat-card:nth-child(3) { animation-delay: 0.2s; }
  #statistics .stat-card:nth-child(4) { animation-delay: 0.25s; }
  #statistics .stat-card:nth-child(5) { animation-delay: 0.3s; }
  #statistics .stat-card:nth-child(6) { animation-delay: 0.35s; }
  #statistics .stat-card:nth-child(7) { animation-delay: 0.4s; }
  #statistics .stat-card:nth-child(8) { animation-delay: 0.45s; }
  #statistics .stat-card:nth-child(9) { animation-delay: 0.5s; }
  #statistics .stat-card:nth-child(10) { animation-delay: 0.55s; }
  #statistics .stat-card:nth-child(11) { animation-delay: 0.6s; }
  #statistics .stat-card:nth-child(12) { animation-delay: 0.65s; }
  #statistics .stat-card:nth-child(13) { animation-delay: 0.7s; }
  #statistics .stat-card:nth-child(14) { animation-delay: 0.75s; }
  #statistics .stat-card:nth-child(15) { animation-delay: 0.8s; }

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

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

    #statistics .section-subtitle {
      font-size: 1.1rem;
    }

    #statistics .stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    #statistics .stat-card {
      padding: 30px 20px;
    }

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

  @media (max-width: 576px) {
    #statistics .stats-grid {
      grid-template-columns: 1fr;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(349, 64%, 32%) 0%, hsl(349, 64%, 47%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Crimson Text', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

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

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

footer a:hover {
  color: hsl(349, 64%, 72%);
  transform: translateX(3px);
}

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

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

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

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

.contact-item i {
  margin-right: 12px;
  color: hsl(349, 64%, 72%);
  font-size: 1.1rem;
  margin-top: 3px;
}

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

.business-hours-list {
  font-size: 0.95rem;
}

.business-hours-list li {
  padding: 5px 0;
}

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

#cookieNotice .container {
  max-width: 1200px;
}

.cookie-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 15px;
}

.cookie-text {
  font-family: 'Crimson Text', serif;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.cookie-category {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

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

.cookie-category-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
}

.cookie-category-desc {
  font-family: 'Crimson Text', serif;
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.cookie-required {
  display: inline-block;
  background: hsl(349, 64%, 47%);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-family: 'Work Sans', sans-serif;
}

.cookie-optional {
  display: inline-block;
  background: #6c757d;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-family: 'Work Sans', sans-serif;
}

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

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

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

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

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

.btn-manage-settings {
  background: transparent;
  color: hsl(349, 64%, 47%);
  border: 2px solid hsl(349, 64%, 47%);
  padding: 10px 28px;
  border-radius: 6px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-manage-settings:hover {
  background: hsl(349, 64%, 47%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 47, 68, 0.3);
}

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

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

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

  #cookieNotice {
    padding: 20px 0;
  }

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

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

  .btn-accept-all,
  .btn-reject-optional,
  .btn-manage-settings {
    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: Crimson Text, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(349, 64%, 47%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Work Sans, sans-serif; color: hsl(349, 64%, 32%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(349, 64%, 47%); }
.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(349, 64%, 32%); font-family: Work Sans, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(349, 64%, 32%); font-family: Work Sans, sans-serif; }
.blog-article a { color: hsl(349, 64%, 47%); }
.blog-article a:hover { color: hsl(349, 64%, 72%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(349, 64%, 47%); 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: 'Crimson Text', serif;
  }

  .contact-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

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

  .contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
  }

  .contact-info-card:hover {
    transform: translateY(-5px);
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(349, 64%, 47%) 0%, hsl(349, 64%, 32%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
  }

  .contact-info-card h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .contact-info-card p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
  }

  .contact-info-card a {
    color: hsl(349, 64%, 47%);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
  }

  .contact-info-card a:hover {
    color: hsl(349, 64%, 32%);
  }

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

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

  .form-label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }

  .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
  }

  .form-control:focus {
    border-color: hsl(349, 64%, 47%);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
    outline: none;
  }

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

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

  .btn-submit {
    background: linear-gradient(135deg, hsl(349, 64%, 47%) 0%, hsl(349, 64%, 32%) 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
  }

  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
  }

  .required-mark {
    color: hsl(349, 64%, 47%);
    margin-left: 3px;
  }

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

  .hours-list li {
    padding: 0.4rem 0;
    color: #555;
    font-size: 1.05rem;
  }

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

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

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

    .contact-form-wrapper {
      margin-top: 2rem;
    }
  }

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

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

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

    .contact-form-wrapper {
      padding: 2rem 1.5rem;
    }

    .btn-submit {
      padding: 0.9rem 2rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(349, 64%, 47%);
    --secondary-color: hsl(349, 64%, 32%);
    --accent-color: hsl(349, 64%, 72%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }
  
  .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.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .effective-date {
    background-color: hsl(349, 64%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(349, 64%, 85%) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .contact-box h3 {
    color: var(--secondary-color);
    margin-top: 0;
  }
  
  .cookie-type-card {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0 8px 8px 0;
  }
  
  .cookie-type-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
  }

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

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

  .faq-section .lead-text {
    color: #555;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .faq-accordion .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #222;
    background: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(349, 64%, 47%);
    color: #ffffff;
    box-shadow: none;
  }

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

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

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

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

  .faq-accordion .accordion-body strong {
    color: hsl(349, 64%, 32%);
    font-weight: 600;
  }

  .faq-accordion .accordion-body ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
  }

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

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

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

    .faq-section .lead-text {
      font-size: 1.1rem;
    }

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(349, 64%, 47%) 0%, hsl(349, 64%, 32%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.newsletter-input-group {
  display: flex;
  gap: 15px;
  align-items: stretch;
}

.newsletter-email-input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: 'Crimson Text', serif;
  font-size: 1.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 0 0 4px rgba(255, 255, 255, 0.2);
}

.newsletter-email-input::placeholder {
  color: #666;
  opacity: 0.7;
}

.newsletter-submit-btn {
  padding: 16px 40px;
  background: #ffffff;
  color: hsl(349, 64%, 47%);
  border: 2px solid #ffffff;
  border-radius: 8px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-privacy-note {
  font-family: 'Crimson Text', serif;
  font-size: 0.95rem;
  color: #f8f9fa;
  text-align: center;
  margin-top: 20px;
  opacity: 0.9;
}

.newsletter-privacy-note a {
  color: #ffffff;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.newsletter-privacy-note a:hover {
  opacity: 0.8;
}

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

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

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

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

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

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

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

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

  .newsletter-email-input {
    font-size: 1rem;
  }

  .newsletter-submit-btn {
    font-size: 1rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  .hero-section {
    background-color: #ffffff;
    padding: 80px 0;
    font-family: 'Crimson Text', serif;
  }

  .hero-section h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: #222;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: hsl(349, 64%, 47%);
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

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

  .hero-image-wrapper {
    margin: 2.5rem 0;
    text-align: center;
  }

  .hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

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

  .advantages-list li {
    color: #333;
    font-size: 1.05rem;
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

  .advantages-list li i {
    position: absolute;
    left: 0;
    top: 0.9rem;
    color: hsl(349, 64%, 47%);
    font-size: 1.3rem;
  }

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

  .btn-primary-hero {
    background-color: hsl(349, 64%, 47%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-primary-hero:hover {
    background-color: hsl(349, 64%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .btn-secondary-hero {
    background-color: transparent;
    color: hsl(349, 64%, 47%);
    border: 2px solid hsl(349, 64%, 47%);
    padding: 12px 30px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-secondary-hero:hover {
    background-color: hsl(349, 64%, 47%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

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

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

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

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

    .btn-primary-hero,
    .btn-secondary-hero {
      width: 100%;
      text-align: center;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600&display=swap');

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

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

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

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

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

  #credentials .trust-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin: 0;
  }

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

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

    #credentials .trust-card {
      padding: 20px 15px;
    }

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

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

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

  #blog .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

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

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

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

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

  #blog .blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
  }

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

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

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

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

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

  #blog .blog-meta-item i {
    color: hsl(349, 64%, 47%);
    font-size: 0.95rem;
  }

  #blog .blog-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  #blog .blog-card:hover .blog-title {
    color: hsl(349, 64%, 47%);
  }

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

  #blog .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(349, 64%, 47%);
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  #blog .blog-link:hover {
    color: hsl(349, 64%, 32%);
    gap: 12px;
  }

  #blog .blog-link i {
    transition: transform 0.3s ease;
  }

  #blog .blog-link:hover i {
    transform: translateX(4px);
  }

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

  #blog .btn-view-all {
    display: inline-block;
    padding: 15px 45px;
    background: hsl(349, 64%, 47%);
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid hsl(349, 64%, 47%);
  }

  #blog .btn-view-all:hover {
    background: hsl(349, 64%, 32%);
    border-color: hsl(349, 64%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

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

    #blog .section-subtitle {
      font-size: 1rem;
    }

    #blog .blog-image-wrapper {
      height: 220px;
    }

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

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

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

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

    #blog .blog-meta {
      gap: 15px;
    }

    #blog .btn-view-all {
      padding: 12px 35px;
      font-size: 0.95rem;
    }
  }

.offer-section {
  background: linear-gradient(135deg, hsl(349, 64%, 47%) 0%, hsl(349, 64%, 32%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.offer-description {
  font-family: 'Crimson Text', serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.offer-deadline-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.deadline-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 15px;
  font-weight: 500;
}

.deadline-date {
  font-family: 'Work Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(349, 64%, 47%);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  font-size: 2.5rem;
  color: hsl(349, 64%, 47%);
}

.offer-benefits {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 40px;
  margin-bottom: 40px;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: hsl(349, 64%, 47%);
}

.benefit-text {
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
  line-height: 1.6;
}

.offer-cta-btn {
  display: inline-block;
  background: #fff;
  color: hsl(349, 64%, 47%);
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-btn:hover {
  background: hsl(349, 64%, 72%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

  .offer-deadline-box {
    padding: 30px 20px;
  }

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

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

.services-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

.services-tabs {
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 3rem;
}

.services-tabs .nav-link {
  font-family: 'Work Sans', sans-serif;
  color: #555;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  font-size: 1rem;
  background: transparent;
}

.services-tabs .nav-link:hover {
  color: hsl(349, 64%, 47%);
  border-bottom-color: hsl(349, 64%, 72%);
}

.services-tabs .nav-link.active {
  color: hsl(349, 64%, 47%);
  border-bottom-color: hsl(349, 64%, 47%);
  background: transparent;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(197, 40, 61, 0.15);
  border-color: hsl(349, 64%, 72%);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(349, 64%, 47%) 0%, hsl(349, 64%, 32%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(360deg);
}

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

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

.service-card p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  color: #555;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: hsl(349, 64%, 47%);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

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

.price-tag {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(349, 64%, 47%);
  font-size: 1.8rem;
}

.price-unit {
  font-size: 0.9rem;
  color: #777;
  font-weight: 400;
}

.service-btn {
  background: hsl(349, 64%, 47%);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.service-btn:hover {
  background: hsl(349, 64%, 32%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 40, 61, 0.3);
}

.service-terms {
  background: #f8f9fa;
  border-left: 4px solid hsl(349, 64%, 47%);
  padding: 1.5rem;
  margin-top: 3rem;
  border-radius: 6px;
}

.service-terms h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #222;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-terms ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-terms li {
  color: #555;
  padding: 0.5rem 0;
  font-size: 1rem;
}

.service-terms li i {
  color: hsl(349, 64%, 47%);
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .services-section h2 {
    font-size: 2rem;
  }
  
  .services-tabs .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .price-tag {
    font-size: 1.5rem;
  }
}

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

.testimonials-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials-section .lead-text {
  text-align: center;
  color: #555;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border-left: 4px solid hsl(349, 64%, 47%);
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(349, 64%, 47%) 0%, hsl(349, 64%, 32%) 100%);
  color: #fff;
  border-left: 4px solid #fff;
}

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

.testimonial-card.featured .stars i {
  color: #ffd700;
}

.stars {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.stars i {
  color: #ffd700;
  margin-right: 2px;
}

.stars i.far {
  color: #ddd;
}

.review-text {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: hsl(349, 64%, 72%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #fff;
  color: hsl(349, 64%, 47%);
}

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

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

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

.testimonial-card.compact {
  padding: 1.5rem;
}

.testimonial-card.compact .review-text {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-card.detailed {
  padding: 2.5rem;
}

.testimonial-card.detailed .review-text {
  font-size: 1.1rem;
}

.review-date {
  font-size: 0.85rem;
  color: #999;
  margin-top: 0.5rem;
}

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

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-card.detailed {
    padding: 1.75rem;
  }
}

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

  .disclaimer-section .section-icon {
    font-size: 3rem;
    color: hsl(349, 64%, 47%);
    margin-bottom: 1.5rem;
    display: inline-block;
  }

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

  .disclaimer-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid hsl(349, 64%, 47%);
  }

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

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

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

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

    .disclaimer-content p {
      font-size: 1rem;
      text-align: left;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(349, 64%, 47%);
    --secondary-color: hsl(349, 64%, 32%);
    --accent-color: hsl(349, 64%, 72%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 5px solid var(--primary-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .info-box {
    background: linear-gradient(135deg, rgba(203, 49, 75, 0.05) 0%, rgba(203, 49, 75, 0.1) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-card {
    background: var(--accent-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact-card h3 {
    color: white !important;
    margin-top: 0;
  }
  
  .effective-date {
    font-style: italic;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 3rem 0;
    border: none;
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(349, 64%, 47%);
    --secondary-color: hsl(349, 64%, 32%);
    --accent-color: hsl(349, 64%, 72%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2c3e50;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1.25rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1.25rem;
  }
  
  .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.5rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    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;
  }
  
  .intro-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(349, 64%, 85%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.75rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info-box {
    background-color: #f8f9fa;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.75rem;
    margin: 2rem 0;
  }
  
  .contact-info-box h3 {
    margin-top: 0;
    color: var(--primary-color);
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 2.5rem 0;
    border: none;
  }
  
  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Work Sans', sans-serif;
  }