:root {
            --primary-color: hsl(289, 61%, 34%);
            --secondary-color: hsl(289, 61%, 19%);
            --accent-color: hsl(289, 61%, 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: #ffffff;
            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.2rem rgba(142, 36, 170, 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='rgba(142, 36, 170, 1)' 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=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

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

  #about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, hsla(289, 61%, 59%, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }

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

  #about .section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    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: linear-gradient(90deg, hsl(289, 61%, 34%), hsl(289, 61%, 59%));
    border-radius: 2px;
  }

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

  #about .about-content {
    position: relative;
  }

  #about .story-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid hsl(289, 61%, 34%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #about .story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }

  #about .story-block h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: hsl(289, 61%, 34%);
    margin-bottom: 25px;
  }

  #about .story-block p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
  }

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

  #about .image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
  }

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

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

  #about .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsla(289, 61%, 34%, 0.15) 0%, transparent 60%);
    pointer-events: none;
  }

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

  #about .value-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(289, 61%, 59%);
  }

  #about .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-top-color: hsl(289, 61%, 34%);
  }

  #about .value-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(289, 61%, 34%), hsl(289, 61%, 59%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #ffffff;
  }

  #about .value-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
  }

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

  #about .mission-vision {
    background: linear-gradient(135deg, hsl(289, 61%, 34%), hsl(289, 61%, 19%));
    border-radius: 16px;
    padding: 50px;
    margin-top: 50px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }

  #about .mission-vision::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(289, 61%, 59%, 0.2) 0%, transparent 70%);
    border-radius: 50%;
  }

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

  #about .mission-vision h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
  }

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

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

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

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

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

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

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

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

  .portfolio-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(289, 61%, 59%, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

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

  .portfolio-section .section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: hsl(289, 61%, 34%);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .portfolio-section .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .portfolio-section .section-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

  .filter-btn {
    font-family: 'Raleway', sans-serif;
    padding: 12px 28px;
    border: 2px solid hsl(289, 61%, 34%);
    background: #fff;
    color: hsl(289, 61%, 34%);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(289, 61%, 34%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(142, 45, 123, 0.25);
  }

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

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

  .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(142, 45, 123, 0.2);
  }

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

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

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(142, 45, 123, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
  }

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

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

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: hsl(289, 61%, 59%);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 10px;
  }

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

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

  .view-details-btn {
    font-family: 'Raleway', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(289, 61%, 34%);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .view-details-btn:hover {
    color: hsl(289, 61%, 59%);
    gap: 12px;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(289, 61%, 34%) 0%, hsl(289, 61%, 19%) 100%);
    color: #fff;
    border: none;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 35px;
  }

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

  .modal-category {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: hsl(289, 61%, 59%);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .modal-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
  }

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

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

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

  .project-details li {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
  }

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

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

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

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

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

    .filter-buttons {
      gap: 10px;
    }

    .filter-btn {
      padding: 10px 20px;
      font-size: 0.85rem;
    }

    .portfolio-image {
      height: 220px;
    }

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

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

    .portfolio-content {
      padding: 20px;
    }

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

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

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

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

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

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

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

  #advantages .section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.6;
  }

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

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

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(148, 33, 146, 0.15);
    border-color: hsl(289, 61%, 59%);
  }

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

  .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(289, 61%, 34%), hsl(289, 61%, 59%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }

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

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

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

  .advantage-card:hover .advantage-title {
    color: hsl(289, 61%, 34%);
  }

  .advantage-description {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

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

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

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

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

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

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

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

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

    .advantage-title {
      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%);
    position: relative;
    overflow: hidden;
  }

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(289, 61%, 34%) 0%, hsl(289, 61%, 59%) 100%);
  }

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

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

  #statistics .section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

  #statistics .stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 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;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(289, 61%, 34%), hsl(289, 61%, 59%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(137, 43, 129, 0.15);
    border-color: hsl(289, 61%, 59%);
  }

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

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

  #statistics .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(137, 43, 129, 0.3);
  }

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

  #statistics .stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(289, 61%, 34%);
    margin-bottom: 12px;
    line-height: 1;
  }

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

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

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

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

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

    #statistics .stat-card {
      padding: 35px 25px;
    }

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

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

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

    #statistics .stat-icon {
      width: 60px;
      height: 60px;
    }

    #statistics .stat-icon i {
      font-size: 28px;
    }
  }

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

