
.about-top-section {
    background: url('letters/ui/top_2.jpg') no-repeat top center / contain;
    color: white;
    padding: 20px;
    margin: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* About page image styles */
.about-images-container {
    position: relative;
    left: auto;
    transform: none;
    top: auto;
    z-index: 2;
    margin-top: 20vh;
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.about-image-wrapper {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive design */
@media (max-width: 768px) {
    .about-images-container {
        padding: 0px 0px;
        gap: 5px;
        margin-top: -5vh;
    }
    
    .about-image-wrapper {
        max-width: 100%;
    }
}