/* Opportunity Page Styles */
.opportunity-main {
    margin-top: 80px;
}

.opportunity-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://placeholder-image.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 6rem 1rem;
    text-align: center;
}

.opportunity-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-stories {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.story-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.benefits-section {
    padding: 4rem 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.income-potential {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.level-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.level-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.level-card ul {
    list-style: none;
}

.level-card ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.level-card ul li:before {
    content: '✓';
    color: #3498db;
    position: absolute;
    left: 0;
}

.steps-section {
    padding: 4rem 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.join-cta {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.join-cta .cta-button {
    background-color: #fff;
    color: #3498db;
    margin-top: 1rem;
}

.join-cta .cta-button:hover {
    background-color: #f1f1f1;
}

h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .opportunity-hero h1 {
        font-size: 2rem;
    }
    
    .stories-grid,
    .benefits-grid,
    .levels-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
