:root {
            --primary-color: hsl(312, 51%, 44%);
            --secondary-color: hsl(312, 51%, 29%);
            --accent-color: hsl(312, 51%, 69%);
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem hsla(312, 51%, 44%, 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='%23b7298f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

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

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

  #about .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(312, 51%, 29%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

  #about .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.8;
  }

  #about .story-block {
    background: #ffffff;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 50px;
  }

  #about .story-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  #about .story-image {
    flex: 1;
    min-width: 300px;
  }

  #about .story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  }

  #about .story-text {
    flex: 1;
    min-width: 300px;
  }

  #about .story-text h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(312, 51%, 44%);
    margin-bottom: 25px;
  }

  #about .story-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
  }

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

  #about .value-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 5px solid hsl(312, 51%, 44%);
  }

  #about .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-left-color: hsl(312, 51%, 29%);
  }

  #about .value-card h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(312, 51%, 29%);
    margin-bottom: 15px;
  }

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

  #about .mission-vision-block {
    background: linear-gradient(135deg, hsl(312, 51%, 44%) 0%, hsl(312, 51%, 29%) 100%);
    border-radius: 15px;
    padding: 50px;
    margin-top: 50px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }

  #about .mission-vision-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
  }

  #about .mission-vision-content {
    position: relative;
    z-index: 1;
  }

  #about .mission-vision-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }

  #about .mission-box h4,
  #about .vision-box h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(255,255,255,0.3);
  }

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

  #about .expertise-section {
    margin-top: 60px;
    text-align: center;
  }

  #about .expertise-section h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(312, 51%, 29%);
    margin-bottom: 40px;
  }

  #about .expertise-image {
    max-width: 900px;
    margin: 0 auto;
  }

  #about .expertise-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  }

  #about .expertise-text {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
  }

  #about .expertise-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.9;
    margin-bottom: 20px;
  }

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

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

    #about .story-block {
      padding: 30px 20px;
    }

    #about .story-content {
      gap: 30px;
    }

    #about .story-image img {
      height: 300px;
    }

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

    #about .mission-vision-block {
      padding: 35px 25px;
    }

    #about .expertise-image img {
      height: 350px;
    }

    #about .value-card {
      padding: 25px 20px;
    }
  }

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

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

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

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

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

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(312, 51%, 44%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 51, 132, 0.3);
  }

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

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

  .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(179, 51, 132, 0.25);
  }

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

  .portfolio-item:hover .portfolio-image {
    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) 0%, transparent 100%);
    padding: 30px 25px 25px;
    transform: translateY(0);
    transition: all 0.4s ease;
  }

  .portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(179, 51, 132, 0.95) 0%, rgba(179, 51, 132, 0.7) 100%);
  }

  .portfolio-category {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    color: hsl(312, 51%, 69%);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 600;
  }

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

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

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

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

  .modal-header {
    background: linear-gradient(135deg, hsl(312, 51%, 44%) 0%, hsl(312, 51%, 29%) 100%);
    color: #fff;
    border: none;
    padding: 25px 30px;
  }

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

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

  .btn-close:hover {
    opacity: 1;
  }

  .modal-body {
    padding: 35px;
    font-family: 'Libre Baskerville', serif;
    color: #333;
    line-height: 1.8;
  }

  .modal-body img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }

  .modal-category {
    font-family: 'Quicksand', sans-serif;
    display: inline-block;
    background: hsl(312, 51%, 69%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .modal-description {
    font-size: 1rem;
    color: #444;
    margin-bottom: 25px;
  }

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

  .project-details h5 {
    font-family: 'Quicksand', sans-serif;
    color: hsl(312, 51%, 29%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
  }

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

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

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

  .project-details strong {
    color: hsl(312, 51%, 44%);
    font-weight: 600;
  }

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

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

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

    .portfolio-image {
      height: 280px;
    }

    .filter-buttons {
      gap: 10px;
    }

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

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

    .portfolio-intro {
      font-size: 1rem;
      padding: 0 15px;
    }
  }

  @media (max-width: 576px) {
    .portfolio-section h2 {
      font-size: 1.9rem;
    }

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

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

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

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

  #advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(312, 51%, 44%), hsl(312, 51%, 69%));
  }

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

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

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

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

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

  #advantages .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(312, 51%, 44%), hsl(312, 51%, 69%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(172, 44, 118, 0.15);
    border-color: hsl(312, 51%, 69%);
  }

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

  #advantages .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(312, 51%, 44%), hsl(312, 51%, 29%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(172, 44, 118, 0.25);
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(312, 51%, 69%), hsl(312, 51%, 44%));
  }

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

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

  #advantages .advantage-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    text-align: center;
  }

  #advantages .row {
    margin-top: 20px;
  }

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

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

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

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

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

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

    #advantages .advantage-card {
      padding: 35px 25px;
    }

    #advantages .icon-wrapper {
      width: 70px;
      height: 70px;
    }

    #advantages .icon-wrapper i {
      font-size: 1.9rem;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;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: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(312, 51%, 69%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

  #statistics::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(312, 51%, 44%, 0.08);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  #statistics .section-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(312, 51%, 29%);
    margin-bottom: 15px;
  }

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

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

  #statistics .stat-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    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(312, 51%, 44%), hsl(312, 51%, 69%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: hsl(312, 51%, 69%);
  }

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

  #statistics .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(312, 51%, 44%), hsl(312, 51%, 69%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s ease;
  }

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

  #statistics .stat-number {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: hsl(312, 51%, 29%);
    margin-bottom: 10px;
    display: block;
  }

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

  #statistics .stat-card:nth-child(3n+1) .stat-icon {
    background: linear-gradient(135deg, hsl(312, 51%, 44%), hsl(312, 51%, 29%));
  }

  #statistics .stat-card:nth-child(3n+2) .stat-icon {
    background: linear-gradient(135deg, hsl(312, 51%, 69%), hsl(312, 51%, 44%));
  }

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

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

    #statistics .section-header p {
      font-size: 1rem;
    }

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

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

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

    #statistics .stat-icon {
      width: 60px;
      height: 60px;
      font-size: 1.7rem;
    }
  }

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

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

