/* Grounded Soles Foundation - Website Styles */

:root {
    --navy: #2C3E6F;
    --teal: #4ECDC4;
    --gold: #FFD93D;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --font-display: 'Darker Grotesque', sans-serif;
    --font-body: 'Public Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Urgent Banner */
.urgent-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 12px 0;
    position: relative;
    z-index: 100;
}

.urgent-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.urgent-icon {
    font-size: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.urgent-text {
    font-weight: 600;
    font-size: 15px;
}

.urgent-link {
    color: white;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.3s;
}

.urgent-link:hover {
    opacity: 0.8;
}

.urgent-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
    line-height: 1;
}

/* Navigation */
.nav {
    background: var(--navy);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2847 100%);
    color: white;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(78, 205, 196, 0.1) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--teal);
    color: white;
}

.btn-primary:hover {
    background: #3db4ad;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--navy);
}

/* Ensure visibility on dark backgrounds */
.partner-cta .btn-secondary,
.cta .btn-secondary {
    background: white;
    color: var(--navy);
    border: 2px solid white;
}

.partner-cta .btn-secondary:hover,
.cta .btn-secondary:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-dark {
    background-color: #2C3E6F;
    color: #ffffff !important;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-secondary-dark:hover {
    background-color: #1a2847;
    color: #ffffff !important;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Stats Section */
.stats {
    background: var(--light-bg);
    padding: 60px 20px;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-note {
    font-size: 14px;
    color: var(--text-light);
}

/* Launch Appeal Section */
.launch-appeal {
    padding: 80px 20px;
    background: white;
}

.appeal-header {
    text-align: center;
    margin-bottom: 20px;
}

.appeal-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.appeal-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 20px;
}

.appeal-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-dark);
}

.partnership-need {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    border-left: 4px solid var(--gold);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.partnership-need h4 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 20px;
}

.need-details {
    display: grid;
    gap: 15px;
}

.detail-item {
    font-size: 16px;
    line-height: 1.6;
}

.detail-item strong {
    color: var(--navy);
}

.appeal-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.partnership-formula {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.formula-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.formula-icon {
    font-size: 40px;
}

.formula-text {
    font-weight: 600;
    color: var(--navy);
}

.formula-plus,
.formula-equals {
    font-size: 32px;
    font-weight: 700;
    color: var(--teal);
}

/* Sections */
.mission,
.impact-flow,
.cta {
    padding: 80px 20px;
}

.mission {
    background: white;
}

.impact-flow {
    background: var(--light-bg);
}

.cta {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2847 100%);
    color: white;
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--navy);
}

.cta .section-title {
    color: white;
}

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

.mission-intro,
.section-intro {
    text-align: left;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-dark);
    line-height: 1.8;
}.mission h2 {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px;
}


.section-intro.centered-intro {
    text-align: center;
}

.cta p {
    color: white;
    opacity: 0.9;
}

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

.mission-card {
    text-align: center;
    padding: 30px;
}

.mission-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 15px;
}

/* Impact Flow */
.flow-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 50px;
}

.flow-step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--teal);
    margin-bottom: 15px;
}

.flow-step h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-arrow {
    font-size: 32px;
    color: var(--teal);
    margin: 20px 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.donation-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: center;
}

.donation-note a {
    color: var(--teal);
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2847 100%);
    color: white;
    padding: 120px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* Help Grid */
.help-ways {
    padding: 80px 20px;
    background: white;
}

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

.help-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.help-card h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 15px;
}

.help-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

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

/* Donate Section */
.donate-section {
    padding: 80px 20px;
    background: white;
}

.donation-info-box {
    background: linear-gradient(135deg, #e8f5f4 0%, #d4ebe9 100%);
    border-left: 4px solid var(--teal);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.donation-info-box h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 15px;
}

.donation-info-box p {
    font-size: 18px;
    margin-bottom: 25px;
}

.impact-breakdown {
    margin-top: 60px;
}

.impact-breakdown h3 {
    text-align: center;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 40px;
}

.impact-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.impact-example {
    text-align: center;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 8px;
}

.impact-amount {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--teal);
    margin-bottom: 10px;
}

/* Donate Shoes Section */
.donate-shoes-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.amazon-donation-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4d4 100%);
    border-left: 4px solid var(--gold);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.amazon-donation-box h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 15px;
}

.amazon-donation-box p {
    font-size: 18px;
    margin-bottom: 25px;
}

.physical-donation-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.physical-donation-info h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 15px;
}

.email-link {
    color: var(--teal);
    font-weight: 600;
    font-size: 18px;
}

