:root {
            --primary-color: hsl(301, 54%, 34%);
            --secondary-color: hsl(301, 54%, 19%);
            --accent-color: hsl(301, 54%, 59%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', 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: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Raleway', 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: 2px solid var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(159, 54, 134, 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='%239f3686' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #fff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

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

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

  #about .section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(301, 54%, 34%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #about .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(301, 54%, 59%);
    border-radius: 2px;
  }

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

  #about .about-content {
    margin-bottom: 60px;
  }

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

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

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

  #about .about-text {
    padding: 20px 0;
  }

  #about .about-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(301, 54%, 19%);
    margin-bottom: 25px;
  }

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

  #about .values-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
  }

  #about .values-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(301, 54%, 34%);
    text-align: center;
    margin-bottom: 50px;
  }

  #about .value-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 35px 30px;
    margin-bottom: 30px;
    border-left: 5px solid hsl(301, 54%, 59%);
    transition: all 0.3s ease;
    height: 100%;
  }

  #about .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: hsl(301, 54%, 34%);
  }

  #about .value-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(301, 54%, 19%);
    margin-bottom: 15px;
  }

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

  #about .mission-vision {
    margin-top: 60px;
  }

  #about .mission-box,
  #about .vision-box {
    background: linear-gradient(135deg, hsl(301, 54%, 34%) 0%, hsl(301, 54%, 19%) 100%);
    border-radius: 20px;
    padding: 45px 40px;
    color: #ffffff;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  #about .mission-box::before,
  #about .vision-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  #about .mission-box h4,
  #about .vision-box h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  #about .mission-box p,
  #about .vision-box p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin: 0;
    position: relative;
    z-index: 1;
  }

  #about .stats-row {
    margin-top: 60px;
    text-align: center;
  }

  #about .stat-item {
    padding: 30px 20px;
  }

  #about .stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(301, 54%, 34%);
    display: block;
    margin-bottom: 10px;
  }

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

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

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

    #about .about-image {
      margin-bottom: 40px;
      min-height: 300px;
    }

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

    #about .mission-box,
    #about .vision-box {
      margin-bottom: 30px;
    }
  }

  @media (max-width: 767px) {
    #about .section-header h2 {
      font-size: 1.9rem;
    }

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

    #about .values-section h3 {
      font-size: 1.8rem;
    }

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

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

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

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

  #portfolio .section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  #portfolio .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(301, 54%, 34%), hsl(301, 54%, 59%));
    border-radius: 2px;
  }

  #portfolio .section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
  }

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

  #portfolio .filter-btn {
    padding: 10px 28px;
    background: #fff;
    border: 2px solid hsl(301, 54%, 34%);
    color: hsl(301, 54%, 34%);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(301, 54%, 34%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 45, 103, 0.3);
  }

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

  #portfolio .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 .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(142, 45, 103, 0.25);
  }

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

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

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

  #portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(142, 45, 103, 0.9), rgba(81, 26, 59, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

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

  #portfolio .overlay-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: hsl(301, 54%, 34%);
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
  }

  #portfolio .portfolio-item:hover .overlay-icon {
    transform: scale(1);
  }

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

  #portfolio .portfolio-category {
    display: inline-block;
    padding: 5px 15px;
    background: hsl(301, 54%, 95%);
    color: hsl(301, 54%, 34%);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

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

  #portfolio .modal-header {
    background: linear-gradient(135deg, hsl(301, 54%, 34%), hsl(301, 54%, 59%));
    color: #fff;
    border-bottom: none;
    padding: 25px 30px;
  }

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

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

  #portfolio .modal-body {
    padding: 35px;
  }

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

  #portfolio .modal-info {
    margin-bottom: 25px;
  }

  #portfolio .modal-info h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(301, 54%, 34%);
    margin-bottom: 15px;
  }

  #portfolio .modal-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  #portfolio .modal-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
  }

  #portfolio .modal-details .detail-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
  }

  #portfolio .modal-details .detail-row:last-child {
    border-bottom: none;
  }

  #portfolio .modal-details .detail-label {
    font-weight: 600;
    color: #333;
    min-width: 120px;
    font-family: 'Inter', sans-serif;
  }

  #portfolio .modal-details .detail-value {
    color: #666;
  }

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

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

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

    #portfolio .filter-buttons {
      gap: 10px;
    }

    #portfolio .filter-btn {
      padding: 8px 20px;
      font-size: 0.85rem;
    }

    #portfolio .portfolio-image {
      height: 220px;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&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: 'Raleway', sans-serif;
    position: relative;
    overflow: hidden;
  }

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

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

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

  #advantages .section-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(301, 54%, 34%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  #advantages .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(301, 54%, 59%);
    border-radius: 2px;
  }

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

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(138, 43, 107, 0.15);
    border-color: hsl(301, 54%, 59%);
  }

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

  #advantages .icon-wrapper {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(301, 54%, 34%), hsl(301, 54%, 59%));
    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 25px rgba(138, 43, 107, 0.3);
  }

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

  #advantages .advantage-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
  }

  #advantages .advantage-card:hover h3 {
    color: hsl(301, 54%, 34%);
  }

  #advantages .advantage-card p {
    font-size: 0.98rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(301, 54%, 59%);
    opacity: 0.03;
    border-radius: 50%;
    z-index: 1;
  }

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

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

  #statistics .section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(301, 54%, 34%);
    margin-bottom: 15px;
  }

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

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

  .stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(301, 54%, 34%), hsl(301, 54%, 59%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(123, 44, 101, 0.15);
    border-color: hsl(301, 54%, 59%);
  }

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

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(301, 54%, 34%), hsl(301, 54%, 59%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.4s ease;
  }

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

  .stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(301, 54%, 34%);
    margin-bottom: 8px;
    line-height: 1.2;
  }

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

  .stat-context {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
  }

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

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

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

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

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

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

    .stat-icon {
      width: 60px;
      height: 60px;
      font-size: 28px;
    }
  }

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

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

