:root {
            --primary-color: hsl(263, 43%, 31%);
            --secondary-color: hsl(263, 43%, 16%);
            --accent-color: hsl(263, 43%, 56%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Nunito', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        .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='%23462861' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
            
            .navbar-nav .nav-link::after {
                display: none;
            }
        }

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

  .about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(263, 43%, 56%, 0.05);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .about-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(263, 43%, 31%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

  .about-header p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

  .about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
  }

  .about-image-wrapper {
    flex: 1;
    position: relative;
  }

  .about-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: hsl(263, 43%, 31%);
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .about-image-badge span {
    display: block;
    font-size: 2rem;
    margin-bottom: 5px;
  }

  .about-text-wrapper {
    flex: 1;
  }

  .about-text-wrapper h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(263, 43%, 31%);
    margin-bottom: 25px;
  }

  .about-text-wrapper p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .values-section {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
  }

  .values-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(263, 43%, 31%);
    margin-bottom: 35px;
    text-align: center;
  }

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

  .value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
  }

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

  .value-icon {
    width: 70px;
    height: 70px;
    background: hsl(263, 43%, 56%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
  }

  .value-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(263, 43%, 31%);
    margin-bottom: 15px;
  }

  .value-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
  }

  .mission-vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .mission-box, .vision-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid hsl(263, 43%, 56%);
  }

  .mission-box h3, .vision-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(263, 43%, 31%);
    margin-bottom: 20px;
  }

  .mission-box p, .vision-box p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin: 0;
  }

  .about-image-secondary {
    margin-top: 40px;
    text-align: center;
  }

  .about-image-secondary img {
    width: 100%;
    max-width: 900px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

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

    .mission-vision-wrapper {
      grid-template-columns: 1fr;
    }

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

    .about-text-wrapper h3 {
      font-size: 1.7rem;
    }
  }

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

    .about-header h2 {
      font-size: 1.9rem;
    }

    .values-section {
      padding: 30px 20px;
    }

    .values-grid {
      grid-template-columns: 1fr;
    }

    .about-image-wrapper img,
    .about-image-secondary img {
      height: 300px;
    }

    .mission-box, .vision-box {
      padding: 30px 20px;
    }
  }

