/* About Us Page Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero-banner {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.banner-content {
    text-align: center;
}

.title-wrapper {
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background-color: #007bff;
    margin: 0 auto;
}

.about-image-container {
    margin-bottom: 30px;
}

.about-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .content-card {
        padding: 20px;
    }
}
