    /* --- ABOUT SECTION STYLES --- */
    .about-section {
        position: relative;
        padding: 120px 5%;
        background: var(--bg-color);
        overflow: hidden;
        color: var(--text-main);
    }

    .about-container {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .about-block {
        margin-bottom: 100px;
        text-align: center;
    }

    .about-block:last-child {
        margin-bottom: 0;
    }

    .about-heading {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        margin-bottom: 40px;
        letter-spacing: -0.5px;
        position: relative;
        display: inline-block;
    }

    /* Subtle Underline for Headings */
    .about-heading::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: var(--gradient);
        border-radius: 2px;
    }

    /* --- GLASS CARDS (TEXT) --- */
    .about-glass-card {
        background: var(--glass-bg);
        border: 1px solid var(--card-border);
        padding: 50px;
        border-radius: 30px;
        backdrop-filter: blur(15px);
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.8;
        font-size: 1.1rem;
        color: var(--text-muted);
        position: relative;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .about-glass-card strong {
        color: var(--primary-orange);
    }

    .card-accent-line {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    }

    /* --- GOALS GRID --- */
    .goals-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 20px;
    }

    .goal-card {
        background: var(--glass-bg);
        border: 1px solid var(--card-border);
        padding: 40px 30px;
        border-radius: 24px;
        transition: border-color 0.4s ease, box-shadow 0.4s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .goal-card:hover {
        border-color: var(--primary-orange);
        box-shadow: 0 15px 30px rgba(255, 123, 0, 0.1);
    }

    .goal-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 123, 0, 0.05);
        border: 1px solid rgba(255, 123, 0, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--primary-orange);
    }

    .goal-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--text-main);
    }

    .goal-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--text-muted);
    }

    /* --- BACKGROUND DECORATION --- */
    .about-glow-1 {
        position: absolute;
        top: 10%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 123, 0, 0.05) 0%, transparent 70%);
        z-index: 1;
        pointer-events: none;
    }

    .about-glow-2 {
        position: absolute;
        bottom: 10%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 123, 0, 0.05) 0%, transparent 70%);
        z-index: 1;
        pointer-events: none;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 992px) {
        .goals-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 80px 5%;
        }
        .about-glass-card {
            padding: 30px 20px;
            font-size: 1rem;
        }
        .about-block {
            margin-bottom: 70px;
        }
    }


    /*** --- Founder section --- */
     /* --- FOUNDER SECTION STYLES --- */
    .founder-section {
        position: relative;
        padding: 120px 5%;
        background: var(--bg-color);
        overflow: hidden;
        color: var(--text-main);
    }

    .founder-container {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .founder-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .founder-section-title {
        font-size: clamp(2.2rem, 4vw, 3rem);
        font-weight: 800;
        letter-spacing: -1px;
    }

    /* --- PREMIUM GLASS CARD --- */
    .founder-glass-card {
        background: var(--glass-bg);
        border: 1px solid var(--card-border);
        border-radius: 40px;
        padding: 60px;
        backdrop-filter: blur(20px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        position: relative;
    }

    .founder-content-layout {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 60px;
        align-items: center;
    }

    /* --- IMAGE STYLING --- */
    .founder-image-col {
        display: flex;
        justify-content: center;
    }

    .founder-image-wrapper {
        position: relative;
        width: 300px;
        height: 300px;
    }

    .founder-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%; /* Circular Image */
        border: 2px solid var(--card-border);
        position: relative;
        z-index: 2;
    }

    .image-glow-ring {
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        background: var(--gradient);
        opacity: 0.15;
        filter: blur(15px);
        z-index: 1;
    }

    /* --- TEXT STYLING --- */
    .quote-icon {
        font-family: serif;
        font-size: 8rem;
        line-height: 1;
        color: var(--primary-orange);
        opacity: 0.2;
        position: absolute;
        top: 20px;
        left: 50px;
        pointer-events: none;
    }

    .founder-message p {
        font-size: 1.25rem;
        line-height: 1.8;
        color: var(--text-main);
        font-style: italic;
        margin-bottom: 30px;
        position: relative;
        z-index: 3;
    }

    .founder-message strong {
        color: var(--primary-orange);
        font-style: normal;
    }

    /* --- SIGNATURE AREA --- */
    .founder-signature-area {
        margin-top: 40px;
    }

    .signature-line {
        width: 60px;
        height: 3px;
        background: var(--gradient);
        margin-bottom: 20px;
        border-radius: 2px;
    }

    .founder-name {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .founder-title {
        color: var(--text-muted);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
    }

    /* --- BACKGROUND DECORATION --- */
    .founder-bg-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 1000px;
        height: 1000px;
        background: radial-gradient(circle, rgba(255, 123, 0, 0.03) 0%, transparent 70%);
        z-index: 1;
        pointer-events: none;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 992px) {
        .founder-content-layout {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 40px;
        }

        .founder-signature-area {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .quote-icon {
            left: 50%;
            transform: translateX(-50%);
            top: 10px;
        }

        .founder-glass-card {
            padding: 50px 30px;
        }
    }

    @media (max-width: 768px) {
        .founder-image-wrapper {
            width: 220px;
            height: 220px;
        }

        .founder-message p {
            font-size: 1.1rem;
        }
    }