        :root {
            --primary: #8b1235;
            --primary-dark: #770f28;
            --primary-light: rgba(139, 18, 53, 0.08);
            --primary-mid: rgba(139, 18, 53, 0.16);
            --accent: #117bb7;
            --accent-green: #01a163;
            --accent-yellow: #ee9b12;
            --secondary: #385398;
            --text-dark: #122033;
            --text-muted: #667085;
            --bg-body: #FFFFFF;
            --bg-light: #F5F7FB;
            --shadow-sm: 0 2px 12px rgba(139, 18, 53, 0.08);
            --shadow-md: 0 8px 28px rgba(139, 18, 53, 0.14);
            --shadow-lg: 0 20px 50px rgba(139, 18, 53, 0.18);
            --radius: 12px;
            --radius-lg: 20px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html, body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: #fff;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--secondary);
        }

        a {
            text-decoration: none;
            transition: all .3s ease;
        }


        /* ── SECTION TITLE ── */
        .section-title {
            margin-bottom: 3rem;
            text-align: center;
        }

        .section-title h2 {
            font-size: 2.4rem;
            margin-bottom: .8rem;
        }

        .section-title p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .title-underline {
            width: 52px;
            height: 4px;
            background: var(--primary);
            margin: 0 auto;
            border-radius: 2px;
        }

        /* ── FDP HERO ── */
        .fdp-hero {
            padding: 115px 0 50px;
            background: #fff;
            background-image: radial-gradient(ellipse at 5% 15%, rgba(139, 18, 53, .07) 0, transparent 55%), radial-gradient(ellipse at 95% 5%, rgba(139, 18, 53, .05) 0, transparent 50%);
            position: relative;
            overflow: hidden;
        }

        .fdp-hero::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, var(--primary-mid) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }

        .fdp-hero-content {
            position: relative;
            z-index: 1;
        }

        .fdp-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-light);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: .82rem;
            letter-spacing: .6px;
            text-transform: uppercase;
            margin-bottom: 20px;
            border: 1.5px solid var(--primary-mid);
        }

        .fdp-hero h1 {
            font-size: 2.9rem;
            line-height: 1.22;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .fdp-hero h1 span {
            color: var(--primary);
        }

        .fdp-hero-sub {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 28px;
        }

        /* Details bar */
        .details-bar {
            background: var(--secondary);
            border-radius: var(--radius-lg);
            padding: 22px 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, .85);
            font-size: .9rem;
            font-weight: 600;
        }

        .detail-item i {
            color: var(--accent-yellow);
            font-size: 1.1rem;
        }

        /* Lead form */
        .fdp-hero .lead-form-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(139, 18, 53, .08);
            position: sticky;
            top: 100px;
            z-index: 10;
        }

        .fdp-hero .lead-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary);
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }

        .fdp-hero .lead-form-card h4 {
            font-size: 1.25rem;
            margin-bottom: 4px;
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            color: var(--secondary);
        }

        .fdp-hero .lead-form-card .sub {
            color: var(--text-muted);
            font-size: .88rem;
            margin-bottom: 20px;
        }

        .form-control,
        .form-select {
            padding: 12px 14px;
            border-radius: 9px;
            border: 1.5px solid #dde0f5;
            background: #fff;
            font-size: .92rem;
            font-family: 'Inter', sans-serif;
        }

        .form-control:focus,
        .form-select:focus {
            box-shadow: 0 0 0 3px rgba(139, 18, 53, .12);
            border-color: var(--primary);
        }

        .reg-info {
            background: var(--bg-light);
            border-radius: 10px;
            padding: 14px 18px;
            margin-top: 16px;
        }

        .reg-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .85rem;
            color: var(--text-dark);
            font-weight: 500;
            margin-bottom: 8px;
        }

        .reg-info-item:last-child {
            margin-bottom: 0;
        }

        .reg-info-item i {
            color: var(--primary);
            width: 16px;
        }

        /* ── ABOUT FDP ── */
        .about-fdp {
            padding: 96px 0;
            background: var(--bg-light);
        }

        .about-fdp p {
            color: var(--text-muted);
            line-height: 1.85;
            font-size: .98rem;
            margin-bottom: 16px;
        }

        /* Highlights */
        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid #eaecf8;
        }

        .highlight-item:last-child {
            border-bottom: none;
        }

        .highlight-icon {
            width: 38px;
            height: 38px;
            border-radius: 9px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .highlight-item span {
            font-size: .95rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* ── OBJECTIVES ── */
        .objectives-section {
            padding: 96px 0;
            background: #fff;
        }

        .obj-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 16px;
        }

        .obj-num {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: .9rem;
            flex-shrink: 0;
        }

        .obj-item p {
            margin: 0;
            font-size: .97rem;
            color: var(--text-dark);
            line-height: 1.6;
            padding-top: 6px;
        }

        /* ── DAY SCHEDULE ── */
        .schedule-section {
            padding: 96px 0;
            background: var(--bg-light);
        }

        .day-card {
            background: #fff;
            border-radius: var(--radius);
            border: 1.5px solid #eaecf8;
            padding: 24px 26px;
            box-shadow: var(--shadow-sm);
            margin-bottom: 16px;
            transition: all .3s ease;
        }

        .day-card:hover {
            border-color: var(--primary-mid);
            box-shadow: var(--shadow-md);
            transform: translateX(4px);
        }

        .day-card:last-child {
            margin-bottom: 0;
        }

        .day-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
        }

        .day-badge {
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            font-size: .8rem;
            padding: 4px 14px;
            border-radius: 50px;
            white-space: nowrap;
        }

        .day-header h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: var(--secondary);
            margin: 0;
        }

        .day-topics {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .day-topics li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: .9rem;
            color: var(--text-muted);
            margin-bottom: 7px;
        }

        .day-topics li:last-child {
            margin-bottom: 0;
        }

        .day-topics li i {
            color: var(--primary);
            font-size: .7rem;
            margin-top: 5px;
            flex-shrink: 0;
        }

        /* ── LEARNING OUTCOMES ── */
        .outcomes-section {
            padding: 96px 0;
            background: #fff;
        }

        .outcome-card {
            background: #fff;
            border: 1.5px solid #eaecf8;
            border-radius: var(--radius);
            padding: 24px 22px;
            box-shadow: var(--shadow-sm);
            height: 100%;
            transition: all .3s ease;
        }

        .outcome-card:hover {
            border-color: var(--primary-mid);
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .outcome-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 14px;
        }

        .outcome-card p {
            font-size: .93rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin: 0;
        }

        /* ── ELIGIBILITY ── */
        .eligibility-section {
            padding: 96px 0;
            background: var(--bg-light);
        }

        .elig-item {
            display: flex;
            align-items: center;
            gap: 14px;
            background: #fff;
            border: 1.5px solid #eaecf8;
            border-radius: var(--radius);
            padding: 18px 22px;
            box-shadow: var(--shadow-sm);
            margin-bottom: 12px;
            transition: all .3s ease;
        }

        .elig-item:hover {
            border-color: var(--primary-mid);
            transform: translateX(4px);
        }

        .elig-item:last-child {
            margin-bottom: 0;
        }

        .elig-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .elig-item span {
            font-weight: 600;
            font-size: .97rem;
            color: var(--text-dark);
        }

        /* ── SPEAKER ── */
        .speaker-section {
            padding: 96px 0;
            background: #fff;
        }

        .speaker-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 44px;
            box-shadow: var(--shadow-md);
            border: 1.5px solid #eaecf8;
        }

        .speaker-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 2rem;
            flex-shrink: 0;
        }

        .speaker-info h4 {
            font-size: 1.4rem;
            margin-bottom: 4px;
        }

        .speaker-role {
            color: var(--text-muted);
            font-size: .92rem;
            line-height: 1.6;
        }

        .speaker-expertise {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }

        .expertise-tag {
            background: var(--primary-light);
            color: var(--primary);
            border: 1px solid var(--primary-mid);
            border-radius: 50px;
            padding: 4px 14px;
            font-size: .8rem;
            font-weight: 600;
        }

        /* ── WHY PARTICIPATE ── */
        .why-section {
            padding: 96px 0;
            background: var(--bg-light);
        }

        .why-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 20px;
        }

        .why-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .why-item h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: .98rem;
            margin-bottom: 4px;
        }

        .why-item p {
            font-size: .88rem;
            color: var(--text-muted);
            margin: 0;
        }

        /* ── REGISTER SECTION ── */
        .register-section {
            padding: 96px 0;
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .register-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .06);
            pointer-events: none;
        }

        .register-section::after {
            content: '';
            position: absolute;
            bottom: -70px;
            left: -40px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .05);
            pointer-events: none;
        }

        .register-section h2 {
            color: #fff;
        }

        .register-section p {
            color: rgba(255, 255, 255, .82);
        }

        .reg-detail-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, .85);
            font-size: .95rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .reg-detail-item i {
            color: var(--accent-yellow);
            font-size: 1.1rem;
            width: 20px;
        }

        .btn-white {
            background: #fff;
            color: var(--primary);
            border: none;
            padding: 13px 30px;
            border-radius: 9px;
            font-weight: 700;
            font-size: .95rem;
            transition: all .3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-white:hover {
            background: var(--bg-light);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-outline-white {
            border: 2px solid rgba(255, 255, 255, .6);
            color: #fff;
            padding: 11px 28px;
            border-radius: 9px;
            font-weight: 700;
            background: transparent;
            font-size: .95rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, .15);
            color: #fff;
            border-color: #fff;
        }

        /* ── RESPONSIVE STYLES ── */
        @media (max-width: 991px) {
            .fdp-hero {
                padding: 88px 0 60px;
                text-align: center;
                margin-top: 60px;
            }

            .fdp-hero h1 {
                font-size: 2.2rem;
            }

            .fdp-hero-badge {
                font-size: .72rem;
                padding: 5px 12px;
                border-radius: 30px;
                line-height: 1.4;
                text-align: center;
                display: inline-flex;
                justify-content: center;
            }

            .details-bar {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
                padding: 20px 24px;
                text-align: left;
            }

            .fdp-hero .lead-form-card {
                position: relative;
                top: auto;
                margin-top: 36px;
                margin-bottom: 30px;
                text-align: left;
            }

            .fdp-hero .lead-form-card h4,
            .fdp-hero .lead-form-card .sub {
                text-align: center;
            }

            .about-fdp,
            .objectives-section,
            .schedule-section,
            .outcomes-section,
            .eligibility-section,
            .speaker-section,
            .why-section,
            .register-section {
                padding: 70px 0;
            }

            .speaker-card {
                padding: 28px 24px;
            }
        }

        @media (max-width: 767px) {
            .fdp-hero {
                margin-top: 58px;
                padding: 88px 0 40px;
            }

            .fdp-hero h1 {
                font-size: 1.7rem;
                line-height: 1.3;
            }

            .fdp-hero-sub {
                font-size: .95rem;
                line-height: 1.7;
            }

            .details-bar {
                grid-template-columns: 1fr;
                gap: 10px;
                padding: 16px 20px;
            }

            .fdp-hero .lead-form-card {
                padding: 26px 18px;
                margin-top: 28px;
                margin-bottom: 24px;
            }

            .fdp-hero .lead-form-card h4 {
                font-size: 1.15rem;
            }

            .about-fdp,
            .objectives-section,
            .schedule-section,
            .outcomes-section,
            .eligibility-section,
            .speaker-section,
            .why-section,
            .register-section {
                padding: 52px 0;
            }

            .speaker-card {
                padding: 24px 16px;
            }

            .speaker-card>.d-flex {
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
            }

            .speaker-avatar {
                margin-bottom: 16px;
            }

            .speaker-expertise {
                justify-content: center;
            }

            .elig-item {
                padding: 14px 16px;
            }
        }

        @media (max-width: 480px) {
            .fdp-hero h1 {
                font-size: 1.45rem;
            }

            .fdp-hero-badge {
                font-size: .68rem;
                padding: 4px 10px;
            }

            .fdp-hero .lead-form-card {
                padding: 20px 14px;
                margin-bottom: 20px;
            }

            .speaker-card {
                padding: 20px 12px;
            }
        }