/* wwwroot/css/TemplateSections/About.css */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--section-bg-1);
    font-family: var(--font-sans);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: var(--template-content-width);
    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 var(--primary-shadow);
}

.about-text {
    flex: 1 1 50%;
}

.about-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-body {
    font-size: 1.125rem;
    color: var(--primary-color);
    line-height: 1.75;
}