/* ========================================
   Partner Page Base Styles
   ======================================== */
.partner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.section-subheading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* ========================================
   Intro Section
   ======================================== */
.partner-intro-section {
    padding: 4rem 0;
    background-color: #fff;
}

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

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

/* ========================================
   Program Opportunities Grid (3 Cards)
   ======================================== */
.program-opportunities {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

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

.opportunity-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.opp-icon {
    width: 80px;
    height: 80px;
    background: #eefbff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.opportunity-card h3 {
    font-size: 1.5rem;
    color: #1c365b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.opportunity-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    text-align: justify;
}

/* ========================================
   Why Partner Section (6 Cards)
   ======================================== */
.why-partner-section {
    padding: 5rem 0;
    background-color: #fff;
}

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

.benefit-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    background-color: #f0faff;
    border-color: #03b9e2;
}

.benefit-icon {
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.2rem;
    color: #1c365b;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* ========================================
   Closing Strip
   ======================================== */
.closing-strip {
    background: linear-gradient(135deg, #1c365b 0%, #03b9e2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.closing-strip h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.closing-strip p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {

    .opportunities-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.6rem;
    }

    .opportunities-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .closing-strip h2 {
        font-size: 1.8rem;
    }

    .partner-intro-section {
        padding: 3rem 0;
    }

    .intro-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .opportunity-card {
        padding: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }
}