:root {
    --mh-primary: #0a2540;
    --mh-secondary: #00d4ff;
    --mh-accent: #635bff;
    --mh-text: #425466;
    --mh-light: #f6f9fc;
    --mh-white: #ffffff;
    --mh-border: #e6ebf1;
    --mh-shadow: 0 13px 27px -5px rgba(50,50,93,0.25), 0 8px 16px -8px rgba(0,0,0,0.3);
    --mh-glass-bg: rgba(255, 255, 255, 0.95);
    --mh-glass-border: rgba(255, 255, 255, 0.5);
}

.mh-widget-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--mh-text);
    line-height: 1.6;
}

/* Hero Section */
.mh-hero {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--mh-primary) 0%, var(--mh-accent) 100%);
    border-radius: 24px;
    margin-bottom: 60px;
    color: var(--mh-white);
    overflow: hidden;
    box-shadow: var(--mh-shadow);
}

.mh-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.mh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.mh-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    color: var(--mh-white);
}

.mh-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--mh-secondary);
    margin-bottom: 20px;
}

.mh-hero-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.mh-hero-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--mh-secondary);
    color: var(--mh-primary);
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0,212,255,0.3);
}

.mh-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,212,255,0.4);
    color: var(--mh-primary);
}

/* Glassmorphism Cards */
.mh-glass-card {
    background: var(--mh-glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--mh-glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mh-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* Pathways */
.mh-pathways {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mh-pathway-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--mh-light);
}

.mh-pathway-title {
    color: var(--mh-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.mh-pathway-desc {
    color: var(--mh-text);
    margin-bottom: 25px;
}

/* Accordion */
.mh-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mh-accordion-item {
    border: 1px solid var(--mh-border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--mh-white);
}

.mh-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: var(--mh-primary);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.mh-accordion-header:hover {
    background-color: var(--mh-light);
}

.mh-accordion-header .mh-icon {
    font-size: 1.4rem;
    color: var(--mh-accent);
    transition: transform 0.3s ease;
}

.mh-accordion-header.active .mh-icon {
    transform: rotate(45deg);
}

.mh-accordion-content {
    background: var(--mh-light);
    border-top: 1px solid var(--mh-border);
}

.mh-accordion-inner {
    padding: 20px;
    font-size: 0.95rem;
}

/* Section Title */
.mh-section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.mh-section-title {
    font-size: 2.2rem;
    color: var(--mh-primary);
    font-weight: 800;
}

/* Redesigned Mentors Grid */
.mh-mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.mh-mentor-card-modern {
    background: var(--mh-white);
    border: 1px solid var(--mh-border);
    border-radius: 16px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mh-mentor-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mh-mentor-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--mh-border);
}

.mh-mentor-avatar {
    flex-shrink: 0;
}

.mh-mentor-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--mh-light);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.mh-mentor-basic-info {
    flex-grow: 1;
}

.mh-mentor-name {
    font-size: 1.2rem;
    color: var(--mh-primary);
    font-weight: 700;
    margin: 0 0 5px 0;
}

.mh-mentor-role {
    font-size: 0.9rem;
    color: var(--mh-text);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.mh-mentor-flag {
    border-radius: 2px;
    display: inline-block;
}

.mh-mentor-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mh-mentor-quote-modern {
    font-size: 0.95rem;
    color: var(--mh-text);
    font-style: italic;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.mh-mentor-quote-modern p {
    margin: 0;
}

.mh-mentor-quote-modern::before,
.mh-mentor-quote-modern::after {
    content: '"';
    color: var(--mh-accent);
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.5;
    position: relative;
    vertical-align: top;
}
