/* Awards Page Styles */

#awards-page {
    background-color: #F6F6F6;
    padding-top: 20px;
}

.awards-section-title {
    color: #0D163F;
    font-weight: 200;
    font-size: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    margin-bottom: 0;
}

.award-item {
    align-items: center;
}

.award-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.award-image {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

.award-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.award-header {
    color: #0D163F;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
}

.award-sub-header {
    color: #2B2523;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.5;
}

.award-content {
    color: #2B2523;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 767px) {
    #awards-page {
        padding-top: 10px;
    }

    .awards-section-title {
        font-size: 28px;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

    .award-image-col {
        margin-bottom: 15px;
    }

    .award-image {
        max-height: 120px;
    }

    .award-header {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .award-sub-header {
        font-size: 16px;
    }

    .award-content {
        font-size: 14px;
    }
}

