.achievements-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.achievement-card {
    flex: 1 1 50%;
    box-sizing: border-box;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 412px; /* match height */
}

    .achievement-card h2 {
        font-family: 'Arial', sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: inherit;
        margin-bottom: 20px;
    }

    .achievement-card ul {
        list-style-type: disc;
        padding-left: 20px;
    }

        .achievement-card ul li {
            font-family: 'Arial', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            color: inherit;
            margin-bottom: 10px;
        }

/* Left card (Academic achievements) */
.academic {
    background-color: #ECF6FF;
    color: #062A4D;
}

/* Right card (Awards & Honors) */
.honors {
    background-color: #062A4D;
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 768px) {
    .achievements-section {
        flex-direction: column;
    }

    .achievement-card {
        flex: 1 1 100%;
    }
}
