/* Common Container */
.container {
    max-width: 1140px;
    /* Bootstrap container width */
    margin: 0 auto;
    padding: 20px 15px;
}

/* AboutUs Section */
.aboutus .header {
    background-color: #003399;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.aboutus .header h1 {
    font-size: 36px;
    font-weight: bold;
    width: 100%;
}

.aboutus .content {
    text-align: left;
}

.aboutus .content h5 {
    font-size: 14px;
    color: #007BFF;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aboutus .content h2 {
    font-size: 36px;
    color: #003399;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.aboutus .content p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.aboutus .image-container {
    background-color: #f0f0f0;
    /* Light gray background as fallback */
    border-radius: 8px;
    height: 350px;
    /* Fixed height for uniformity */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.aboutus .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.aboutus {
    padding: 0px 0;
    /* Vertical spacing */
}

.aboutus-content {
/*    display: grid;*/
    grid-template-columns: 1fr 1fr;
    /* Two-column layout */
    gap: 40px;
    /* Spacing between columns */
    align-items: center;
    margin-top: 60px;
    margin-bottom: 60px;
}