/* ===== About Us Section ===== */
.about {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}
.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3.5rem;
}
.about-heading .accent {
    color: #2d6a7a;
    font-weight: 800;
    font-style: italic;
}
.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.about-left, .about-right {
    flex: 1;
}
.about-block {
    margin-bottom: 2rem;
}
.about-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    font-style: italic;
    color: #2d6a7a;
    margin-bottom: 0.6rem;
}
.about-block p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #5a6577;
}
.about-right h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #2d6a7a;
    margin-bottom: 1rem;
}
.about-right h3 strong {
    font-weight: 800;
    color: #1a2744;
}
.about-right p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #5a6577;
}

/* ===== Responsive: About ===== */
@media (min-width: 768px) {
    .about-content { flex-direction: row; gap: 4rem; }
    .about-heading { font-size: 2.5rem; }
}
@media (min-width: 1024px) {
    .about { padding: 5rem 3rem 6rem; }
}
