/* wwwroot/css/TemplateSections/About.css */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    background: #f8f9fb;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    gap: 2rem;
}

.about-image-wrapper {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1 1 50%;
}

.about-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.about-body {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.75;
}