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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 80px; /* Account for fixed header */
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    width: 100%;
}

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

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 2px;
}

.nav-logo .tagline {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #2563eb;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

/* Current State Section */
.current-state {
    background-color: #f8fafc;
}

.state-overview p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.fact-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.fact-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

.fact-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Scholarship Reality Section */
.scholarship-reality {
    padding: 4rem 0;
}

.scholarship-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.scholarship-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.program-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.program-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

.program-card p {
    margin-bottom: 0.5rem;
}

.program-card strong {
    font-weight: 600;
    color: #1f2937;
}

.program-card a {
    color: #2563eb;
    text-decoration: none;
}

.program-card a:hover {
    text-decoration: underline;
}

.other-opportunities {
    margin-top: 3rem;
}

.other-opportunities h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.other-opportunities ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.other-opportunities li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Notable Programs Section */
.notable-programs {
    background-color: #f8fafc;
    padding: 4rem 0;
}

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

.program-highlight {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.program-highlight h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

.program-highlight ul {
    list-style: none;
}

.program-highlight li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.program-highlight li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.program-highlight strong {
    font-weight: 600;
    color: #1f2937;
}

/* Tournaments Section */
.tournaments {
    padding: 4rem 0;
}

.tournament-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.tournament-info h3:first-child {
    margin-top: 0;
}

.tournament-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.tournament-info ul {
    list-style-position: inside;
    margin-left: 1rem;
    margin-bottom: 1.5rem;
}

.tournament-info li {
    margin-bottom: 0.5rem;
}

.tournament-info strong {
    font-weight: 600;
    color: #1f2937;
}

/* Getting Involved Section */
.getting-involved {
    background-color: #f8fafc;
    padding: 4rem 0;
}

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

.audience-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.audience-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

.audience-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.audience-section ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.audience-section li {
    margin-bottom: 0.5rem;
}

/* Key Resources Section */
.key-resources {
    padding: 4rem 0;
}

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

.resource-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid #2563eb;
}

.resource-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.resource-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #666;
}

.resource-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.resource-link:hover {
    text-decoration: underline;
}

.resource-note {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #2563eb;
}

.footer-section h3 {
    font-size: 1.3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d1d5db;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 1rem 20px;
    }
    
    .nav-menu {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    body {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .key-facts,
    .programs-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .scholarship-programs,
    .involvement-guide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .fact-item,
    .program-card,
    .audience-section,
    .resource-card {
        padding: 1.5rem;
    }
}



/* Programs Page Specific Styles */

/* Varsity Programs Section */
.varsity-programs {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.program-list {
    max-width: 1000px;
    margin: 0 auto;
}

.program-entry {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border-left: 6px solid #2563eb;
}

.program-entry.varsity {
    border-left-color: #059669;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.program-entry.emerging {
    border-left-color: #d97706;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.program-entry h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.program-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.7);
    padding: 1.5rem;
    border-radius: 8px;
}

.program-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.program-details strong {
    font-weight: 600;
    color: #1f2937;
    display: inline-block;
    min-width: 80px;
}

.program-details a {
    color: #2563eb;
    text-decoration: none;
}

.program-details a:hover {
    text-decoration: underline;
}

.program-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4b5563;
    font-style: italic;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

/* Emerging Varsity Section */
.emerging-varsity {
    padding: 4rem 0;
}

/* Club Programs Section */
.club-programs {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 4px solid #2563eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.program-card.club {
    border-top-color: #7c3aed;
}

.program-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.program-card p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.program-card strong {
    font-weight: 600;
    color: #374151;
}

/* Recreation Programs Section */
.recreation-programs {
    padding: 4rem 0;
}

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

.recreation-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #06b6d4;
}

.recreation-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.recreation-item p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Regional Breakdown Section */
.regional-breakdown {
    background-color: #f8fafc;
    padding: 4rem 0;
}

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

.region-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.region-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.region-card p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #6b7280;
}

.region-card p strong {
    color: #374151;
    font-weight: 600;
}

.region-card ul {
    list-style: none;
    margin-top: 1rem;
}

.region-card li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.region-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Starting Program Section */
.starting-program {
    padding: 4rem 0;
}

.startup-info {
    max-width: 800px;
    margin: 0 auto;
}

.startup-info > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #6b7280;
}

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

.step {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border-top: 4px solid #2563eb;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.step p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
}

.startup-tips {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #059669;
}