.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: hsl(263, 43%, 56%, 0.05);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .portfolio-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(263, 43%, 16%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

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

  .filter-btn {
    font-family: 'Nunito', sans-serif;
    padding: 12px 30px;
    border: 2px solid hsl(263, 43%, 31%);
    background: transparent;
    color: hsl(263, 43%, 31%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(263, 43%, 31%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

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

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

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

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

  .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.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(to bottom, transparent 0%, hsl(263, 43%, 16%, 0.9) 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: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: hsl(263, 43%, 56%);
    background: hsl(263, 43%, 56%, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .portfolio-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(263, 43%, 16%);
    margin-bottom: 12px;
    line-height: 1.3;
  }

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

  .portfolio-link {
    font-family: 'Nunito', sans-serif;
    color: hsl(263, 43%, 31%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .portfolio-link:hover {
    color: hsl(263, 43%, 56%);
    gap: 12px;
  }

  .portfolio-link::after {
    content: '→';
    font-size: 1.2rem;
  }

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

  .modal-header {
    background: hsl(263, 43%, 31%);
    color: #ffffff;
    border: none;
    padding: 25px 30px;
  }

  .modal-header .modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
  }

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

  .modal-body {
    padding: 40px;
  }

  .modal-project-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
  }

  .modal-project-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
  }

  .modal-info-item h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .modal-info-item p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: #333;
    margin: 0;
    font-weight: 600;
  }

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

  .modal-project-features {
    margin-top: 30px;
  }

  .modal-project-features h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: hsl(263, 43%, 16%);
    margin-bottom: 20px;
    font-weight: 600;
  }

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

  .modal-project-features li {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #555;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
  }

  .modal-project-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(263, 43%, 56%);
    font-weight: bold;
    font-size: 1.2rem;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

    .modal-body {
      padding: 25px;
    }

    .modal-project-image {
      height: 250px;
    }

    .modal-project-info {
      grid-template-columns: 1fr;
      gap: 15px;
      padding: 20px;
    }
  }

  @media (max-width: 480px) {
    .portfolio-header h2 {
      font-size: 1.8rem;
    }

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

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

    .portfolio-content {
      padding: 20px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Nunito:wght@400;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%);
    position: relative;
    overflow: hidden;
  }

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: hsl(263, 43%, 56%, 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-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(263, 43%, 31%);
    margin-bottom: 20px;
    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(263, 43%, 56%);
    border-radius: 2px;
  }

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

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 4px 20px 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(263, 43%, 56%), hsl(263, 43%, 31%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(80, 49, 115, 0.15);
    border-color: hsl(263, 43%, 56%, 0.3);
  }

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

  #advantages .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(263, 43%, 56%), hsl(263, 43%, 31%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  #advantages .advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(80, 49, 115, 0.3);
  }

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

  #advantages .advantage-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: hsl(263, 43%, 31%);
    margin-bottom: 15px;
    transition: color 0.3s ease;
  }

  #advantages .advantage-card:hover h3 {
    color: hsl(263, 43%, 56%);
  }

  #advantages .advantage-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.975rem;
    color: #666;
    line-height: 1.7;
    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 {
      margin-bottom: 40px;
    }

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

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

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

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

  #statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(263, 43%, 31%) 0%, hsl(263, 43%, 16%) 100%);
    position: relative;
    overflow: hidden;
  }

  #statistics::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"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    pointer-events: none;
  }

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

  .statistics-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
  }

  .statistics-header p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
  }

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

  .stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: hsl(263, 43%, 56%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: hsl(263, 43%, 56%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: hsl(263, 43%, 65%);
  }

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

  .stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1;
  }

  .stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 8px;
  }

  .stat-context {
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
  }

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

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

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

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

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

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

    .stat-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
    }

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

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

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

footer {
  background: linear-gradient(135deg, hsl(263, 43%, 16%) 0%, hsl(263, 43%, 31%) 100%);
  color: #ffffff;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  font-family: 'Nunito', sans-serif;
}

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

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

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

footer a:hover {
  color: hsl(263, 43%, 56%);
  padding-left: 5px;
}

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

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

.footer-contact-info {
  margin-bottom: 1rem;
}

.footer-contact-info i {
  color: hsl(263, 43%, 56%);
  margin-right: 10px;
  width: 20px;
}

.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-description {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

#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(263, 43%, 56%);
  animation: slideUp 0.5s ease-out;
}

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

#cookieNotice h4 {
  font-family: 'Poppins', sans-serif;
  color: hsl(263, 43%, 31%);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

#cookieNotice p {
  color: #333333;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  padding: 0.5rem 0;
}

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

.cookie-category-title {
  font-weight: 600;
  color: hsl(263, 43%, 31%);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  font-family: 'Poppins', sans-serif;
}

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

.cookie-category-required {
  display: inline-block;
  background: #28a745;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 8px;
  font-weight: 600;
}

.cookie-category-optional {
  display: inline-block;
  background: #6c757d;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 8px;
  font-weight: 600;
}

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

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

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

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

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

.btn-manage-settings {
  background: transparent;
  color: hsl(263, 43%, 31%);
  border: 2px solid hsl(263, 43%, 31%);
  padding: 0.7rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
}

