
/* --- Styling for the new About Page --- */


.about-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
    border-radius: 8px;
}

.about-container h1 {
    font-size: 1.8em;
    color: #333;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}

.content-wrapper {
    padding: 0 20px;
}

.about-section {
    margin-bottom: 30px;
}

.about-section h2 {
    font-size: 1.4em;
    font-weight: 700;
    color: #007BFF; 
    border-left: 4px solid #007BFF;
    padding-left: 10px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 1em;
    line-height: 1.7;
    color: #555;
    text-align: justify;
    margin-bottom: 15px;
}

.about-section strong {
    color: #333; 
}

hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 40px 0;
}


/* --- CSS for Image Container (about.css) --- */

.image-container {
    width: 90%; 
    max-width: 900px; 
    margin: 30px auto; 
    border: 1px solid #011f4b; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden; 
}


.bce-image {
    width: 100%; 
    height: auto; 
    display: block;
}

/* Styling for the caption */
.image-caption {
    background-color: #011f4b;
    color: #ffffff; 
    padding: 10px 15px;
    text-align: center;
    font-size: 1.1em;
    font-weight: 500;
    margin: 0; 
}

/* Optional: Adjust main content wrapper if needed */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .image-container {
        width: 95%; 
        border-width: 3px;
    }
    .image-caption {
        font-size: 1em;
        padding: 8px 10px;
    }
}


nav ul li a.active {
    color: #007BFF;
    border-bottom: 2px solid #007BFF;
}

/* Add media query for smaller screens */
@media (max-width: 768px) {
    .about-container {
        margin: 20px;
        padding: 15px;
    }
    .content-wrapper {
        padding: 0;
    }
    .about-section h2 {
        font-size: 1.2em;
    }
}