/* --- PROFESSIONAL HERO SECTION --- */
.fm-about-hero-professional {
    position: relative;
    padding: 180px 20px 140px;
    background: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    background-attachment: fixed;
    text-align: center;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-height: 60vh;
}

.fm-about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%);
    z-index: 1;
}

.fm-about-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.fm-about-hero-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.fm-about-hero-container p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 15px 0;
    font-weight: 300;
}

.fm-about-hero-sub-text {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 40px !important;
    display: block;
}

.fm-about-hero-btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #b350dc;; 
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.fm-about-hero-btn-primary:hover {
    background-color: #a346cb;;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* --- MAIN CONTENT CONTAINER --- */
.fm-about-page-main-container {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
}

.fm-about-page-content-wrapper {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px; 
}

.fm-about-page-main-container .fm-about-page-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #6366f1;
    display: block;
    margin-bottom: 20px;
}

.fm-about-page-main-container .fm-about-page-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 30px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.fm-about-page-main-container .fm-about-page-desc {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.fm-about-page-main-container .fm-about-page-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.fm-about-page-main-container .fm-about-page-grid-box {
    border-left: 3px solid #f1f5f9;
    padding-left: 35px;
    transition: border-color 0.3s;
}

.fm-about-page-main-container .fm-about-page-grid-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.fm-about-page-main-container .fm-about-page-grid-box p {
    font-size: 1.1rem;
    color: #64748b;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .fm-about-page-main-container .fm-about-page-grid-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .fm-about-hero-professional {
        padding: 150px 20px 100px;
    }
    .fm-about-hero-container h1 {
        font-size: 2.2rem;
    }
    .fm-about-page-main-container .fm-about-page-title {
        font-size: 2rem;
    }
}