/* ===================================
   CSS VARIABLES - BRAND COLORS
   =================================== */
:root {
    --primary-blue: #091F5B;
    --primary-orange: #FF671F;
    --accent-gold: #F9BF41;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --text-dark: #212529;
    --text-light: #495057;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit; /* Keeps text color from parent */
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e55a0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 103, 31, 0.3);
}

.btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #06184a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 31, 91, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-light {
    background: var(--white);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-light:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    background: var(--white);
    border-bottom: 3px solid var(--accent-gold);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.navbar-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-links a:not(.btn-primary):hover {
    color: var(--primary-blue);
}

.navbar-links a:not(.btn-primary).active {
    color: var(--primary-blue);
    font-weight: 600;
}

.navbar-links a:not(.btn-primary).active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gold);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #06184a 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 Q 25 25, 50 50 T 100 50" stroke="rgba(249,191,65,0.1)" stroke-width="2" fill="none"/></svg>') repeat;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(9, 31, 91, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===================================
   PAGE HEADER (FOR GOVERNANCE PAGE)
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #06184a 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="30" stroke="rgba(249,191,65,0.1)" stroke-width="2" fill="none"/></svg>') repeat;
    opacity: 0.3;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(9, 31, 91, 0.2) 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   QUICK ACCESS CARDS
   =================================== */
.quick-access {
    background: var(--white);
    padding: 3rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

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

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-top: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-top-color: var(--primary-orange);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    font-size: 1.4rem;
}

.card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* ===================================
   SECTION STYLES
   =================================== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

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

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* ===================================
   SUPPORT REQUESTS GRID
   =================================== */
.card-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.support-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.support-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(9, 31, 91, 0.15);
}

.support-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.support-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* ===================================
   PAIN POINTS
   =================================== */
.pain-points {
    background: var(--light-gray);
}

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

.pain-card {
    background: var(--white);
    border-left: 5px solid var(--primary-orange);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(255, 103, 31, 0.15);
}

.pain-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.pain-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   WHY CTL
   =================================== */
.why-ctl {
    background: var(--white);
}

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

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    background: linear-gradient(135deg, var(--primary-blue), #06184a);
    color: var(--white);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(9, 31, 91, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(9, 31, 91, 0.3);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-size: 1.4rem;
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ===================================
   HOW IT WORKS
   =================================== */
.how-it-works {
    background: var(--light-gray);
}

.steps-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-blue), #06184a);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(9, 31, 91, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 60px;
    background: var(--accent-gold);
}

.step:last-child .step-number::after {
    display: none;
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-left: 3px solid var(--accent-gold);
}

.step-content h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    font-size: 1.4rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   TEACHING MODALITIES
   =================================== */
.modalities {
    background: var(--white);
}

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

.modality-card {
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.modality-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-6px);
    background: var(--white);
    box-shadow: 0 6px 20px rgba(9, 31, 91, 0.12);
}

.modality-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modality-card h4 {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 600;
}

/* ===================================
   FEATURED RESOURCES
   =================================== */
.featured-resources {
    background: var(--light-gray);
}

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

