body
{
    background-image: url('../img/background.jpg'); /* Path to your background image */
    background-size: cover; /* Ensure the image covers the full screen */
    background-repeat: no-repeat; /* Prevent tiling */
    background-position: center center; /* Center the image */
    background-attachment: fixed; /* Keep the background fixed on scroll */
}
.support-header h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2.7rem;
    color: #000000; /* Deep blue for strong impact */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem; /* Space for the line */
    text-align: center;
    margin-top: 67px;
    position: relative;
}
.support-header h1::after {
    content: '';
    display: block;
    width: 220px;
    height: 6px;
    background: linear-gradient(90deg, #940bfc, #02fddc);
    margin: 0 auto;
    border-radius: 2px;
    margin-top: 0.5rem;
}

.support-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    color: #333;
    background-image: url('../img/background.jpg'); /* Path to your background image */
    background-size: cover; /* Ensure the image covers the full screen */
    background-repeat: no-repeat; /* Prevent tiling */
    background-position: center center; /* Center the image */
    background-attachment: fixed; /* Keep the background fixed on scroll */
}

.support-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    padding: 30px;
    background: white;
    border-radius: 12px;
}

.support-section:hover {
    transform: translateY(-5px);
}

.section-header {
    grid-column: 1 / -1;
    border-bottom: 2px solid #0066ff;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.section-header h2 {
    
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #1b02a8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section-header p {
    
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #000000; /* Rich Purple */    
    margin: 0;
    
}

.subsection {
    padding: 20px;
    background: linear-gradient(135deg,#e8f7f7,#fdedfd);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.subsection h3 {
   
    margin: 0 0 12px 0;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #004D99; /* Cool Deep Blue */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}


.points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.points-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
   font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #000000; /* Rich Purple */
}


.points-list li::before {
    content: "✅";
    color: #0066ff; /* You can change the color if needed */
    font-weight: normal;
    display: inline-block;
    margin-right: 12px;
    font-size: 16px; /* Adjust size as needed */
    vertical-align: middle;
}

@media (max-width: 768px) {
    .support-container {
        padding: 10px;
    }


    .support-section {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
        padding: 20px;
    }

    .section-header {
        text-align: center;
        border-bottom: 2px solid #0066ff;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-header p {
        font-size: 16px;
        line-height: 1.5;
    }

    .subsection {
        padding: 15px;
    }

    .subsection h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .subsection p {
        font-size: 14px;
        line-height: 1.5;
    }

    .points-list li {
        font-size: 14px;
        padding: 6px 0;
    }

    .points-list li::before {
        font-size: 14px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
   

    .support-section {
        padding: 15px;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .section-header p {
        font-size: 14px;
    }

    .subsection {
        padding: 12px;
    }

    .subsection h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .subsection p {
        font-size: 13px;
    }

    .points-list li {
        font-size: 13px;
    }

    .points-list li::before {
        font-size: 12px;
        margin-right: 8px;
    }

    .support-header h1 {
        font-size: 2rem;
        margin-top: 40px;
      }
      .support-header h1::after {
        width: 160px;
        height: 4px;
        margin-bottom: 80px;
       }

}
