/* YA4M monetization feature start - Learn With Us page styles */

.learn-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    padding: 12rem 10% 6rem;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.learn-section {
    padding: 6rem 10%;
    min-height: auto;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
}

.offering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offering-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.offering-icon {
    font-size: 4rem;
    color: var(--yellow);
    margin-bottom: 2rem;
}

.offering-card h3 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    min-height: 70px;
}

.offering-duration {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 1rem;
}

.offering-duration i {
    color: var(--yellow);
    margin-right: 0.5rem;
}

.offering-audience {
    font-size: 1.5rem;
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

.offering-description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    text-align: left;
}

.offering-price {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
}

.price-label {
    font-size: 1.4rem;
    color: #999;
    display: block;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--yellow);
}

.btn-primary {
    background: var(--yellow);
    color: #333;
    border: 0.2rem solid var(--yellow);
    padding: 1.2rem 4rem;
    font-size: 1.8rem;
    border-radius: 5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: 1rem;
}

.btn-primary:hover {
    background: transparent;
    color: var(--yellow);
}

.how-it-works {
    padding: 6rem 10%;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.step-card {
    background: #fff;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 auto 2rem;
}

.step-card h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.step-card p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #666;
}

.contact-cta {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta p {
    font-size: 1.8rem;
    color: #333;
}

.contact-cta a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
}

.contact-cta a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .learn-hero {
        padding: 10rem 5% 4rem;
    }
    
    .learn-section {
        padding: 4rem 5%;
    }
    
    .offering-grid {
        grid-template-columns: 1fr;
    }
    
    .offering-card {
        padding: 2rem;
    }
    
    .offering-card h3 {
        min-height: auto;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* YA4M monetization feature end */