.btn-manage-settings:hover {
  background: hsl(263, 43%, 31%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(86, 60, 101, 0.3);
}

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

  footer h5 {
    margin-top: 2rem;
    font-size: 1rem;
  }

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

  #cookieNotice {
    padding: 1.5rem 0;
  }

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

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

  .btn-accept-all,
  .btn-reject-optional,
  .btn-manage-settings {
    width: 100%;
    text-align: center;
  }
}

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

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

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

  .contact-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: hsl(263, 43%, 31%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .contact-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
  }

  .contact-form-wrapper h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(263, 43%, 31%);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

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

  .contact-form .form-control,
  .contact-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #333;
    background: #ffffff;
  }

  .contact-form .form-control:focus,
  .contact-form .form-select:focus {
    border-color: hsl(263, 43%, 56%);
    box-shadow: 0 0 0 0.2rem rgba(123, 79, 163, 0.15);
    outline: none;
  }

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

  .contact-form .btn-submit {
    background: hsl(263, 43%, 31%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
  }

  .contact-form .btn-submit:hover {
    background: hsl(263, 43%, 16%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 79, 163, 0.3);
  }

  .contact-info-wrapper {
    background: hsl(263, 43%, 31%);
    border-radius: 12px;
    padding: 40px;
    color: #ffffff;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .contact-info-wrapper::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;
  }

  .contact-info-wrapper h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .contact-info-item {
    margin-bottom: 2rem;
    position: relative;
  }

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

  .contact-info-item .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
  }

  .contact-info-item .icon-box i {
    font-size: 1.5rem;
    color: #ffffff;
  }

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

  .contact-info-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.3rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .contact-info-item a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .contact-info-item a:hover {
    color: hsl(263, 43%, 76%);
    transform: translateX(5px);
  }

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

  .working-hours-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .working-hours-list li .day {
    font-weight: 600;
  }

  .working-hours-list li .time {
    color: rgba(255, 255, 255, 0.85);
  }

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

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

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

    .contact-info-wrapper {
      margin-bottom: 0;
    }
  }

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Nunito:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(263, 43%, 31%);
    --secondary-color: hsl(263, 43%, 16%);
    --accent-color: hsl(263, 43%, 56%);
  }
  
  .policy-content {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .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: 1.25rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    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.75rem;
    font-size: 1.05rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .info-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .info-box a {
    color: white;
    text-decoration: underline;
  }
  
  .info-box a:hover {
    color: var(--accent-color);
  }
  
  .cookie-type-card {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cookie-type-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .last-updated {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

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

  .faq-section h2 {
    font-family: 'Poppins', sans-serif;
    color: hsl(263, 43%, 31%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

  .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(263, 43%, 31%);
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
  }

  .accordion-button:not(.collapsed) {
    background-color: hsl(263, 43%, 31%);
    color: #ffffff;
    box-shadow: none;
  }

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

  .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a2f5e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
  }

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

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

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

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

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

  .accordion-body li {
    margin-bottom: 0.5rem;
    color: #555;
  }

  .faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: hsl(263, 43%, 56%);
    border-radius: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-cta h3 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .faq-cta p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .faq-cta-btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background-color: #ffffff;
    color: hsl(263, 43%, 31%);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
  }

  .faq-cta-btn:hover {
    background-color: hsl(263, 43%, 31%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

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

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

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

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

    .faq-cta h3 {
      font-size: 1.5rem;
    }

    .faq-cta p {
      font-size: 1rem;
    }
  }

.newsletter-section {
  background: linear-gradient(135deg, hsl(263, 43%, 31%) 0%, hsl(263, 43%, 16%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

.newsletter-email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: 'Nunito', 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(263, 43%, 56%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

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

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

.newsletter-submit-btn:hover {
  background: hsl(263, 43%, 46%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 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;
  color: #f8f9fa;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
}

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

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

@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%;
  }

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

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

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

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

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

  .hero-section {
    background: linear-gradient(135deg, hsl(263, 43%, 31%) 0%, hsl(263, 43%, 16%) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
  }

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

  .hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: hsl(263, 43%, 85%);
    margin-bottom: 2rem;
  }

  .hero-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    color: #f8f9fa;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }

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

  .hero-advantages li {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    color: #ffffff;
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

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

  .hero-advantages li i {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 14px;
  }

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

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

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

  .btn-hero-primary {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    background-color: hsl(263, 43%, 56%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .btn-hero-primary:hover {
    background-color: hsl(263, 43%, 66%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }

  .btn-hero-secondary {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }

  .btn-hero-secondary:hover {
    background-color: #ffffff;
    color: hsl(263, 43%, 31%);
    transform: translateY(-2px);
  }

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

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

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

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

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

    .hero-image-wrapper {
      margin-top: 3rem;
    }
  }

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

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

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

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

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

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

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

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

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

  #blog .blog-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
  }

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

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

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

  #blog .blog-meta i {
    color: hsl(263, 43%, 56%);
  }

  #blog .blog-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(263, 43%, 31%);
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  #blog .blog-title a {
    color: hsl(263, 43%, 31%);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #blog .blog-title a:hover {
    color: hsl(263, 43%, 56%);
  }

  #blog .blog-excerpt {
    color: #666;
    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(263, 43%, 56%);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
  }

  #blog .read-more:hover {
    gap: 0.8rem;
    color: hsl(263, 43%, 31%);
  }

  #blog .view-all-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 14px 40px;
    background: hsl(263, 43%, 31%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
  }

  #blog .view-all-btn:hover {
    background: hsl(263, 43%, 56%);
    transform: translateY(-2px);
    color: #ffffff;
  }

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

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

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

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

    #blog .blog-content {
      padding: 1.5rem;
    }

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

    #blog .blog-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }

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

  .credentials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(263, 43%, 31%, 0.2), transparent);
  }

  .credentials-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(263, 43%, 16%);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }

  .credentials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: hsl(263, 43%, 56%);
    border-radius: 2px;
  }

  .credential-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: hsl(263, 43%, 56%);
  }

  .credential-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 0.75rem;
    display: inline-block;
  }

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

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

    .credentials-title {
      font-size: 1.75rem;
      margin-bottom: 2.5rem;
    }

    .credential-card {
      margin-bottom: 1rem;
    }
  }

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

    .credentials-title {
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }

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

    .credential-text {
      font-size: 0.9rem;
    }
  }

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

  .testimonials-section h2 {
    font-family: 'Poppins', sans-serif;
    color: hsl(263, 43%, 31%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

  .testimonials-section .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;
    border-left: 4px solid hsl(263, 43%, 56%);
  }

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

  .testimonial-card.style-2 {
    border-left: none;
    border-top: 4px solid hsl(263, 43%, 56%);
  }

  .testimonial-card.style-3 {
    border-left: none;
    background: linear-gradient(135deg, hsl(263, 43%, 31%) 0%, hsl(263, 43%, 16%) 100%);
    color: #ffffff;
  }

  .testimonial-card.style-3 .testimonial-text {
    color: #f8f9fa;
  }

  .testimonial-card.style-3 .customer-name {
    color: #ffffff;
  }

  .testimonial-card.style-3 .customer-location {
    color: rgba(255,255,255,0.8);
  }

  .rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
  }

  .rating-stars.rating-4 .star:last-child {
    color: #ddd;
  }

  .rating-stars.rating-3 .star:nth-child(4),
  .rating-stars.rating-3 .star:nth-child(5) {
    color: #ddd;
  }

  .testimonial-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
  }

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

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

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

  .customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(263, 43%, 56%) 0%, hsl(263, 43%, 31%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
  }

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

  .customer-name {
    color: hsl(263, 43%, 31%);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 3px;
    font-family: 'Poppins', sans-serif;
  }

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

  .testimonial-highlight {
    background: hsl(263, 43%, 96%);
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
    border-left: 3px solid hsl(263, 43%, 56%);
  }

  .testimonial-highlight p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
    font-style: normal;
  }

  .testimonial-badge {
    display: inline-block;
    background: hsl(263, 43%, 56%);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

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

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

    .testimonial-card {
      padding: 25px;
    }
  }

