/* Partners Page Styles */
.partners-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.partners-hero p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
}

.partner-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -2px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}

.partner-logo-wrapper {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-wrapper {
    background: #f1f5f9;
}

.partner-logo-wrapper img {
    max-height: 90px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover .partner-logo-wrapper img {
    transform: scale(1.08);
}

.partner-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.partner-role {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-desc {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

.partners-disclaimer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #94a3b8;
    width: 100%;
}

/* Opportunities Section */
.partners-opportunities {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    margin-top: 5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.opp-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 3.5rem;
}

.opp-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 1.25rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    border: 1px solid transparent;
    height: 100%;
}

.opp-item:hover {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 15px 25px -5px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.opp-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.opp-item h5 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.opp-item p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}