.startup-tips h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.startup-tips ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.startup-tips li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Mobile Responsiveness for Programs Page */
@media (max-width: 768px) {
    .program-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .progression-steps {
        grid-template-columns: 1fr;
    }
    
    .recreation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .program-entry {
        padding: 1.5rem;
    }
    
    .program-card {
        padding: 1.5rem;
    }
    
    .region-card {
        padding: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
}


/* Scholarships Page Specific Styles */

/* Scholarship Reality Section */
.scholarship-reality .reality-content {
    max-width: 1000px;
    margin: 0 auto;
}

.reality-intro {
    font-size: 1.2rem;
    text-align: center;
    color: #dc2626;
    font-weight: 500;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #fef2f2;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

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

.fact-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 4px solid #f59e0b;
}

.fact-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.fact-box p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.fact-box strong {
    font-weight: 600;
    color: #374151;
}

/* Athletic Scholarships Section */
.athletic-scholarships {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.scholarship-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.scholarship-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    border-left: 6px solid #059669;
    position: relative;
    overflow: hidden;
}

.scholarship-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 0 0 0 60px;
}

.scholarship-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.scholarship-details {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.scholarship-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.scholarship-details strong {
    font-weight: 600;
    color: #374151;
    display: inline-block;
    min-width: 100px;
}

.scholarship-details a {
    color: #2563eb;
    text-decoration: none;
}

.scholarship-details a:hover {
    text-decoration: underline;
}

.scholarship-notes {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.scholarship-notes h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 0.5rem;
}

.scholarship-notes ul {
    list-style: none;
    margin-left: 0;
}

.scholarship-notes li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
}

.scholarship-notes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Other Opportunities Section */
.other-opportunities {
    padding: 4rem 0;
}

.opportunity-category {
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.opportunity-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.opportunity-list {
    display: grid;
    gap: 1.5rem;
}

.opportunity-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #7c3aed;
}

.opportunity-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.opportunity-item p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.opportunity-item strong {
    font-weight: 600;
    color: #374151;
}

.opportunity-item a {
    color: #2563eb;
    text-decoration: none;
}

.opportunity-item a:hover {
    text-decoration: underline;
}