footer {
  background: linear-gradient(135deg, hsl(301, 54%, 19%) 0%, hsl(301, 54%, 34%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  font-family: 'Raleway', sans-serif;
}

footer h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

footer p, footer li, footer a {
  color: #e9ecef;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

footer a:hover {
  color: hsl(301, 54%, 59%);
  padding-left: 5px;
}

footer .company-description {
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

footer .contact-info {
  list-style: none;
  padding: 0;
}

footer .contact-info li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

footer .contact-info li i {
  color: hsl(301, 54%, 59%);
  margin-right: 10px;
  margin-top: 3px;
  min-width: 20px;
}

footer .footer-links {
  list-style: none;
  padding: 0;
}

footer .footer-links li {
  margin-bottom: 0.7rem;
}

footer .footer-links a {
  display: inline-block;
}

footer .business-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

footer .business-hours p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

footer .footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

#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: 2rem 0;
  border-top: 3px solid hsl(301, 54%, 34%);
  font-family: 'Raleway', sans-serif;
}

#cookieNotice .cookie-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(301, 54%, 19%);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

#cookieNotice .cookie-description {
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

#cookieNotice .cookie-category {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
}

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

#cookieNotice .category-name {
  font-weight: 600;
  color: #212529;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

#cookieNotice .category-status {
  font-size: 0.85rem;
  color: #6c757d;
  font-style: italic;
}

#cookieNotice .category-description {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 0.3rem;
}

#cookieNotice .btn-accept-all {
  background: #28a745;
  border: none;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

#cookieNotice .btn-reject {
  background: #6c757d;
  border: none;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

#cookieNotice .btn-manage {
  background: transparent;
  border: 2px solid hsl(301, 54%, 34%);
  color: hsl(301, 54%, 34%);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}

#cookieNotice .btn-manage:hover {
  background: hsl(301, 54%, 34%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(130, 47, 97, 0.3);
}

