        /* ============================================
           MODERN HERO SECTION
           ============================================ */
        .hero-modern {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
            position: relative;
            overflow: hidden;
            padding-top: 100px;
        }
        @media (max-width: 991px) {
            .hero-modern {
                padding-top: 80px;
            }
        }
        .hero-modern::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(208,2,41,0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: white;
            margin-bottom: 1.5rem;
        }
        .hero-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: white;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.85);
            margin-bottom: 2rem;
            max-width: 50ch;
        }
        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }
        .hero-feature {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            font-size: 0.85rem;
            color: white;
        }
        .hero-feature i {
            color: var(--primary-color);
        }
        .hero-price-box {
            display: inline-flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.25rem 1.5rem;
            background: rgba(0,0,0,0.2);
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }
        .hero-price {
            font-size: 2rem;
            font-weight: 800;
            color: white;
        }
        .hero-price-label {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .hero-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .hero-cta-primary:hover {
            background: var(--primary-color-darker);
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .hero-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 1.5rem;
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .hero-cta-secondary:hover {
            border-color: white;
            color: white;
            text-decoration: none;
        }
        .hero-form-wrapper {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 25px 50px rgba(0,0,0,0.25);
        }
        .hero-form-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
            text-align: center;
        }
        .hero-form-subtitle {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .hero-trust-badges {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.15);
        }
        .hero-trust-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255,255,255,0.8);
            font-size: 0.85rem;
        }
        .hero-trust-badge i {
            font-size: 1.25rem;
            color: var(--primary-color);
        }
        @media (max-width: 991px) {
            .hero-form-wrapper {
                margin-top: 3rem;
            }
            .hero-trust-badges {
                flex-wrap: wrap;
            }
        }

        /* ============================================
           COURSE PAGE ENHANCED STYLES
           ============================================ */

        /* Course Highlights Bar */
        .course-highlight-item {
            position: relative;
            padding: 0.5rem 1rem;
        }
        .course-highlight-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 50%;
            width: 1px;
            background: rgba(0,0,0,0.1);
        }
        .course-highlight-item:last-child::after {
            display: none;
        }
        @media (max-width: 767px) {
            .course-highlight-item::after {
                display: none;
            }
        }
        .highlight-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
        }
        .highlight-icon i {
            font-size: 2rem;
            color: var(--primary-color);
        }

        /* Professional Cards - Who Can Do Botox */
        .professional-card {
            background: rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 1.5rem 1rem;
            height: 100%;
            border: 1px solid rgba(255,255,255,0.1);
            transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        .professional-card:hover {
            background: rgba(255,255,255,0.12);
        }
        /* Linked Professional Cards */
        a.professional-card {
            text-decoration: none;
            display: block;
        }
        a.professional-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            background: rgba(255,255,255,0.15);
        }
        .professional-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        .professional-icon i {
            font-size: 1.5rem;
            color: white;
        }
        .professional-card h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }
        .professional-card .credential {
            font-size: 0.8rem;
            opacity: 0.7;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* Course Tabs - Enhanced Design */
        .course-tabs-container {
            background: white;
            border-bottom: 1px solid #e0e0e0;
        }
        .course-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem;
            flex-wrap: wrap;
            max-width: 900px;
            margin: 0 auto;
        }
        .course-tab {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            background: white;
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }
        .course-tab:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            text-decoration: none;
        }
        .course-tab.active {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        .course-tab i {
            font-size: 1rem;
        }

        /* Tab Content Panels */
        .tab-content-panel {
            display: none;
            animation: fadeIn 0.3s ease;
        }
        .tab-content-panel.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Enhanced Content Styling */
        .course-content-section {
            background: #f8f9fa;
            padding: 3rem 0;
        }
        .course-content-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            max-width: 900px;
            margin: 0 auto;
        }
        .course-content-card h2 {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        .course-content-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 2px;
        }

        /* Learning Objectives - Enhanced */
        .objective-item {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary-color);
            transition: all 0.2s ease;
        }
        .objective-item:hover {
            background: #f0f4f8;
            transform: translateX(4px);
        }
        .objective-item b {
            color: var(--secondary-color);
        }

        /* Related Courses - Clean Design */
        .related-course-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            height: 100%;
            border: 1px solid #e0e0e0;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            text-decoration: none;
            display: block;
        }
        .related-course-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            text-decoration: none;
        }
        .related-course-card .card-icon {
            width: 48px;
            height: 48px;
            background: var(--neutral-color-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .related-course-card .card-icon i {
            font-size: 1.25rem;
            color: var(--primary-color);
        }
        .related-course-card .card-title {
            color: var(--secondary-color);
            transition: color 0.2s ease;
            font-size: 1.05rem;
        }
        .related-course-card:hover .card-title {
            color: var(--primary-color);
        }
        .related-course-card .card-badge {
            display: inline-block;
            padding: 0.2rem 0.6rem;
            background: var(--neutral-color-bg);
            color: var(--secondary-color);
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color-darker) 100%);
        }

        /* FAQ Enhanced */
        .faq-section {
            background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
        }

        /* Industry Stats Responsive */
        .stat-number {
            font-size: 1.25rem;
        }
        .stat-label {
            font-size: 0.65rem;
            line-height: 1.2;
        }
        .stat-middle {
            border-left: 1px solid #e0e0e0;
            border-right: 1px solid #e0e0e0;
        }
        @media (min-width: 768px) {
            .stat-number {
                font-size: 2rem;
            }
            .stat-label {
                font-size: 0.8rem;
            }
        }

        /* FAQ Fix - Remove blue color on mobile */
        #faq button,
        #faq button p,
        #faq button .h5,
        #faq .tab-selector,
        #faq .tab-selector p,
        #faq .tab-selector .h5 {
            color: #000 !important;
            -webkit-text-fill-color: #000 !important;
        }
        #faq button:focus,
        #faq button:active,
        #faq button:visited {
            color: #000 !important;
            -webkit-text-fill-color: #000 !important;
            outline: none;
            box-shadow: none;
        }

        /* ROI Calculator Sliders */
        input[type="range"] {
            -webkit-appearance: none;
            appearance: none;
            height: 8px;
            background: #e0e0e0;
            border-radius: 4px;
            outline: none;
            cursor: pointer;
        }
        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 22px;
            height: 22px;
            background: var(--primary-color);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(208,2,41,0.3);
            transition: transform 0.15s ease;
        }
        input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.1);
        }
        input[type="range"]::-moz-range-thumb {
            width: 22px;
            height: 22px;
            background: var(--primary-color);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(208,2,41,0.3);
        }
        input[type="range"]::-moz-range-track {
            height: 8px;
            background: #e0e0e0;
            border-radius: 4px;
        }

        /* Accessibility Improvements */
        .course-tab:focus,
        .related-course-card:focus {
            outline: 3px solid var(--primary-color);
            outline-offset: 2px;
        }

        /* Overview Section Enhanced */
        .overview-section {
            position: relative;
        }
        .overview-image-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        .overview-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(227,30,36,0.1) 0%, transparent 50%);
            z-index: 1;
        }
        .overview-badge {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            background: white;
            padding: 0.75rem 1rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
