body{
    width: 100%;
    margin:auto;
}

.about-wrapper {
    display: flex;
    justify-content: center;
    align-items:center;
    gap: 40px;
    padding: 40px;
    width: 100%;
    margin:auto;
}

.about-left {
    width: 90%;
    margin:auto;
}

.about-left h1 {
    color: #045cc3;
    margin-bottom: 25px;
    font-weight:700;
}

.about-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* SUPPORT BOX */

.about-right {
    width: 30%;
    background: #f7f7f7;
    padding: 25px;
    border-radius: 8px;
}

.about-right h2 {
    margin-bottom: 15px;
}

.about-right p {
    font-size: 16px;
    line-height: 1.5;
}

.thanks {
    margin-top: 10px;
    font-weight: bold;
    color: #0373ff;
}

.donate-btn {
    background: gold;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 10px;
}

/* BANNER IMAGE SECTION BELOW BOTH COLUMNS */
.about-left .banner-section {
    margin-left:20px;
    
}

.about-left .banner-section img {
    width: 75vw;
    
    border-radius: 10px;
}

.sidebar-column1 {
    position: sticky;
    top: 20px; 
    display: flex;
    width:90%;
    flex-direction: column;
    gap: 25px;
    }
    
    
    
    
    
    
    h2, h3, h4 {
    color: #0b0c0c;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1d70b8;
    }
    
    h2 {
    font-size: 24px;
    }
    
    h3 {
    font-size: 20px;
    border-bottom-width: 1px;
    }
    
    h4 {
    font-size: 18px;
    border-bottom: 1px dashed #1d70b8;
    }
    
    /* Facts Card */
    .facts-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 25px;
    }
    
    .facts-card h4 {
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
    }
    
    .fact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    }
    
    .fact-item:last-child {
    border-bottom: none;
    }
    
    .fact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    }
    
    .fact-content {
    flex-grow: 1;
    }
    
    .fact-content strong {
    display: block;
    color: #2d3748;
    font-size: 0.9rem;
    }
    
    .fact-content span {
    color: #4a5568;
    font-size: 0.9rem;
    }
    
    .facts-card {
    border-top: 4px solid #9f7aea;
    }
    .support-card {
    border-top: 4px solid #667eea;
    }
    
    .test-card {
    border-top: 4px solid #48bb78;
    text-align: center;
    }
    
    .navigation-card {
    border-top: 4px solid #e53e3e;
    }
    
    .download-card {
    border-top: 4px solid #ed8936;
    }

    


/* RESPONSIVE */
@media (max-width: 900px) {

    .about-wrapper {
        flex-direction: column;
    }
    .sidebar-column1{
        width:100%;
    }
     .banner-section img {
        width: 100vw;
    }    

    .about-left,
    .about-right {
        width: 100%;
    }
}
