.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem 1rem;
}
.about-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}
.about-title {
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--primary-color, #2563eb);
    margin-bottom: 0.7rem;
}
.about-subtitle {
    font-size: 1.2rem;
    color: #5faee3;
    margin-bottom: 0;
}
.about-content {
    display: flex;
    gap: 2.5rem;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    padding: 2.5rem 2rem;
    align-items: center;
    flex-wrap: wrap;
}
.about-image {
    flex: 1 1 320px;
    min-width: 220px;
    text-align: center;
}
.about-image img {
    max-width: 320px;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
}
.about-text {
    flex: 2 1 400px;
    min-width: 220px;
}
.about-text h2 {
    font-size: 1.3rem;
    color: var(--primary-color, #2563eb);
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.about-text p {
    color: #4b5563;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
}
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        padding: 1.5rem 0.7rem;
        gap: 1.5rem;
    }
    .about-image img {
        max-width: 220px;
    }
}