.opportunity-description {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.opportunity-description p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.opportunity-description ul {
    list-style-position: inside;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.opportunity-description li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.opportunity-description em {
    font-style: italic;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Application Advice Section */
.application-advice {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.advice-section {
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.advice-section h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.advice-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.advice-content ul {
    list-style: none;
    margin-left: 0;
}

.advice-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    background: white;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    padding: 0.75rem 0.75rem 0.75rem 2rem;
}

.advice-content li::before {
    content: "→";
    position: absolute;
    left: 0.5rem;
    color: #2563eb;
    font-weight: bold;
}

/* Realistic Expectations Section */
.realistic-expectations {
    padding: 4rem 0;
}

.expectations-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expectation-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.expectation-box:nth-child(1) {
    border-top: 4px solid #dc2626;
}

.expectation-box:nth-child(2) {
    border-top: 4px solid #059669;
}

.expectation-box:nth-child(3) {
    border-top: 4px solid #2563eb;
}

.expectation-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.expectation-box ul {
    list-style: none;
    margin-left: 0;
}

.expectation-box li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
}

.expectation-box:nth-child(1) li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #dc2626;
}

.expectation-box:nth-child(2) li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
}

.expectation-box:nth-child(3) li::before {
    content: "📈";
    position: absolute;
    left: 0;
}

/* Next Steps Section */
.next-steps {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.steps-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    border-top: 4px solid #2563eb;
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6b7280;
}

/* Mobile Responsiveness for Scholarships Page */
@media (max-width: 768px) {
    .scholarship-programs {
        grid-template-columns: 1fr;
    }
    
    .reality-facts {
        grid-template-columns: 1fr;
    }
    
    .advice-content {
        grid-template-columns: 1fr;
    }
    
    .expectations-content {
        grid-template-columns: 1fr;
    }
    
    .steps-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .scholarship-card {
        padding: 1.5rem;
    }
    
    .opportunity-item {
        padding: 1.5rem;
    }
    
    .expectation-box {
        padding: 1.5rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
}


/* Resources Page Specific Styles */

/* Official Organizations Section */
.official-organizations {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.org-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.org-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    border-top: 6px solid #2563eb;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.org-card:nth-child(2) {
    border-top-color: #7c3aed;
}

.org-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.org-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.org-details {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e5e7eb;
}

.org-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.org-details strong {
    font-weight: 600;
    color: #374151;
    display: inline-block;
    min-width: 120px;
}

.org-details a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.org-details a:hover {
    text-decoration: underline;
}

/* Varsity Program Contacts Section */
.varsity-program-contacts {
    padding: 4rem 0;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 6px solid #059669;
    position: relative;
}

.contact-card::before {
    content: '📞';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}

.contact-info {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info strong {
    font-weight: 600;
    color: #374151;
    display: inline-block;
    min-width: 140px;
}

.contact-info a {
    color: #2563eb;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

/* Tournament Resources Section */
.tournament-resources {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.tournament-info {
    max-width: 1000px;
    margin: 0 auto;
}

.tournament-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #f59e0b;
}

.tournament-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.tournament-section h3::before {
    content: '🏆';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.tournament-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 1rem;
}

.tournament-section ul {
    list-style: none;
    margin-left: 0;
}

.tournament-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tournament-section li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-size: 0.8rem;
}

.tournament-section strong {
    font-weight: 600;
    color: #374151;
}

/* Equipment Resources Section */
.equipment-resources {
    padding: 4rem 0;
}

.equipment-info {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.equipment-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #06b6d4;
}

.equipment-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.equipment-section h3::before {
    content: '🏓';
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.equipment-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 1rem;
}

.equipment-section ul {
    list-style: none;
    margin-left: 0;
}

.equipment-section li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
}

.equipment-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: bold;
}

.equipment-section strong {
    font-weight: 600;
    color: #374151;
}

.equipment-section em {
    font-style: italic;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Campus Recreation Section */
.campus-recreation {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.recreation-info {
    max-width: 1000px;
    margin: 0 auto;
}

.recreation-info > p {
    font-size: 1.1rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #8b5cf6;
    position: relative;
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6b7280;
}

.recreation-examples {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #10b981;
}

.recreation-examples h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.recreation-examples ul {
    list-style: none;
    margin-left: 0;
}

.recreation-examples li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.recreation-examples li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.recreation-examples strong {
    font-weight: 600;
    color: #374151;
}

/* Funding Resources Section */
.funding-resources {
    padding: 4rem 0;
}

.funding-info {
    max-width: 1000px;
    margin: 0 auto;
}

.funding-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #dc2626;
}

.funding-category:nth-child(2) {
    border-left-color: #059669;
}

.funding-category:nth-child(3) {
    border-left-color: #2563eb;
}

.funding-category h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.funding-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.funding-details strong {
    font-weight: 600;
    color: #374151;
}

.funding-details a {
    color: #2563eb;
    text-decoration: none;
}

.funding-details a:hover {
    text-decoration: underline;
}

.funding-details ul {
    list-style-position: inside;
    margin-left: 1rem;
    margin-top: 1rem;
}

.funding-details li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Coaching Resources Section */
.coaching-resources {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.coaching-info {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.coaching-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 4px solid #f59e0b;
}

.coaching-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.coaching-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 1rem;
}

.coaching-section ul {
    list-style: none;
    margin-left: 0;
}

.coaching-section li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
}

.coaching-section li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

.coaching-section strong {
    font-weight: 600;
    color: #374151;
}

.coaching-section a {
    color: #2563eb;
    text-decoration: none;
}

.coaching-section a:hover {
    text-decoration: underline;
}

/* Useful Links Section */
.useful-links {
    padding: 4rem 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.link-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #6366f1;
}

.link-category:nth-child(2) {
    border-top-color: #059669;
}

.link-category:nth-child(3) {
    border-top-color: #dc2626;
}

.link-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.link-category ul {
    list-style: none;
    margin-left: 0;
}

.link-category li {
    margin-bottom: 0.5rem;
}

.link-category a {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.link-category a:hover {
    border-bottom-color: #2563eb;
}

/* Mobile Responsiveness for Resources Page */
@media (max-width: 768px) {
    .org-list {
        grid-template-columns: 1fr;
    }
    
    .contact-list {
        grid-template-columns: 1fr;
    }
    
    .equipment-info {
        grid-template-columns: 1fr;
    }
    
    .recreation-steps {
        grid-template-columns: 1fr;
    }
    
    .coaching-info {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .org-card {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .tournament-section {
        padding: 1.5rem;
    }
    
    .equipment-section {
        padding: 1.5rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .funding-category {
        padding: 1.5rem;
    }
    
    .coaching-section {
        padding: 1.5rem;
    }
    
    .link-category {
        padding: 1.5rem;
    }
}