footer h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ffffff;
}

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

footer a {
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: hsl(312, 51%, 69%);
  padding-left: 5px;
}

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

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

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

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

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

.footer-policies {
  margin-top: 15px;
}

.footer-policies a {
  margin: 0 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-policies a:hover {
  color: hsl(312, 51%, 69%);
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 4px solid hsl(312, 51%, 44%);
  font-family: 'Libre Baskerville', serif;
}

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

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

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

.cookie-category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  padding: 10px;
  background: #ffffff;
  border-radius: 5px;
  border-left: 3px solid hsl(312, 51%, 44%);
}

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

.cookie-category-title {
  font-weight: 600;
  color: hsl(312, 51%, 29%);
  font-size: 0.95rem;
  margin-bottom: 3px;
  font-family: 'Quicksand', sans-serif;
}

.cookie-category-desc {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.cookie-category-required {
  display: inline-block;
  background: #28a745;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 10px;
  font-family: 'Quicksand', sans-serif;
}

.cookie-category-optional {
  display: inline-block;
  background: #6c757d;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 10px;
  font-family: 'Quicksand', sans-serif;
}

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

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn-accept {
  background: #28a745;
  color: #ffffff;
}

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

.cookie-btn-reject {
  background: #6c757d;
  color: #ffffff;
}

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

.cookie-btn-manage {
  background: transparent;
  color: hsl(312, 51%, 44%);
  border: 2px solid hsl(312, 51%, 44%);
}

.cookie-btn-manage:hover {
  background: hsl(312, 51%, 44%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(179, 44, 128, 0.3);
}

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

  footer h5 {
    margin-top: 30px;
  }

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

  .footer-contact-item {
    justify-content: center;
  }

  #cookieNotice {
    padding: 20px 0;
  }

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

  .cookie-btn {
    width: 100%;
  }
}

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

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

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

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

  .contact-intro {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
  }

  .contact-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }

  .contact-form-wrapper {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }

  .contact-form-wrapper h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    color: hsl(312, 51%, 44%);
    margin-bottom: 25px;
  }

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

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

  .contact-form .form-control:focus {
    border-color: hsl(312, 51%, 44%);
    box-shadow: 0 0 0 0.2rem hsla(312, 51%, 44%, 0.15);
    outline: none;
  }

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

  .contact-form .btn-submit {
    background: hsl(312, 51%, 44%);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
  }

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

  .contact-info-wrapper {
    flex: 0 0 380px;
  }

  .contact-info-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
  }

  .contact-info-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    color: hsl(312, 51%, 44%);
    margin-bottom: 25px;
  }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
  }

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

  .contact-info-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: hsl(312, 51%, 69%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 1.2rem;
  }

  .contact-info-details h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
  }

  .contact-info-details p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .contact-info-details a {
    color: hsl(312, 51%, 44%);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-info-details a:hover {
    color: hsl(312, 51%, 29%);
    text-decoration: underline;
  }

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

  .working-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
  }

  .working-hours-list li span:first-child {
    font-weight: 600;
    color: #333;
  }

  @media (max-width: 991px) {
    .contact-content {
      flex-direction: column;
    }

    .contact-info-wrapper {
      flex: 1;
      width: 100%;
    }

    .contact-section {
      padding: 60px 0;
    }

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

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

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

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

    .contact-intro {
      font-size: 1rem;
      margin-bottom: 40px;
    }

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

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

    .contact-info-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
  }

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

  :root {
    --primary-color: hsl(312, 51%, 44%);
    --secondary-color: hsl(312, 51%, 29%);
    --accent-color: hsl(312, 51%, 69%);
  }

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

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

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

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

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

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
  }

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

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

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

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

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

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

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

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

  .cookie-table td {
    background-color: hsl(312, 51%, 98%);
  }

  .intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
  }

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

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

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

.accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.accordion-button {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

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

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

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

.accordion-body {
    padding: 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    background-color: #fafafa;
}

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

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

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

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 2.2rem;
    }
    
    .accordion-button {
        font-size: 1.05rem;
        padding: 1rem 1.25rem;
    }
    
    .accordion-body {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
}

.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(312, 51%, 44%) 0%, hsl(312, 51%, 29%) 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.newsletter-input-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.newsletter-email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
}

.newsletter-email-input:focus {
  outline: none;
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

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

.newsletter-submit-btn:hover {
  background: hsl(312, 51%, 69%);
  border-color: hsl(312, 51%, 69%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.newsletter-benefit-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-benefit-icon::before {
  content: '✓';
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.advantages-list li {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #222222;
  padding: 0.75rem 0;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.6;
}

.advantages-list li::before {
  content: "\f26b";
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: hsl(312, 51%, 44%);
  font-size: 1.3rem;
  font-weight: bold;
}

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

.btn-primary-custom {
  font-family: 'Quicksand', sans-serif;
  background-color: hsl(312, 51%, 44%);
  color: #ffffff;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(179, 51, 133, 0.3);
}

.btn-primary-custom:hover {
  background-color: hsl(312, 51%, 29%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 51, 133, 0.4);
  color: #ffffff;
}

.btn-secondary-custom {
  font-family: 'Quicksand', sans-serif;
  background-color: transparent;
  color: hsl(312, 51%, 44%);
  padding: 14px 32px;
  border: 2px solid hsl(312, 51%, 44%);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background-color: hsl(312, 51%, 44%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(179, 51, 133, 0.3);
}

.decorative-element {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: hsl(312, 51%, 69%);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
  top: -50px;
  right: -50px;
}

@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.5rem;
  }
  
  .hero-image-wrapper img {
    transform: translateY(0);
    margin-top: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 50px 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
}

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

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: hsl(312, 51%, 69%, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: hsl(312, 51%, 44%, 0.05);
  border-radius: 50%;
  z-index: 0;
}

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

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

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

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

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

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

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

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

.testimonial-info {
  flex-grow: 1;
}

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

.testimonial-location {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-location i {
  color: hsl(312, 51%, 44%);
  font-size: 0.85rem;
}

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

.testimonial-rating i {
  color: #ffc107;
  font-size: 1.1rem;
}

.testimonial-rating i.empty {
  color: #ddd;
}

.testimonial-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
  flex-grow: 1;
}

.testimonial-text.short {
  font-size: 1.05rem;
  font-weight: 500;
}

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

.testimonial-date {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

.testimonial-badge {
  display: inline-block;
  background: hsl(312, 51%, 44%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-highlight {
  background: hsl(312, 51%, 95%);
  border-left: 3px solid hsl(312, 51%, 44%);
  padding: 15px 20px;
  margin: 15px 0;
  border-radius: 5px;
  font-style: italic;
}

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

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

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

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

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

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(178, 51, 129, 0.2);
    border-color: hsl(312, 51%, 69%);
  }

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

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(312, 51%, 29%) 0%, hsl(312, 51%, 44%) 100%);
  }

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

  .service-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(312, 51%, 29%);
    margin-bottom: 18px;
    text-align: center;
  }

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

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

  .service-terms {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    border-left: 3px solid hsl(312, 51%, 69%);
  }

  .services-cta {
    text-align: center;
    margin-top: 60px;
  }

  .services-cta-btn {
    background: linear-gradient(135deg, hsl(312, 51%, 44%) 0%, hsl(312, 51%, 29%) 100%);
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .services-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(178, 51, 129, 0.3);
    color: #fff;
  }

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

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

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

    .service-card h3 {
      font-size: 1.3rem;
    }

    .service-price {
      font-size: 1.5rem;
    }
  }

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

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

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

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

.blog-preview .section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(312, 51%, 29%);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.blog-preview .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: hsl(312, 51%, 44%);
}

.blog-preview .section-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: #555;
  margin-top: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.blog-card-meta {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  gap: 15px;
  z-index: 2;
}

.blog-meta-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-meta-item i {
  color: hsl(312, 51%, 44%);
  font-size: 0.9rem;
}

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

.blog-card-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(312, 51%, 29%);
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

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

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

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

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

.blog-card-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.blog-card-link:hover i {
  transform: translateX(5px);
}

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

.btn-view-all {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: hsl(312, 51%, 44%);
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-view-all:hover {
  background: hsl(312, 51%, 29%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

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

  .blog-card-meta {
    flex-wrap: wrap;
  }

  .blog-meta-item {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

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

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

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

.credentials-section {
  background: #ffffff;
  padding: 60px 0;
}

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

.credentials-section .credential-card {
  background: #f8f9fa;
  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-section .credential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

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

.offer-section {
  background: linear-gradient(135deg, hsl(312, 51%, 44%) 0%, hsl(312, 51%, 29%) 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: hsl(312, 51%, 69%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.offer-description {
  font-family: 'Libre Baskerville', serif;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.deadline-date {
  font-family: 'Quicksand', sans-serif;
  color: hsl(312, 51%, 44%);
  font-size: 2.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 50px;
  height: 50px;
  background: hsl(312, 51%, 44%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
}

.offer-benefits {
  margin: 50px 0;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 25px 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(10px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(312, 51%, 44%);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-family: 'Quicksand', sans-serif;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-content p {
  font-family: 'Libre Baskerville', serif;
  color: #fff;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.offer-cta {
  margin-top: 50px;
}

.offer-btn {
  font-family: 'Quicksand', sans-serif;
  background: #fff;
  color: hsl(312, 51%, 44%);
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 3px solid #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-btn:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

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

  .benefit-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .benefit-content h4 {
    font-size: 1.1rem;
  }

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

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

  .disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(312, 51%, 44%) 0%, hsl(312, 51%, 69%) 100%);
  }

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

  .disclaimer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
  }

  .disclaimer-icon {
    font-size: 48px;
    color: hsl(312, 51%, 44%);
    flex-shrink: 0;
  }

  .disclaimer-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin: 0;
    letter-spacing: -0.5px;
  }

  .disclaimer-content {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
  }

  .disclaimer-content p {
    margin-bottom: 20px;
  }

  .disclaimer-content p:last-child {
    margin-bottom: 0;
  }

  .disclaimer-highlight {
    background: #fef5fb;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 3px solid hsl(312, 51%, 69%);
  }

  .disclaimer-highlight p {
    margin: 0;
    font-size: 15px;
    color: #555;
  }

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

    .disclaimer-container {
      padding: 35px 25px;
    }

    .disclaimer-header {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }

    .disclaimer-icon {
      font-size: 42px;
    }

    .disclaimer-title {
      font-size: 28px;
    }

    .disclaimer-content {
      font-size: 15px;
      text-align: left;
    }

    .disclaimer-highlight {
      padding: 20px;
    }
  }

  @media (max-width: 480px) {
    .disclaimer-title {
      font-size: 24px;
    }

    .disclaimer-icon {
      font-size: 36px;
    }

    .disclaimer-content {
      font-size: 14px;
    }
  }

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

  :root {
    --primary-color: hsl(312, 51%, 44%);
    --secondary-color: hsl(312, 51%, 29%);
    --accent-color: hsl(312, 51%, 69%);
  }

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

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

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

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

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

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

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

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

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

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

  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(312, 51%, 85%) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-color);
  }

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

  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 700;
  }

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

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

  :root {
    --primary-color: hsl(312, 51%, 44%);
    --secondary-color: hsl(312, 51%, 29%);
    --accent-color: hsl(312, 51%, 69%);
  }

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

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

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

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

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

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

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

  .policy-content a:hover {
    color: var(--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-color: hsl(312, 51%, 97%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }

  .contact-info {
    background-color: hsl(312, 51%, 95%);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }

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