/* About Page - Consistent with site design */

/* Image container styling for about page */
.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* CEIN Logo specific styling */
.cein-logo {
    max-width: 350px !important;
    max-height: 250px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    padding: 1rem;
    background: transparent;
}

/* Disable hover effect for logo */
.image-container:hover .cein-logo {
    transform: none;
}

/* Additional spacing utilities for about page */
.mt-60 {
    margin-top: 4rem;
}

/* Ensure consistent styling with other pages */
#about .section-title {
    margin-bottom: 1.5rem;
}

#about .fs-h4 {
    line-height: 1.6;
    margin-bottom: 1rem;
}

#about ul li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

#about ul li i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .mt-60 {
        margin-top: 2rem;
    }

    #about .col-lg-6.order-lg-1,
    #about .col-lg-6.order-lg-2 {
        margin-bottom: 2rem;
    }
    
    .cein-logo {
        max-width: 280px !important;
        max-height: 180px !important;
    }
}

@media (max-width: 576px) {
    .cein-logo {
        max-width: 250px !important;
        max-height: 150px !important;
        padding: 0.5rem;
    }
}

/* Simple footer fix without breaking mobile layout */
footer {
    margin-bottom: 0;
}