/* Partner Info Page Styles */

/* Hero Section */
.partner-hero {
	margin-top: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.partner-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    font-size: 18px;
    padding: 15px 35px;
}

/* Benefits Section */
.benefits-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Earn Methods Section */
.earn-methods-section {
    background: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.earn-methods-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.methods-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.method-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.method-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

.method-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.how-it-works-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 250px;
    max-width: 320px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 32px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.step-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.step-arrow {
    font-size: 40px;
    color: #667eea;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons .btn-large {
    font-size: 20px;
    padding: 18px 45px;
}

/* Responsive */
@media (max-width: 768px) {
    .partner-hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .benefits-section h2,
    .earn-methods-section h2,
    .how-it-works-section h2 {
        font-size: 28px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .steps-container {
        flex-direction: column;
    }
}