.get-involved-hero {
    background: linear-gradient(rgba(5, 116, 220, 0.8), rgba(252, 133, 31, 0.8)), var(--science-blue);
    background-size: cover;
    background-position: center;
    height: auto;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    position: relative;
    padding: 100px 32px 60px 32px;
    margin-bottom: -100px;
    z-index: 10;
    box-sizing: border-box;
}

.get-involved-hero-content {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 32px;
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 11;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.get-involved-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.hero-description p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Partner Types */
.partner-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.partner-types li {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.partner-types li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.partner-types li i {
    font-size: 1.3rem;
    color: var(--chardonnay);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-buttons .btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 0 10px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background-color: var(--science-blue);
    color: var(--text-light);
    border: 2px solid var(--science-blue);
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary:hover {
    background-color: transparent;
    color: var(--science-blue);
}

.cta-buttons .btn-secondary {
    background-color: var(--ecstasy);
    color: var(--text-light);
    border: 2px solid var(--ecstasy);
    transition: all 0.3s ease;
}

.cta-buttons .btn-secondary:hover {
    background-color: transparent;
    color: var(--ecstasy);
}

/* Collaboration section */
.collaboration-section {
    padding: 150px 0 100px 0;
    background: linear-gradient(135deg, var(--geyser) 0%, #ffffff 100%);
    position: relative;
    z-index: 1;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Card Styling */
.collaboration-section .quick-link-image {
    background-color: #0574dc !important;
    transition: all 0.3s ease !important;
}

.collaboration-section .quick-link-content h3 {
    transition: all 0.3s ease !important;
}

/* Card Hover Effects */
.collaboration-section .quick-link-card:hover .quick-link-image {
    background-color: var(--ecstasy) !important;
    transform: scale(1.05);
}

.collaboration-section .quick-link-card:hover .quick-link-content h3 {
    color: var(--ecstasy) !important;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
}

.section-title h2 {
    color: var(--science-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--ecstasy);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.projects-section {
    padding: 80px 0;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    /* Hero Section */
    .get-involved-hero {
        height: 70vh;
        padding-top: 100px;
    }
    
    .get-involved-hero-content {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .get-involved-hero h1 { 
        font-size: 2.5rem; 
    }
    
    .hero-subtitle { 
        font-size: 1.2rem; 
    }
    
    /* Layout Adjustments */
    .partner-types { 
        grid-template-columns: 1fr; 
    }
    
    .cta-buttons { 
        flex-direction: column; 
        align-items: center; 
    }
    
    .cta-buttons .btn { 
        width: 100%; 
        max-width: 300px; 
    }
    
    .collaboration-grid, 
    .info-highlights { 
        grid-template-columns: 1fr; 
    }
}

/* Mobile Devices */
@media screen and (max-width: 480px) {
    .get-involved-hero h1 { 
        font-size: 2rem; 
    }
    
    .collaboration-section { 
        padding: 60px 0; 
    }
    
    .card-content { 
        padding: 30px 20px 25px 20px; 
    }
    
    .info-section { 
        padding: 60px 0; 
    }
}