#cookieNotice .cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 768px) {
  #cookieNotice {
    padding: 1.5rem 0;
  }
  
  #cookieNotice .cookie-title {
    font-size: 1.2rem;
  }
  
  #cookieNotice .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  #cookieNotice .cookie-buttons button,
  #cookieNotice .cookie-buttons a {
    width: 100%;
    text-align: center;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
  }
}

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

.contact-section {
  font-family: 'Raleway', sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(301, 54%, 59%, 0.08);
  border-radius: 50%;
  z-index: 0;
}

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

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

.contact-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(301, 54%, 19%);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.contact-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: hsl(301, 54%, 59%);
  border-radius: 2px;
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(131, 43, 109, 0.1);
}

.contact-form-wrapper h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(301, 54%, 34%);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group label .required {
  color: hsl(301, 54%, 59%);
  margin-left: 3px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-control:focus {
  outline: none;
  border-color: hsl(301, 54%, 59%);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(131, 43, 109, 0.1);
}

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

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

.submit-btn {
  width: 100%;
  padding: 16px;
  background: hsl(301, 54%, 34%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: hsl(301, 54%, 19%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(131, 43, 109, 0.3);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid hsl(301, 54%, 59%);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.info-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(301, 54%, 59%) 0%, hsl(301, 54%, 34%) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  flex-shrink: 0;
}

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

.info-card-header h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(301, 54%, 34%);
  margin: 0;
}

.info-card-body p {
  margin: 0;
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
}

.info-card-body a {
  color: hsl(301, 54%, 34%);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-card-body a:hover {
  color: hsl(301, 54%, 59%);
}

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

.hours-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  color: #444;
}

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

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

.map-container {
  margin-top: 25px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.map-container h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: hsl(301, 54%, 34%);
  margin-bottom: 15px;
}

.map-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.95rem;
  border: 2px dashed #ddd;
}

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-header h2 {
    font-size: 2.3rem;
  }

  .contact-form-wrapper {
    padding: 35px;
  }
}

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

  .contact-header {
    margin-bottom: 40px;
  }

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

  .contact-header p {
    font-size: 1rem;
  }

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

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

  .info-card {
    padding: 25px;
  }

  .map-placeholder {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .contact-header h2 {
    font-size: 1.75rem;
  }

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

  .info-card-header h4 {
    font-size: 1.15rem;
  }

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

  .info-icon svg {
    width: 22px;
    height: 22px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

  :root {
    --primary-color: hsl(301, 54%, 34%);
    --secondary-color: hsl(301, 54%, 19%);
    --accent-color: hsl(301, 54%, 59%);
  }

  body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.8;
  }

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

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

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

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

  .policy-content p {
    margin-bottom: 1.25rem;
    font-weight: 400;
    color: #555;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }

  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }

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

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

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

  .intro-box {
    background: linear-gradient(135deg, hsl(301, 54%, 97%) 0%, hsl(301, 54%, 94%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .contact-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

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

  .contact-box p,
  .contact-box a {
    color: white;
  }

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

  .cookie-type-card {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0.375rem;
    transition: transform 0.2s ease;
  }

  .cookie-type-card:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  .last-updated {
    font-style: italic;
    color: #777;
    font-size: 0.95rem;
    margin-top: 1rem;
  }

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

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

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

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

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

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

  #faq .accordion-button {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    background-color: #ffffff;
    padding: 1.5rem 1.75rem;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed) {
    background-color: hsl(301, 54%, 34%);
    color: #ffffff;
    box-shadow: none;
  }

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

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

  #faq .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");
  }

  #faq .accordion-body {
    padding: 1.75rem;
    background-color: #ffffff;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid #f0f0f0;
  }

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

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

  #faq .accordion-body strong {
    color: #222;
    font-weight: 600;
  }

  #faq .faq-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
  }

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(301, 54%, 34%) 0%, hsl(301, 54%, 19%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(301, 54%, 59%);
  opacity: 0.1;
  border-radius: 50%;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(301, 54%, 59%);
  opacity: 0.08;
  border-radius: 50%;
}

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

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

