.about-page {
    min-height: 80vh;
}

.max-width-md {
    max-width: 800px;
}

/* Enhanced Top Hero Image Styling */
.about-hero-image-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px -6px rgba(79, 70, 229, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-hero-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -6px rgba(79, 70, 229, 0.25);
    border-color: #4f46e5;
}

.about-hero-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Typography */
.about-title {
    font-family: 'Annie Use Your Telescope', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #0f172a;
}

.section-heading {
    font-family: 'Annie Use Your Telescope', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.about-text {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Main Container Card */
.about-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}

.divider {
    border: 0;
    border-top: 1px solid #e5e7eb;
    opacity: 0.7;
}

/* Experience Metric Cards */
.metric-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
}

.metric-icon {
    font-size: 1.75rem;
    color: #4f46e5;
    margin-bottom: 8px;
    display: inline-block;
}

.metric-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.metric-desc {
    font-size: 0.92rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Back Button Component */
.btn-back {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background: #f9fafb;
    border-color: #cbd5e1;
    color: #111827;
    transform: translateX(-2px);
}