/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #1e40af;
    --accent-color: #d4af37;
    --gold-accent: #d4af37;
    --navy-blue: #0f172a;
    --deep-blue: #1e3a8a;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-accent));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.dropdown-arrow {
    font-size: 1rem;
    transition: transform 0.2s ease;
    display: inline-block;
    line-height: 1;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 150px;
    list-style: none;
    padding: 0.4rem 0;
    z-index: 1000;
    /* invisible bridge fills the gap so hover doesn't break */
    margin-top: 0;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-link {
    display: block;
    padding: 0.55rem 1.1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

.social-links-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.social-icons-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-nav-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    white-space: nowrap;
}

.social-links-nav a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.social-links-nav a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
    color: white;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
                url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.15)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #d4af37;
    display: block;
    margin-top: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.pathfinder-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: color 0.2s ease;
}

.scroll-indicator:hover {
    color: #d4af37;
}

.scroll-indicator-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.scroll-chevron {
    width: 22px;
    height: 22px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

.hero-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Logo Section */
.logo-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
}

.logo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.logo-story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(15, 23, 42, 0.15));
    transform: scale(1.05);
}

.story-container {
    text-align: left;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
}

.story-content {
    color: var(--text-light);
    line-height: 1.8;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Team and Representation Section */
.team-representation-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.images-wrapper {
    display: flex;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.image-container {
    width: 100%;
}

.team-photo,
.representation-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
    object-fit: cover;
}

/* Page Header */
.page-header {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--deep-blue) 50%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

/* Apply Section */
.apply-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--deep-blue) 50%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.apply-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: inherit;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold-accent);
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    background: #c19b26;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.about-section .section-title {
    text-align: center;
}

/* Center section title for interns page as well */
.interns-section .section-title,
.about-section .section-title {
    text-align: center;
}

/* Mentor Section */
.mentor-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.mentor-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.mentor-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.mentor-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 4px solid var(--gold-accent);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.mentor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mentor-info {
    max-width: 600px;
}

.mentor-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.mentor-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.mentor-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-accent);
}

.mentor-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Team Intro */
.team-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Team Members Grid */
.team-members-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-member-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    flex: 0 1 340px;
    min-width: 280px;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-accent);
}

.team-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.team-member-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .member-photo {
    transform: scale(1.05);
}

.team-member-info {
    padding: 2rem;
}

.member-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.member-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-accent);
}

.member-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Season 1 Careers Grid */
.s1-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.s1-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.s1-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    width: 200px;
}

.s1-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--gold-accent);
    display: block;
}

.s1-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin: 0;
}

.s1-link {
    color: var(--navy-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.s1-link:hover {
    color: var(--primary-color);
}

.s1-role {
    font-size: 0.78rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 500;
}

.s1-parts {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.2rem;
}

.s1-part-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.s1-part-link:hover {
    background: var(--navy-blue);
}

/* Season 1 List Section */
.s1-divider-line {
    height: 4px;
    background: #7EC8E3;
    width: 100%;
}

.s1-list-section {
    background: #E8F6FB;
    padding: 0 20px 60px;
}

.s1-list {
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

.s1-list-row {
    display: grid;
    grid-template-areas:
        "photo info bio"
        "embed embed bio";
    grid-template-columns: 80px 1fr 2fr;
    column-gap: 1.5rem;
    row-gap: 0.75rem;
    align-items: start;
    padding: 1.5rem 0;
    border-bottom: 2px solid #7EC8E3;
}

.s1-list-row:first-child {
    border-top: none;
    padding-top: 2rem;
}

.s1-list-photo {
    grid-area: photo;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--gold-accent);
}

.s1-list-info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.s1-list-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin: 0;
}

.s1-list-role {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 500;
}

.s1-list-embed {
    grid-area: embed;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.s1-list-embed iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}

.s1-list-bio {
    grid-area: bio;
    font-size: 0.94rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

#section-alice-yagolnitser .s1-list-embed,
#section-shaila-abdullah .s1-list-embed {
    flex-direction: row;
    gap: 0.5rem;
}

#section-alice-yagolnitser .s1-list-embed iframe,
#section-shaila-abdullah .s1-list-embed iframe {
    flex: 1;
    min-width: 0;
}

/* Season 1 Playlist Banner */
.s1-playlist-banner-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 20px 1rem;
    background: var(--bg-white);
}

.s1-playlist-banner {
    display: inline-block;
    padding: 1rem 4rem;
    background: var(--gold-accent);
    color: var(--navy-blue);
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.03em;
    transition: background 0.2s ease, color 0.2s ease;
}

.s1-playlist-banner:hover {
    background: var(--navy-blue);
    color: white;
}

/* Careers Section */
.careers-section {
    padding: 16px 20px 100px;
    background: var(--bg-white);
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.coming-soon {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    grid-column: 1 / -1;
}

/* More Section */
.more-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.more-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    padding: 48px 20px;
    background: var(--bg-light);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-button {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
        position: static;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        border-radius: 6px;
        margin-top: 0.4rem;
        padding: 0.2rem 0;
    }

    .dropdown-link {
        padding: 0.5rem 1.5rem;
    }

    .social-links-nav {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-social {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .logo-story-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .team-members-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .images-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-representation-section {
        padding: 60px 20px;
    }

    .story-container {
        text-align: center;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .story-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .story-title {
        font-size: 1.75rem;
    }

    .story-content p {
        font-size: 0.95rem;
    }

    .logo-section {
        padding: 60px 20px;
    }

    .team-members-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member-image {
        height: 250px;
    }

    .team-member-info {
        padding: 1.5rem;
    }

    .member-name {
        font-size: 1.25rem;
    }

    .mentor-section {
        padding: 60px 20px;
    }

    .mentor-card {
        padding: 1.5rem;
    }

    .mentor-image {
        width: 200px;
        height: 200px;
        margin-bottom: 1.5rem;
    }

    .mentor-name {
        font-size: 1.75rem;
    }

    .mentor-description {
        font-size: 1rem;
    }
}