.newsletter-description {
  font-family: 'Raleway', sans-serif;
  font-size: 1.125rem;
  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;
  flex-wrap: wrap;
}

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

.newsletter-email-input:focus {
  outline: none;
  border-color: hsl(301, 54%, 59%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(194, 97, 167, 0.1);
}

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

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

.newsletter-submit-btn:hover {
  background: hsl(301, 54%, 54%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 97, 167, 0.3);
}

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

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

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

.newsletter-benefit-icon {
  width: 20px;
  height: 20px;
  background: hsl(301, 54%, 59%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

@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: 12px;
  }

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

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

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

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

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

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

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

  .hero-section h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: hsl(301, 54%, 34%);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: hsl(301, 54%, 19%);
    margin-bottom: 1.5rem;
  }

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

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

  .hero-advantages li {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    color: #222;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li::before {
    content: "\F26B";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(301, 54%, 59%);
    font-size: 1.3rem;
    font-weight: bold;
  }

  .hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }

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

  .btn-hero-primary {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 36px;
    background: hsl(301, 54%, 34%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 49, 111, 0.3);
  }

  .btn-hero-primary:hover {
    background: hsl(301, 54%, 19%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 49, 111, 0.4);
  }

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

  .btn-hero-secondary:hover {
    background: hsl(301, 54%, 34%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 49, 111, 0.2);
  }

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

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

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

    .hero-image-wrapper {
      margin-top: 3rem;
      transform: translateY(0);
    }

    .hero-cta-group {
      justify-content: center;
    }
  }

  @media (max-width: 767px) {
    .hero-section h1 {
      font-size: 2rem;
    }

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

    .hero-section p {
      font-size: 1rem;
    }

    .hero-advantages li {
      font-size: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
      font-size: 1rem;
      padding: 12px 28px;
      width: 100%;
      justify-content: center;
    }
  }

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

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

  .services-section .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(301, 54%, 34%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .services-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(301, 54%, 59%);
    border-radius: 2px;
  }

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

  .service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(123, 44, 101, 0.2);
    border-color: hsl(301, 54%, 59%);
  }

  .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(301, 54%, 34%) 0%, hsl(301, 54%, 19%) 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 {
    background: linear-gradient(135deg, hsl(301, 54%, 59%) 0%, hsl(301, 54%, 34%) 100%);
    transform: rotate(360deg) scale(1.1);
  }

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

  .service-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(301, 54%, 19%);
    margin-bottom: 18px;
    text-align: center;
  }

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

  .service-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(301, 54%, 34%);
    text-align: center;
    margin-bottom: 15px;
  }

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

  .service-terms {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: auto;
  }

  .service-terms p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
  }

  .service-terms strong {
    color: hsl(301, 54%, 34%);
    font-weight: 600;
  }

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

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

    .service-card {
      padding: 35px 25px;
    }
  }

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

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

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

    .service-icon {
      width: 70px;
      height: 70px;
    }

    .service-icon i {
      font-size: 1.9rem;
    }

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

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

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

  .blog-preview-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: hsl(301, 54%, 34%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .blog-preview-section .section-subtitle {
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 3px solid hsl(301, 54%, 59%);
  }

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

  .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #777;
  }

  .blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .blog-card-meta i {
    color: hsl(301, 54%, 59%);
  }

  .blog-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #222;
    font-size: 1.35rem;
    margin-bottom: 15px;
    line-height: 1.4;
  }

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

  .blog-card h3 a:hover {
    color: hsl(301, 54%, 34%);
  }

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

  .blog-card-link {
    color: hsl(301, 54%, 34%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .blog-card-link:hover {
    color: hsl(301, 54%, 59%);
    gap: 12px;
  }

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

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

  .view-all-btn {
    background: hsl(301, 54%, 34%);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid hsl(301, 54%, 34%);
    font-size: 1rem;
    margin-top: 40px;
  }

  .view-all-btn:hover {
    background: hsl(301, 54%, 59%);
    border-color: hsl(301, 54%, 59%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .blog-btn-wrapper {
    text-align: center;
  }

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

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

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

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

.offer-section {
  background: linear-gradient(135deg, hsl(301, 54%, 34%) 0%, hsl(301, 54%, 19%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.offer-title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  color: #f8f9fa;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
}

.offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.deadline-wrapper {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, hsl(301, 54%, 59%) 0%, hsl(301, 54%, 34%) 100%);
  border-radius: 15px;
}

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

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

.calendar-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

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

.benefits-list li {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  color: #333;
  padding: 16px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.benefit-icon {
  width: 40px;
  height: 40px;
  background: hsl(301, 54%, 59%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.offer-cta {
  display: inline-block;
  background: hsl(301, 54%, 34%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(138, 43, 107, 0.3);
}

.offer-cta:hover {
  background: hsl(301, 54%, 19%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(138, 43, 107, 0.4);
}

.discount-highlight {
  display: inline-block;
  background: hsl(301, 54%, 59%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

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

  .offer-title {
    font-size: 36px;
  }

  .offer-description {
    font-size: 16px;
  }

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

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

  .benefits-list li {
    font-size: 15px;
  }

  .offer-cta {
    width: 100%;
    text-align: center;
  }
}

.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Raleway', sans-serif;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, hsl(301, 54%, 34%) 0%, transparent 100%);
  opacity: 0.03;
}

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

.section-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(301, 54%, 19%);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.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(301, 54%, 34%);
  background: linear-gradient(135deg, #ffffff 0%, #faf8fb 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(301, 54%, 59%) 0%, hsl(301, 54%, 34%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

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

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

.testimonial-location {
  font-size: 0.9rem;
  color: #888;
}

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

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

.star.empty {
  color: #ddd;
}

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

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

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

.testimonial-date {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
  margin-top: auto;
}

.testimonial-highlight {
  background: linear-gradient(120deg, hsl(301, 54%, 95%) 0%, transparent 100%);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 0.9rem;
  color: hsl(301, 54%, 19%);
  font-weight: 500;
}

.testimonial-pros-cons {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.pros-cons-item {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #555;
}

.pros-cons-item strong {
  color: #222;
}

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

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

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

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

.disclaimer-section .container {
  max-width: 900px;
}

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(301, 54%, 34%) 0%, hsl(301, 54%, 59%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(139, 51, 119, 0.2);
}

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

.disclaimer-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(301, 54%, 19%);
  text-align: center;
  margin-bottom: 40px;
}

.disclaimer-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid hsl(301, 54%, 34%);
}

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

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

  .disclaimer-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .disclaimer-content {
    padding: 30px 20px;
  }

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

  .disclaimer-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
  }

  .disclaimer-icon i {
    font-size: 28px;
  }
}

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

  .disclaimer-title {
    font-size: 1.75rem;
  }

  .disclaimer-content {
    padding: 25px 15px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');
  
  :root {
    --primary-color: hsl(301, 54%, 34%);
    --secondary-color: hsl(301, 54%, 19%);
    --accent-color: hsl(301, 54%, 59%);
  }
  
  .policy-content {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Inter', 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: 4px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
  }
  
  .policy-content h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    font-weight: 400;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .policy-content strong {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .info-box {
    background-color: hsl(301, 54%, 95%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-details {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-details h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-details a {
    color: var(--accent-color);
  }
  
  .contact-details a:hover {
    color: white;
  }
  
  .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');
  
  :root {
    --primary-color: hsl(301, 54%, 34%);
    --secondary-color: hsl(301, 54%, 19%);
    --accent-color: hsl(301, 54%, 59%);
  }
  
  .policy-content {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }
  
  .policy-intro {
    background: linear-gradient(135deg, rgba(155, 43, 118, 0.05) 0%, rgba(75, 21, 57, 0.05) 100%);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .contact-info {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-info h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-info a {
    color: var(--accent-color);
  }
  
  .contact-info a:hover {
    color: white;
  }
  
  .effective-date {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    font-size: 0.95rem;
  }