.offer-section {
    background: linear-gradient(135deg, hsl(263, 43%, 31%) 0%, hsl(263, 43%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

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

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

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

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

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

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

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

  .deadline-block {
    background: linear-gradient(135deg, hsl(263, 43%, 56%) 0%, hsl(263, 43%, 31%) 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
  }

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

  .deadline-date {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    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: 'Nunito', sans-serif;
    font-size: 17px;
    color: #333333;
    padding: 18px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 15px;
  }

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

  .benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, hsl(263, 43%, 56%) 0%, hsl(263, 43%, 31%) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
  }

  .offer-cta {
    text-align: center;
  }

  .offer-btn {
    display: inline-block;
    background: linear-gradient(135deg, hsl(263, 43%, 56%) 0%, hsl(263, 43%, 31%) 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #ffffff;
  }

  .discount-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    background: hsl(263, 43%, 56%);
    color: #ffffff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(15deg);
  }

  .discount-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
  }

  .discount-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }

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

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

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

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

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

    .discount-badge {
      width: 80px;
      height: 80px;
      right: 15px;
    }

    .discount-number {
      font-size: 26px;
    }

    .discount-text {
      font-size: 12px;
    }

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

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

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@400;600;700&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');

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

  .services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(263, 43%, 31%), hsl(263, 43%, 56%));
  }

  .services-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: hsl(263, 43%, 16%);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .services-section .subtitle {
    font-family: 'Nunito', sans-serif;
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  .services-tabs {
    margin-bottom: 3rem;
  }

  .nav-tabs {
    border: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .nav-tabs .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #666;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 12px 28px;
    background: #ffffff;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin: 0;
  }

  .nav-tabs .nav-link:hover {
    color: hsl(263, 43%, 31%);
    border-color: hsl(263, 43%, 56%);
    background: #f8f9fa;
    transform: translateY(-2px);
  }

  .nav-tabs .nav-link.active {
    color: #ffffff;
    background: hsl(263, 43%, 31%);
    border-color: hsl(263, 43%, 31%);
    box-shadow: 0 4px 15px rgba(107, 70, 135, 0.3);
  }

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

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(263, 43%, 56%), hsl(263, 43%, 31%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(107, 70, 135, 0.2);
    border-color: hsl(263, 43%, 56%);
  }

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

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

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

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

  .service-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(263, 43%, 16%);
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

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

  .service-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: hsl(263, 43%, 31%);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .service-terms {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
  }

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

  .service-features li {
    color: #555;
    font-size: 0.95rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
  }

  .service-features li::before {
    content: '\f26a';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(263, 43%, 56%);
    font-weight: bold;
  }

  .tab-content {
    min-height: 400px;
  }

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

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

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

    .nav-tabs .nav-link {
      padding: 10px 20px;
      font-size: 0.9rem;
    }

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

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

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

.disclaimer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(263, 43%, 56%) 0%, hsl(263, 43%, 46%) 100%);
  border-radius: 50%;
  margin-bottom: 25px;
  color: #ffffff;
  font-size: 32px;
}

.disclaimer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: hsl(263, 43%, 31%);
  margin-bottom: 30px;
  text-align: center;
}

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

.disclaimer-text strong {
  color: hsl(263, 43%, 31%);
  font-weight: 600;
}

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

  .disclaimer-container {
    padding: 40px 25px;
    margin: 0 15px;
  }

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

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

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

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

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

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

  :root {
    --primary-color: hsl(263, 43%, 31%);
    --secondary-color: hsl(263, 43%, 16%);
    --accent-color: hsl(263, 43%, 56%);
  }

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

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

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

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

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

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

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

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

  .effective-date {
    background-color: hsl(263, 43%, 95%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
  }

  .contact-box {
    background-color: hsl(263, 43%, 96%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 2px solid var(--accent-color);
  }

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

  .highlight-box {
    background-color: hsl(263, 43%, 98%);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
  }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(263, 43%, 31%);
    --secondary-color: hsl(263, 43%, 16%);
    --accent-color: hsl(263, 43%, 56%);
  }
  
  .policy-content {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Poppins', 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(--accent-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    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.75rem;
    font-size: 1.05rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .intro-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .intro-box p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }
  
  .contact-box h3 {
    margin-top: 0;
  }
  
  .section-card {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--accent-color);
  }