footer h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.5rem;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: hsl(289, 61%, 59%);
}

footer p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}

footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

footer a:hover {
  color: hsl(289, 61%, 59%);
  transform: translateX(5px);
}

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

.footer-contact-item i {
  color: hsl(289, 61%, 59%);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

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

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

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

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-policies {
  margin-top: 1rem;
}

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

.footer-policies a:hover {
  color: hsl(289, 61%, 59%);
  transform: translateX(0);
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 2rem 0;
  border-top: 4px solid hsl(289, 61%, 34%);
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

#cookieNotice h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(289, 61%, 34%);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

#cookieNotice p {
  color: #333333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: 'Raleway', sans-serif;
}

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

.cookie-category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
}

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

.cookie-category-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: hsl(289, 61%, 34%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.cookie-category-icon i {
  color: #ffffff;
  font-size: 1.2rem;
}

.cookie-category-content {
  flex: 1;
}

.cookie-category-content strong {
  display: block;
  color: #222222;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.cookie-category-content span {
  color: #666666;
  font-size: 0.9rem;
  font-family: 'Raleway', sans-serif;
}

.cookie-category-badge {
  margin-left: auto;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.badge-required {
  background: #28a745;
  color: #ffffff;
}

.badge-optional {
  background: #6c757d;
  color: #ffffff;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  min-width: 150px;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  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-settings {
  background: transparent;
  color: hsl(289, 61%, 34%);
  border: 2px solid hsl(289, 61%, 34%);
}

.cookie-btn-settings:hover {
  background: hsl(289, 61%, 34%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(142, 36, 170, 0.3);
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1.5rem;
  }

  footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  #cookieNotice {
    padding: 1.5rem 0;
  }

  #cookieNotice h4 {
    font-size: 1.25rem;
  }

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

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

  .footer-policies a {
    display: block;
    margin: 0.5rem 0;
  }

  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-category-badge {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

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

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

.contact-section {
    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(289, 61%, 59%);
    opacity: 0.05;
    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(289, 61%, 19%);
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    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: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

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

.contact-form label .required {
    color: hsl(289, 61%, 34%);
    margin-left: 3px;
}

.contact-form input,
.contact-form textarea {
    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;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: hsl(289, 61%, 59%);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

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

.contact-form .submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: hsl(289, 61%, 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;
}

.contact-form .submit-btn:hover {
    background: hsl(289, 61%, 19%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

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

.contact-info-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border-left: 4px solid hsl(289, 61%, 59%);
}

.contact-info-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(289, 61%, 34%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-card h4 i {
    font-size: 1.3rem;
    color: hsl(289, 61%, 59%);
}

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

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

.contact-detail i {
    color: hsl(289, 61%, 59%);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-detail-content {
    flex: 1;
}

.contact-detail strong {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-detail a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-detail a:hover {
    color: hsl(289, 61%, 34%);
}

.contact-detail p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

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

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

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

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

.hours-list .time {
    color: #666;
}

.location-note {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid hsl(289, 61%, 59%);
}

.location-note p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-header h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        padding: 30px 25px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .hours-list li {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        padding: 25px 20px;
    }
}

@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(289, 61%, 34%);
    --secondary-color: hsl(289, 61%, 19%);
    --accent-color: hsl(289, 61%, 59%);
  }

  .policy-content {
    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(--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;
    color: var(--primary-color);
  }

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

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

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

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    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;
    font-size: 1.05rem;
  }

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

  .intro-box {
    background: linear-gradient(135deg, rgba(289, 61%, 34%, 0.05) 0%, rgba(289, 61%, 59%, 0.05) 100%);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }

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

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

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

  .contact-box a:hover {
    color: white;
    border-bottom-color: white;
  }

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

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

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

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

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

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

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

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

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

  .faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(289, 61%, 34%);
    color: #ffffff;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 20c-8.284 0-15 6.716-15 15s6.716 15 15 15 15-6.716 15-15-6.716-15-15-15zm0 25c-5.523 0-10-4.477-10-10s4.477-10 10-10 10 4.477 10 10-4.477 10-10 10z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  opacity: 0.4;
}

.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

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

.newsletter-description {
  font-family: 'Raleway', sans-serif;
  font-size: 1.125rem;
  color: #f8f9fa;
  margin-bottom: 40px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 550px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-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-input:focus {
  outline: none;
  border-color: hsl(289, 61%, 59%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

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

.newsletter-submit {
  padding: 16px 40px;
  background: hsl(289, 61%, 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:hover {
  background: hsl(289, 61%, 54%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.newsletter-privacy {
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  color: #f8f9fa;
  margin-top: 20px;
  opacity: 0.9;
}

.newsletter-privacy a {
  color: hsl(289, 61%, 59%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.newsletter-privacy a:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

@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;
    overflow: hidden;
  }

  .hero-section h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #222;
    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(289, 61%, 34%);
    margin-bottom: 1.5rem;
  }

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

  .hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 500px;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .hero-image-wrapper:hover img {
    transform: scale(1.05);
  }

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

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

  .advantages-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: hsl(289, 61%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .advantages-list li::after {
    content: '✓';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
  }

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

  .btn-hero-primary {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: hsl(289, 61%, 34%);
    color: #fff;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(138, 43, 114, 0.3);
  }

  .btn-hero-primary:hover {
    background: hsl(289, 61%, 19%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 114, 0.4);
    color: #fff;
  }

  .btn-hero-secondary {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: transparent;
    color: hsl(289, 61%, 34%);
    border: 2px solid hsl(289, 61%, 34%);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .btn-hero-secondary:hover {
    background: hsl(289, 61%, 34%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 43, 114, 0.2);
  }

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

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

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

    .hero-image-wrapper {
      min-height: 400px;
      margin-bottom: 2rem;
    }

    .hero-cta-wrapper {
      flex-direction: column;
    }

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

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

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

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

    .advantages-list li {
      font-size: 0.95rem;
    }

    .hero-image-wrapper {
      min-height: 300px;
    }
  }

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

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

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

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

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

.testimonial-card.featured {
  border-left: 4px solid hsl(289, 61%, 34%);
}

.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(289, 61%, 34%), hsl(289, 61%, 59%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.testimonial-location {
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-location i {
  color: hsl(289, 61%, 34%);
  font-size: 0.85rem;
}

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

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

.star.empty {
  color: #ddd;
}

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

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

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

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

.rating-summary {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
}

.rating-summary h3 {
  font-family: 'Inter', sans-serif;
  color: #222;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.rating-number {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(289, 61%, 34%);
}

.rating-stars-large {
  display: flex;
  gap: 5px;
}

.rating-stars-large .star {
  font-size: 1.8rem;
}

.rating-count {
  color: #666;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .rating-summary {
    padding: 30px 20px;
  }
  
  .rating-number {
    font-size: 2.5rem;
  }
}

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

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

  .services-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

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

  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 35px rgba(148, 33, 146, 0.2);
    border-color: hsl(289, 61%, 59%);
  }

  .service-icon-wrapper {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(289, 61%, 34%) 0%, hsl(289, 61%, 19%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, hsl(289, 61%, 59%) 0%, hsl(289, 61%, 34%) 100%);
    transform: rotate(360deg) scale(1.1);
  }

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

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

  .service-description {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .service-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(289, 61%, 34%);
    margin-bottom: 0.5rem;
  }

  .service-terms {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
  }

  .service-terms i {
    color: hsl(289, 61%, 59%);
    margin-right: 0.4rem;
  }

  .btn-book-service {
    background: linear-gradient(135deg, hsl(289, 61%, 34%) 0%, hsl(289, 61%, 19%) 100%);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
  }

  .btn-book-service:hover {
    background: linear-gradient(135deg, hsl(289, 61%, 59%) 0%, hsl(289, 61%, 34%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(148, 33, 146, 0.3);
    color: #ffffff;
  }

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

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

    .service-card {
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }

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

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

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

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

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

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

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

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

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #666;
}

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

.blog-meta-item i {
  color: hsl(289, 61%, 34%);
  font-size: 0.9rem;
}

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

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

.blog-card-title a:hover {
  color: hsl(289, 61%, 34%);
}

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

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(289, 61%, 34%);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  gap: 0.8rem;
  color: hsl(289, 61%, 19%);
}

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

.btn-view-all {
  display: inline-block;
  padding: 14px 40px;
  background: hsl(289, 61%, 34%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-view-all:hover {
  background: hsl(289, 61%, 19%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

  .blog-card {
    margin-bottom: 2rem;
  }

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

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

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

.credential-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%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(289, 61%, 34%);
  opacity: 0.08;
  border-radius: 50%;
}

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

.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, hsl(289, 61%, 34%) 0%, hsl(289, 61%, 19%) 100%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.offer-description {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  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.1);
  margin-top: 40px;
}

.deadline-wrapper {
  background: linear-gradient(135deg, hsl(289, 61%, 34%) 0%, hsl(289, 61%, 59%) 100%);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.deadline-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.deadline-label {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.deadline-date {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.deadline-icon {
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
  opacity: 0.9;
}

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

.benefits-list li {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  margin-bottom: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid hsl(289, 61%, 34%);
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(10px);
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  font-size: 28px;
  color: hsl(289, 61%, 34%);
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-text {
  color: #333;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}

.discount-highlight {
  display: inline-block;
  background: hsl(289, 61%, 59%);
  color: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin: 30px 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.offer-cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.offer-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, hsl(289, 61%, 34%) 0%, hsl(289, 61%, 19%) 100%);
  color: #fff;
  padding: 20px 60px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  color: #fff;
  background: linear-gradient(135deg, hsl(289, 61%, 39%) 0%, hsl(289, 61%, 24%) 100%);
}

.offer-note {
  text-align: center;
  color: #777;
  font-size: 14px;
  margin-top: 30px;
  font-style: italic;
}

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

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

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

  .deadline-wrapper {
    padding: 30px 20px;
  }

  .deadline-date {
    font-size: 40px;
  }

  .discount-highlight {
    font-size: 36px;
    padding: 20px 30px;
  }

  .offer-cta-btn {
    padding: 18px 40px;
    font-size: 18px;
  }

  .benefits-list li {
    padding: 15px;
  }

  .benefit-icon {
    font-size: 24px;
    margin-right: 15px;
  }

  .benefit-text {
    font-size: 16px;
  }
}

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

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

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(289, 61%, 59%) 0%, hsl(289, 61%, 34%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: #ffffff;
  font-size: 32px;
}

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

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

.disclaimer-text strong {
  color: hsl(289, 61%, 34%);
  font-weight: 600;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-container {
    padding: 35px 25px;
    margin: 0 15px;
  }
  
  .disclaimer-title {
    font-size: 2rem;
  }
  
  .disclaimer-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .disclaimer-text {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .disclaimer-title {
    font-size: 1.75rem;
  }
  
  .disclaimer-container {
    padding: 30px 20px;
  }
}

@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(289, 61%, 34%);
    --secondary-color: hsl(289, 61%, 19%);
    --accent-color: hsl(289, 61%, 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 p {
    margin-bottom: 1rem;
    font-weight: 400;
  }
  
  .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-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }
  
  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
  }
  
  .effective-date {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 0.25rem;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-box a:hover {
    color: #f8f9fa;
  }
  
  .section-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

@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(289, 61%, 34%);
    --secondary-color: hsl(289, 61%, 19%);
    --accent-color: hsl(289, 61%, 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(--primary-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 p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 400;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }
  
  .policy-content strong {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .intro-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 2rem 0;
  }