/* ===== Container ===== */
.container {
    width: 95%;
    max-width: 1200px;
    background: white;
    margin: 15px auto;
    padding: 20px;
    border-radius: 10px;
}

/* ===== Headings ===== */
h1 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

/* ===== Paragraph ===== */
.container p {
    color: #333;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: justify;
}

/* ===== Image Row ===== */
.image-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 25px 0;
}

.image-row img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
}

/* ===== Map Section ===== */
.map-section img {
    width: 100%;
    margin: 20px 0;
    border-radius: 6px;
}

/* ===== Table ===== */
.award-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block;
}

.award-table th,
.award-table td {
    padding: 10px;
    text-align: center;
    font-size: 13px;
    border: 1px solid black;
}

.award-table th {
    background-color: #e0e0e0;
}

/* ===== Footer Note ===== */
.footer-note {
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

/* ========================================= */
/* 📱 MOBILE RESPONSIVE DESIGN */
/* ========================================= */

/* Tablets */
@media (max-width: 992px) {
    .image-row {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .container {
        padding: 15px;
    }

    .image-row {
        grid-template-columns: 1fr;
    }

    .image-row img {
        height: 180px;
    }

    h1 {
        font-size: 16px;
    }

    .container p {
        font-size: 13px;
    }

    /* Make table scrollable */
    .award-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}