.about_section {
    /* Add specific section styles if needed */
}

.about-content {
    max-width: 900px; /* Adjust max-width as needed */
    margin: 20px auto;
    padding: 20px;
    line-height: 1.7;
    text-align: left; /* Default text alignment */
}

.about-banner-image {
    width: 100%;
    max-height: 350px; /* Limit banner height */
    object-fit: cover; /* Ensure image covers the area */
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-content h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.about-content h3 {
    font-size: 1.4em;
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
}

.about-content ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
    margin-bottom: 20px;
}

.about-content ul li {
    background-size: 20px 20px;
    padding-left: 35px; /* Space for the icon */
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.about-content ul li strong {
    color: #333;
}

/* Responsive adjustments if needed */
@media (max-width: 768px) {
    .about-content {
        padding: 15px;
    }
    .about-banner-image {
        max-height: 250px;
    }
    .about-content h2 {
        font-size: 1.6em;
    }
    .about-content h3 {
        font-size: 1.3em;
    }
    .about-content ul li{
        padding-left: 0;
    }
} 