        /* Breadcrumb Navigation */
        .breadcrumb-nav {
            background: #f8f9fa;
            padding: 0.75rem 0;
            border-bottom: 1px solid #eee;
            margin-top: 80px;
        }
        .breadcrumb-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
        }
        .breadcrumb-list li {
            display: flex;
            align-items: center;
        }
        .breadcrumb-list li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: #999;
        }
        .breadcrumb-list a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .breadcrumb-list a:hover {
            color: var(--primary-color);
        }
        .breadcrumb-list li:last-child {
            color: var(--secondary-color);
            font-weight: 600;
        }

        /* Hero Section */
        .profession-hero {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
            color: white;
            padding: 60px 0 80px;
            position: relative;
            overflow: hidden;
        }
        @media (max-width: 991px) {
            .profession-hero {
                padding: 40px 0 60px;
            }
        }
        .profession-hero::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(208,2,41,0.2);
            border: 1px solid rgba(208,2,41,0.4);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #ff6b6b;
            margin-bottom: 1.5rem;
        }
        .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            color: white;
        }
        .hero-title span {
            color: var(--primary-color);
        }
        .hero-subtitle {
            font-size: 1.15rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.85);
            margin-bottom: 2rem;
            max-width: 55ch;
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }
        .hero-btn {
            padding: 0.85rem 1.75rem;
            font-weight: 600;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        .hero-btn-primary {
            background: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
        }
        .hero-btn-primary:hover {
            background: #b00225;
            border-color: #b00225;
            color: white;
            text-decoration: none;
        }
        .hero-btn-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }
        .hero-btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
            color: white;
            text-decoration: none;
        }
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .hero-stat {
            text-align: left;
        }
        .hero-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .hero-stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
            margin-top: 0.25rem;
        }
        .hero-form-wrapper {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 25px 50px rgba(0,0,0,0.25);
        }
        @media (max-width: 991px) {
            .hero-form-wrapper {
                margin-top: 2rem;
            }
        }

        /* Section Styles */
        .section-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(208,2,41,0.1);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            line-height: 1.7;
        }

        /* Why Choose AAOPM Section */
        .why-aaopm-section {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        /* Featured Community Block */
        .aaopm-community-block {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
            border-radius: 24px;
            padding: 3rem;
            color: white;
        }
        .community-stat-circle {
            width: 220px;
            height: 220px;
            background: rgba(208,2,41,0.15);
            border: 3px solid rgba(208,2,41,0.4);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }
        .community-stat-circle .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .community-stat-circle .stat-label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            text-align: center;
            margin-top: 0.5rem;
        }
        .community-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .community-title i {
            color: var(--primary-color);
        }
        .community-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.9);
            margin-bottom: 1.5rem;
        }
        .community-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .community-features span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.85);
        }
        .community-features i {
            color: #4ade80;
        }

        /* Bento Grid */
        .aaopm-bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1.25rem;
        }
        .bento-card {
            background: white;
            border-radius: 20px;
            padding: 1.75rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid #eee;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .bento-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.1);
        }
        .bento-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        .bento-card p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 0;
        }
        .bento-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(208,2,41,0.1), rgba(255,107,107,0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        .bento-icon i {
            font-size: 1.25rem;
            color: var(--primary-color);
        }

        /* Bento Card Sizes */
        .bento-wide {
            grid-column: span 8;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .bento-wide .bento-icon {
            flex-shrink: 0;
            margin-bottom: 0;
        }
        .bento-wide .bento-content {
            flex: 1;
        }
        .bento-wide .bento-badge {
            background: rgba(208,2,41,0.1);
            color: var(--primary-color);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
        }
        .bento-tall {
            grid-column: span 4;
            grid-row: span 2;
            display: flex;
            flex-direction: column;
        }
        .bento-tall .bento-highlight {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
        }
        .bento-tall .highlight-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .bento-tall .highlight-text {
            font-size: 0.85rem;
            color: #666;
        }
        .mentorship-card,
        .resources-card {
            grid-column: span 4;
        }
        .vendors-card,
        .jobs-card {
            grid-column: span 4;
        }

        @media (max-width: 991px) {
            .bento-wide,
            .bento-tall,
            .mentorship-card,
            .resources-card,
            .vendors-card,
            .jobs-card {
                grid-column: span 12;
            }
            .bento-wide {
                flex-direction: column;
                align-items: flex-start;
            }
            .bento-wide .bento-icon {
                margin-bottom: 1rem;
            }
            .bento-tall {
                grid-row: span 1;
            }
            .aaopm-community-block {
                padding: 2rem;
            }
            .community-stat-circle {
                width: 180px;
                height: 180px;
            }
            .community-stat-circle .stat-number {
                font-size: 2.75rem;
            }
        }
        @media (min-width: 768px) and (max-width: 991px) {
            .mentorship-card,
            .resources-card,
            .vendors-card,
            .jobs-card {
                grid-column: span 6;
            }
        }

        /* Proven Framework Block */
        .aaopm-proven-block {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            border: 2px solid var(--primary-color);
            box-shadow: 0 4px 20px rgba(208,2,41,0.1);
        }
        .proven-content {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .proven-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .proven-icon i {
            font-size: 1.75rem;
            color: white;
        }
        .proven-text h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        .proven-text p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 0;
        }
        @media (max-width: 576px) {
            .proven-content {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Why Section */
        .why-section {
            padding: 5rem 0;
            background: white;
        }
        .why-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .why-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.25rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 12px;
        }
        .why-list li i {
            color: var(--primary-color);
            font-size: 1.25rem;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .why-list li span {
            color: #444;
            line-height: 1.6;
        }

        /* Courses Section */
        .courses-section {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        /* FAQ Section */
        .faq-section {
            background: white;
            padding: 5rem 0;
        }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: #f8f9fa;
            border-radius: 12px;
            margin-bottom: 1rem;
            border: 1px solid #eee;
            overflow: hidden;
        }
        .faq-question {
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--secondary-color);
            font-size: 1rem;
            transition: all 0.3s ease;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }
        .faq-question:hover {
            color: var(--primary-color);
        }
        .faq-question i {
            font-size: 1.25rem;
            transition: transform 0.3s ease;
            color: var(--primary-color);
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        .faq-answer-content {
            padding: 0 1.5rem 1.25rem;
            color: #666;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
            padding: 5rem 0;
            color: white;
            text-align: center;
        }
        .cta-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .cta-subtitle {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Scope of Practice Section - Bento Grid */
        .scope-section {
            padding: 5rem 0;
            background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
        }
        .scope-bento {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1.25rem;
        }
        .scope-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0,0,0,0.04);
        }
        .scope-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .scope-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(165, 4, 4, 0.15);
        }
        .scope-card:hover::before {
            opacity: 1;
        }
        .scope-card.featured {
            grid-column: span 8;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
            color: white;
        }
        .scope-card.featured::before {
            display: none;
        }
        .scope-card.featured h3 {
            color: white;
        }
        .scope-card.featured h3 i {
            color: #ff6b6b;
        }
        .scope-card.featured p {
            color: rgba(255,255,255,0.85);
        }
        .scope-card.side {
            grid-column: span 4;
        }
        .scope-card.third {
            grid-column: span 4;
        }
        .scope-card.half {
            grid-column: span 6;
        }
        @media (max-width: 991px) {
            .scope-card.featured,
            .scope-card.side,
            .scope-card.third,
            .scope-card.half {
                grid-column: span 12;
            }
        }
        @media (min-width: 768px) and (max-width: 991px) {
            .scope-card.third,
            .scope-card.half {
                grid-column: span 6;
            }
        }
        .scope-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(165,4,4,0.1) 0%, rgba(255,107,107,0.1) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }
        .scope-card.featured .scope-icon {
            background: rgba(255,255,255,0.1);
        }
        .scope-icon i {
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .scope-card.featured .scope-icon i {
            color: #ff6b6b;
        }
        .scope-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .scope-card h3 i {
            display: none;
        }
        .scope-card p, .scope-card ul {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
        .scope-card ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
        }
        .scope-card ul li {
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .scope-card ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }
        .scope-card.featured ul li::before {
            color: #ff6b6b;
        }
        .scope-card ul li:last-child {
            margin-bottom: 0;
        }
        .scope-stat {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        .scope-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .scope-card.featured .scope-stat-number {
            color: #ff6b6b;
        }
        .scope-stat-label {
            font-size: 0.9rem;
            color: #666;
        }
        .scope-card.featured .scope-stat-label {
            color: rgba(255,255,255,0.7);
        }

        /* Related Professions Section */
        .related-section {
            padding: 4rem 0;
            background: #f8f9fa;
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        .related-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            background: white;
            border: 1px solid #eee;
            border-radius: 10px;
            color: var(--secondary-color);
            font-weight: 500;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .related-link:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            text-decoration: none;
        }
        .related-link i {
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        /* Top Courses Section - Swiper Carousel */
        .top-courses-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
        }
        .top-courses-swiper-pagination {
            position: static !important;
            width: auto !important;
        }
        .top-courses-swiper-pagination .swiper-pagination-bullet {
            background: white !important;
            opacity: 0.5 !important;
            width: 10px !important;
            height: 10px !important;
            margin: 0 4px !important;
            border: none !important;
        }
        .top-courses-swiper-pagination .swiper-pagination-bullet-active {
            opacity: 1 !important;
            background: white !important;
        }
        .topCoursesSwiper,
        .topCoursesSwiper .swiper-wrapper,
        .topCoursesSwiper .swiper-slide {
            background: transparent !important;
        }
        .topCoursesSwiper .swiper-slide {
            height: auto;
        }
        .top-course-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: #fff;
            height: 100%;
        }
        .top-course-card:hover {
            transform: translateY(-8px);
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.35);
            text-decoration: none;
            color: #fff;
        }
        .top-course-card .card-image {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .top-course-card .card-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            padding: 0.35rem 0.75rem;
            background: var(--primary-color);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 6px;
            z-index: 1;
        }
        .top-course-card .card-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .top-course-card .card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }
        .top-course-card .card-desc {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.5;
            margin-bottom: 1rem;
            flex-grow: 1;
        }
        .top-course-card .card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        .top-course-card .meta-item {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
        }
        .top-course-card .meta-item i {
            color: var(--primary-color);
        }
        .top-course-card .card-footer {
            padding: 1rem 1.5rem;
            background: rgba(255,255,255,0.05);
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-course-card .card-price {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
        }
        .top-course-card .card-price span {
            font-size: 0.8rem;
            font-weight: 400;
            color: rgba(255,255,255,0.7);
        }
        .top-course-card .card-link {
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.35rem;
            transition: gap 0.3s ease;
        }
        .top-course-card:hover .card-link {
            gap: 0.6rem;
        }