.resource-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.resource-image {
    height: 180px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-image img {
    transform: scale(1.1);
}

.resource-content {
    padding: 1.5rem;
}

.resource-content h4 {
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.resource-content p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.resource-tag {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===================================
   FACULTY RECOGNITION
   =================================== */
.faculty-recognition {
    background: var(--white);
}

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

.award-card {
    background: linear-gradient(135deg, #fff8e6, #fff0cc);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--accent-gold);
    text-align: center;
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(249, 191, 65, 0.2);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.award-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
    background: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-family: Georgia, serif;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 0.25rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* ===================================
   SECONDARY CTAs
   =================================== */
.secondary-ctas {
    background: linear-gradient(135deg, var(--primary-blue), #06184a);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.secondary-ctas h2 {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FAQ
   =================================== */
.faq {
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* ===================================
   GOVERNANCE PAGE STYLES
   =================================== */
.governance-overview {
    background: var(--white);
}

.governance-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-content h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

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

.intro-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Director Section */
.director-section {
    background: var(--light-gray);
}

.director-showcase {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.director-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.director-image img {
    width: 100%;
    height: auto;
    display: block;
}

.director-badge-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(9, 31, 91, 0.95), transparent);
    padding: 1rem;
    text-align: center;
}

.director-badge-overlay span {
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.director-info h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.director-subtitle {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.director-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-text h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.detail-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.credential-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.credential-badges span {
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-tenured {
    background: linear-gradient(135deg, var(--primary-blue), #06184a);
    color: var(--white);
}

.badge-certified {
    background: var(--accent-gold);
    color: var(--primary-blue);
}

.badge-reviewed {
    background: var(--primary-orange);
    color: var(--white);
}

/* Board Section */
.board-section {
    background: var(--white);
}

.board-structure-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--accent-gold);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.board-members {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.board-subtitle {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.board-member {
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.member-title {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-term {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.member-benefit {
    background: #fff8e6;
    color: var(--primary-blue);
    padding: 0.4rem 0.9rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid var(--accent-gold);
}

.board-responsibilities {
    margin-top: 3rem;
}

.board-responsibilities h3 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.responsibility-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
}

.responsibility-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.responsibility-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Fellows Section */
.fellows-section {
    background: var(--light-gray);
}

.fellows-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.fellows-hero-content h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.fellows-hero-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.fellows-hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.fellows-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.fellows-activities h3 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

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

.activity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-orange);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.activity-card h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.activity-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.activity-card ul {
    list-style: none;
    padding: 0;
}

.activity-card li {
    color: var(--dark-gray);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.activity-card li::before {
    content: 'â†’';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.fellows-benefits h3 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.benefit-check {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.benefit-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.current-fellows h3 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.current-fellows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.current-fellow {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.fellow-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    flex-shrink: 0;
}

.fellow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fellow-details h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.fellow-department {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 1rem;
}

.fellow-research {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.fellow-activities {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.fellows-application {
    background: linear-gradient(135deg, var(--primary-blue), #06184a);
    padding: 3rem;
    border-radius: 12px;
    color: var(--white);
}

.application-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.application-card p {
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.application-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Transparency Section */
.transparency-section {
    background: var(--white);
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.transparency-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.transparency-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.transparency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.transparency-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.transparency-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #e55a0f;
}

/* Governance CTA */
.governance-cta {
    background: linear-gradient(135deg, var(--primary-blue), #06184a);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.governance-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.governance-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-notice {
    background: var(--primary-orange);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-weight: 500;
    border-left: 5px solid var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: #adb5bd;
}

/* ===================================
   RECORDING STUDIOS PAGE
   =================================== */

/* Studios Header */
.studios-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #06184a 100%),
                url('https://images.unsplash.com/photo-1598653222000-6b7b7a552625?w=1600&h=600&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}

/* Studios Overview */
.studios-overview {
    background: var(--white);
}

.overview-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-text h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.intro-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-blue), #06184a);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(9, 31, 91, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* Studios Comparison */
.studios-comparison {
    background: var(--light-gray);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.studio-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    position: relative;
}

.studio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.studio-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.studio-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.studio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-content {
    padding: 2rem;
}

.studio-content h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.studio-subtitle {
    color: var(--dark-gray);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.studio-features,
.studio-specs {
    margin-bottom: 1.5rem;
}

.studio-features h4,
.studio-specs h4 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.studio-features ul,
.studio-specs ul {
    list-style: none;
    padding: 0;
}

.studio-features li,
.studio-specs li {
    padding: 0.4rem 0;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.studio-features li::before {
    content: 'â†’';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.studio-specs li::before {
    content: '';
    position: absolute;
    left: 0;
}

.studio-btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Booking Section */
.booking-section {
    background: var(--white);
}

.booking-steps {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.booking-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.booking-step .step-number {
    background: linear-gradient(135deg, var(--primary-orange), #e55a0f);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 103, 31, 0.3);
}

.booking-step .step-content {
    flex: 1;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary-orange);
}

.booking-step .step-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.booking-step .step-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.booking-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.booking-info {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.info-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--accent-gold);
}

.booking-cta {
    text-align: center;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Studio Details Section */
.studio-details {
    background: var(--white);
}

.lightboard-details {
    background: var(--light-gray);
}

.details-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.details-icon {
    font-size: 4rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), #06184a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.details-header h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.details-header p {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.details-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.details-section h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.details-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.video-embed-placeholder {
    margin: 2rem 0;
}

.instruction-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-orange);
}

.instruction-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.instruction-card ol,
.instruction-card ul {
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 1.5rem;
}

.instruction-card li {
    margin-bottom: 0.75rem;
}

.instruction-card strong {
    color: var(--primary-blue);
}

.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    padding-left: 1.5rem;
    position: relative;
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
}

.alert-card {
    background: #fff8e6;
    border-left-color: var(--accent-gold);
}

.wardrobe-list {
    list-style: none;
    padding-left: 0;
}

.wardrobe-list li {
    padding-left: 1.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 4px solid var(--accent-gold);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.tip-card ul {
    list-style: none;
    padding: 0;
}

.tip-card li {
    color: var(--text-light);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tip-card li::before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Details Sidebar */
.details-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sidebar-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
}

.sidebar-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.fact-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-item strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.25rem;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
    border: 2px solid var(--accent-gold);
}

.download-list {
    list-style: none;
    padding: 0;
}

.download-list li {
    margin-bottom: 0.75rem;
}

.download-list a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.download-list a:hover {
    color: #e55a0f;
}

/* Feature Highlights */
.feature-highlights {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--primary-orange);
}

/* Background Options */
.background-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.option-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.option-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.option-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.option-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 0.4rem 0.9rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Support Section */
.support-section {
    background: var(--light-gray);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.support-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.support-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ===================================
   QUICK TIPS LIBRARY PAGE
   =================================== */

/* Quick Tips Header */
.quick-tips-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #06184a 100%),
                url('https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?w=1600&h=600&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}

/* Library Overview */
.library-overview {
    background: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.overview-text h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.overview-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature-box h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-box p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Search Section */
.search-section {
    background: var(--light-gray);
    padding: 2rem 0;
}

.search-container {
    max-width: 900px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.search-button {
    background: var(--primary-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #e55a0f;
    transform: translateY(-2px);
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: var(--white);
    color: var(--primary-blue);
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--medium-gray);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-blue);
    background: var(--light-gray);
}

.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* Top Tips Section */
.top-tips-section {
    background: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border-top: 5px solid var(--accent-gold);
}

.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.tip-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-orange), #e55a0f);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 103, 31, 0.3);
}

.tip-content {
    padding: 2rem;
    padding-right: 3.5rem;
}

.tip-content h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.tip-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.tip-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tip-duration {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.tip-category {
    background: var(--light-gray);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tip-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tip-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tip-link.primary {
    background: var(--primary-orange);
    color: var(--white);
}

.tip-link.primary:hover {
    background: #e55a0f;
    transform: translateY(-2px);
}

.tip-link:not(.primary) {
    background: var(--light-gray);
    color: var(--primary-blue);
    border: 2px solid var(--medium-gray);
}

.tip-link:not(.primary):hover {
    background: var(--medium-gray);
    border-color: var(--primary-blue);
}

/* All Tips Section */
.all-tips-section {
    background: var(--light-gray);
}

.category-section {
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.category-title {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 0.75rem;
}

.category-icon {
    font-size: 2rem;
}

.compact-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.compact-tip {
    background: var(--light-gray);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.compact-tip:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left-color: var(--primary-orange);
}

.compact-tip h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.compact-actions {
    display: flex;
    gap: 0.75rem;
}

.compact-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.compact-link:hover {
    color: #e55a0f;
    text-decoration: underline;
}

/* Request Section */
.request-section {
    background: linear-gradient(135deg, var(--primary-blue), #06184a);
    color: var(--white);
}

.request-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid rgba(249,191,65,0.3);
}

.request-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.request-content p {
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.request-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.request-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--accent-gold);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* Related Section */
.related-section {
    background: var(--white);
}

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

.related-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.related-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.related-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.related-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   TEACHING MODALITIES PAGE
   =================================== */

/* Modalities Page Header */
.modalities-page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #06184a 100%),
                url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1600&h=600&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}

/* Modalities Intro */
.modalities-intro {
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-content h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.instruction-box {
    background: linear-gradient(135deg, #fff8e6, #ffe0b3);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    color: var(--text-dark);
}

.instruction-box strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.modality-nav {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.modality-nav h3 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.modality-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.nav-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.nav-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(255, 103, 31, 0.15);
}

.nav-icon {
    font-size: 2.5rem;
}

/* Modality Sections */
.modality-section {
    padding: 5rem 0;
}

.async-section {
    background: var(--light-gray);
}

.sync-section {
    background: var(--white);
}

.blended-section {
    background: var(--light-gray);
}

.inperson-section {
    background: var(--white);
}

.residency-section {
    background: var(--light-gray);
}

.modality-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-left: 6px solid var(--accent-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.modality-header:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.modality-header.active {
    border-left-color: var(--primary-orange);
}

.accordion-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-left: auto;
    transition: transform 0.3s ease;
}

.modality-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.accordion-content.active {
    max-height: 20000px; /* Large enough to accommodate all content */
    opacity: 1;
    transition: max-height 0.8s ease-in, opacity 0.4s ease-in;
}

.accordion-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.control-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.control-btn:hover {
    background: #06184a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 31, 91, 0.3);
}

#collapseAll {
    background: var(--dark-gray);
}

#collapseAll:hover {
    background: #495057;
}

.modality-icon-large {
    font-size: 5rem;
    flex-shrink: 0;
}

.modality-header h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.modality-tagline {
    color: var(--dark-gray);
    font-size: 1.2rem;
    font-weight: 500;
}

.modality-content {
    max-width: 1100px;
    margin: 0 auto;
}

/* Description Card */
.description-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-orange);
}

.description-card h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.description-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.description-card strong {
    color: var(--primary-blue);
}

/* Design Standards */
.design-standards {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.design-standards > h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.standard-category {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--medium-gray);
}

.standard-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.standard-category > h4 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.standard-category > h4::before {
    content: '';
    width: 4px;
    height: 30px;
    background: var(--accent-gold);
    display: inline-block;
}

.standard-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.standard-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.standard-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.standard-check {
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-weight: bold;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.standard-content h5 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.standard-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Recommended Tools */
.recommended-tools {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.recommended-tools h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    border-top-color: var(--primary-orange);
}

.tool-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.tool-card p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Tips and Warnings */
.tips-warnings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.tip-box {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.success-tip {
    background: #e8f5e9;
    border-left: 5px solid #4caf50;
}

.warning-tip {
    background: #fff8e6;
    border-left: 5px solid var(--primary-orange);
}

.tip-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-tip h4 {
    color: #2e7d32;
}

.warning-tip h4 {
    color: var(--primary-orange);
}

.tip-box ul {
    list-style: none;
    padding: 0;
}

.tip-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.success-tip li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.warning-tip li::before {
    content: "\26A0";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

/* Resources Section */
.resources-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.resources-section h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.resource-links {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.resource-links li {
    background: var(--light-gray);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

.resource-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-links a:hover {
    color: var(--primary-orange);
}

/* Comparison Table */
.comparison-section {
    background: var(--white);
}

.comparison-table-container {
    overflow-x: auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-blue), #06184a);
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.comparison-table th {
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table tbody tr:hover {
    background: var(--light-gray);
}

.comparison-table td {
    color: var(--text-light);
}

.comparison-table td.high {
    color: #2e7d32;
    font-weight: 600;
}

.comparison-table td.medium {
    color: var(--primary-orange);
    font-weight: 600;
}

.comparison-table td.low {
    color: #d32f2f;
    font-weight: 600;
}

/* ===================================
   COL-SPECIFIC STYLES
   =================================== */

/* Recording Section */
.recording-section {
    background: var(--white);
}

.recording-grid {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.recording-card {
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
}

.recording-image {
    height: 100%;
}

.recording-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.recording-content {
    padding: 2rem;
}

.recording-subtitle {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.recording-features,
.recording-instructions {
    margin-bottom: 2rem;
}

.recording-features h4,
.recording-instructions h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.recording-features ul {
    list-style: none;
    padding: 0;
}

.recording-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.6;
}

.recording-instructions p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Resources Grid */
.resources-section {
    background: var(--light-gray);
}

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

.resource-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-gold);
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-top-color: var(--primary-orange);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #e55a0f;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.services-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.services-list li {
    padding: 1rem;
    background: var(--light-gray);
    border-left: 4px solid var(--primary-orange);
    margin-bottom: 1rem;
    border-radius: 6px;
}

.services-list strong {
    color: var(--primary-blue);
}

.team-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--medium-gray);
}

.section-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* WCAG Compliance Page Styles */
.intro-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.intro-content h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

/* Checklist Styles */
.checklist-container {
    display: grid;
    gap: 2rem;
}

.checklist-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-orange);
}

.checklist-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid var(--medium-gray);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li::before {
    content: '☐';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
    color: var(--primary-blue);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
    .governance-intro,
    .director-showcase,
    .fellows-hero {
        grid-template-columns: 1fr;
    }
    
    .director-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Recording Studios responsive */
    .overview-intro,
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-card {
        flex: 1;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .details-sidebar {
        position: static;
    }
    
    /* Quick Tips responsive */
    .overview-content,
    .request-card {
        grid-template-columns: 1fr;
    }
    
    .tips-grid,
    .compact-tips-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    /* Teaching Modalities responsive */
    .modality-nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .tips-warnings {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    /* COL responsive */
    .recording-card {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .governance-intro,
    .director-showcase,
    .fellows-hero {
        grid-template-columns: 1fr;
    }
    
    .director-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Recording Studios responsive */
    .overview-intro,
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-card {
        flex: 1;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .details-sidebar {
        position: static;
    }
    
    /* Quick Tips responsive */
    .overview-content,
    .request-card {
        grid-template-columns: 1fr;
    }
    
    .tips-grid,
    .compact-tips-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    /* Teaching Modalities responsive */
    .modality-nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .tips-warnings {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .navbar-links.active {
        left: 0;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number::after {
        display: none;
    }
    
    .current-fellow {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .board-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    /* Recording Studios mobile */
    .overview-stats {
        flex-direction: column;
    }
    
    .booking-step {
        flex-direction: column;
    }
    
    .booking-step .step-number {
        margin: 0 auto;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .background-options {
        grid-template-columns: 1fr;
    }
    
    /* Quick Tips mobile */
    .search-box {
        flex-direction: column;
    }
    
    .filter-buttons {
        justify-content: flex-start;
    }
    
    .tips-grid,
    .compact-tips-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .tip-content {
        padding-right: 2rem;
    }
    
    /* Teaching Modalities mobile */
    .modality-header {
        flex-direction: column;
        text-align: center;
    }
    
    .accordion-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        margin-left: 0;
    }
    
    .modality-icon-large {
        font-size: 4rem;
    }
    
    .modality-header h2 {
        font-size: 2rem;
    }
    
    .modality-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .standard-item {
        flex-direction: column;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-container {
        padding: 1rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .accordion-controls {
        flex-direction: column;
    }
    
    .control-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .card-grid-3,
    .card-grid-6,
    .pain-grid,
    .value-grid,
    .modality-grid,
    .resource-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }
}
