.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.about-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 51, 102, 0.6), 
        rgba(218, 165, 32, 0.4)
    );
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.about-image-container:hover .about-image-overlay {
    opacity: 0.5;
}

.about-image {
    transition: transform 0.5s ease;
    filter: grayscale(10%) contrast(110%);
}

.about-image-container:hover .about-image {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .about-image-container {
        margin-bottom: 30px;
    }
}

.mission-title {
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--gold);
}