/* Specific styles for the About page content */
.about-content {
    padding: var(--space-sm);
    line-height: 1.6;
    color: var(--text-main);
}

/* The hero section at the top */
.about-hero {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(to bottom, #fffef0, #ffffff);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.about-hero h1 {
    font-size: 26px;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

/* Stylized section headers */
.section-title {
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px;
    display: block;
    color: var(--brand-dark);
    border-left: 4px solid var(--brand-yellow);
    padding-left: 10px;
}

/* Small info boxes */
.about-card {
    background: var(--bg-soft);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    border: 1px solid #eee;
}

/* Back button styling */
.back-btn {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding-right: 8px;
}