.shoes-guidelines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.guidelines-col h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 20px;
}

.guidelines-list {
    list-style: none;
}

.guidelines-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

/* Volunteer Section */
.volunteer-section {
    padding: 80px 20px;
    background: white;
}

.volunteer-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.role-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.role-card h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 15px;
}

.role-card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.role-card li {
    margin-bottom: 10px;
}

.volunteer-cta-box {
    background: linear-gradient(135deg, #e8f5f4 0%, #d4ebe9 100%);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.volunteer-cta-box h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 15px;
}

/* Why Partner Section - 2x2 Grid */
.why-partner {
    padding: 80px 20px;
    background: white;
}

.why-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

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

.why-card h3 {
    color: #2C3E6F;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.why-card p {
    color: #555;
    line-height: 1.6;
}

/* Partnership Types - 3x2 Grid */
.partnership-types {
    padding: 80px 20px;
    background: var(--light-bg);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.partnership-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.partnership-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.partnership-card h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 10px;
}

.partnership-card p {
    margin-bottom: 15px;
}

.partnership-card ul {
    padding-left: 20px;
}

.partnership-card li {
    margin-bottom: 10px;
}

/* Sponsorship Tiers - 2x2 Grid */
.sponsorship-tiers {
    padding: 80px 20px;
    background: white;
}

.tiers-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.tier-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--teal);
}

.tier-card h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 15px;
}

.tier-amount {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--teal);
    margin-bottom: 20px;
}

.tier-benefits {
    list-style: none;
}

.tier-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.tier-benefits li:before {
    content: "✓ ";
    color: var(--teal);
    font-weight: bold;
}

.tier-note {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-top: 30px;
}

/* Partner CTA */
.partner-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2847 100%);
    color: white;
    text-align: center;
}

.partner-cta .section-title {
    color: white;
}

.partner-cta .section-intro {
    color: white;
}

/* Footer */
.footer {
    background: var(--navy);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-legal {
    font-size: 14px;
    opacity: 0.7;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .flow-timeline {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .cta-buttons,
    .appeal-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .why-grid-2x2,
    .tiers-grid-2x2,
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
}

/* Request Assistance Box Styling */
.request-assistance-box {
    background: #F8F9FA;
    border: 2px solid #E1E4E8;
    border-radius: 12px;
    padding: 40px;
    margin-top: 0;
}

.request-assistance-box h2 {
    color: var(--navy);
    margin-bottom: 15px;
    font-family: var(--font-display);
    font-size: 32px;
}

/* Outline Button for CTA Section */
.btn-large-outline {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-large-outline:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 111, 0.3);
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-buttons .btn-large {
    background: var(--teal);
    color: white;
    border: none;
}

.cta-buttons .btn-large:hover {
    background: #3FDBCC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}
/* Founding Partner Banner */
.founding-partner-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    border-bottom: 3px solid var(--teal);
}

.partner-banner-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founding-partner-banner h2 {
    font-family: var(--font-display);
    font-size: 32px; /* Changed from 36px */
    color: var(--navy);
    margin-bottom: 40px;
}
.partner-showcase {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.partner-description h3 {
    font-size: 24px; /* Changed from 28px */
    color: var(--navy);
    margin-bottom: 15px;
}


.partner-logo-container {
    flex: 0 0 250px;
}

.founding-partner-logo {
    max-width: 100%;
    height: auto;
}

.partner-description {
    flex: 1;
    text-align: left;
}

.partner-description h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 15px;
}

.partner-description p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.partner-website-link {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

.partner-website-link:hover {
    text-decoration: underline;
}

/* Mobile responsiveness for founding partner */
@media (max-width: 768px) {
    .founding-partner-banner .partner-showcase {
    flex-direction: column;
    text-align: center;
    padding: 80px 60px; 
}
    
    .founding-partner-banner .partner-description {
        text-align: center;
    }
    
    .founding-partner-banner .partner-logo-container {
    flex: 0 0 auto;
    max-width: 180px !important;
    width: 180px !important;
}

.founding-partner-banner .founding-partner-logo {
    max-width: 180px !important;
    width: 180px !important;
    height: auto !important;
}
}
    
    /* Founder Story Section */
.founder-section {
    padding: 80px 20px;
    background: white;
}

.founder-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image-side {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.founder-text {
    flex: 1;
}

.founder-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .founder-content {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-image-side {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }
    /* Volunteer Intro Section */
.volunteer-intro-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.volunteer-intro-section .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}
.board-opportunities-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4d4 100%);
    border-left: 4px solid var(--gold);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.board-opportunities-box h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 15px;
}