@media only screen and (max-width: 768px) {
    .final-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        width: 100%;
        box-sizing: border-box; /* This ensures padding and margin are included in the width */
        margin: 10px auto; /* This will auto center the section if needed */
    }

    .final-section-title {
        font-size: 2rem;
        color: black;
        text-align: center;
        margin-bottom: 10px; /* Adjust as needed */
    }

    .image-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        padding: 0;
    }

    .image-card {
        flex-direction: column;
        align-items: center;
        width: calc(100% - 20px); /* Subtract the total horizontal margins */
        font-size: 1.5rem;
        margin: 10px auto; /* Center the card with auto margins */
        text-align: center; /* Center text for mobile */
    }

    .image-card img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .image-card-description {
        text-align: center;
        font-size: 1.2rem;
        margin-top: 0px;
    }

    .image-card h2 {
        color: #7d6a82;
        font-size: 1.8rem;
        margin: 10px 0;
    }

    .image-card p {
        font-size: 1.3rem;
        font-weight: 500;
        margin: 20px;
        font-family: 'Myanmar Text', sans-serif;
    }
}
