/* Partnerships Page Styles */

.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--deep-gold);
}

.page-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.partner-type {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--deep-gold);
}

.partner-type h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--forest-green);
}

.partner-type p {
    line-height: 1.8;
}

.partnership-cta {
    background-color: var(--gray-light);
    padding: 60px;
    border-radius: 12px;
}

.partnership-cta h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.partnership-cta p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}
