/* Beginners Page Specific Styles */

/* Beginners Hero Section */
.beginners-hero {
    background: linear-gradient(135deg, #a0ff00 0%, #7dd300 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.beginners-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.beginners-hero-content {
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.beginners-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.beginners-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.beginners-hero-cta {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.beginners-hero-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Beginners Stats */
.beginners-stats {
    background: #fff;
    padding: 4rem 0;
}

.beginners-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* All in One Section */
.all-in-one {
    background: #fff;
    padding: 4rem 0;
}

.all-in-one-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.all-in-one-label {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.all-in-one-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.all-in-one-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.all-in-one-cta {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.all-in-one-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Benefits Grid */
.benefits-grid {
    background: #fff;
    padding: 4rem 0;
}

.benefits-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #a0ff00;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

/* Expert Help Section */
.expert-help {
    background: #f8f9fa;
    padding: 4rem 0;
}

.expert-help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.expert-help-header {
    text-align: center;
    margin-bottom: 3rem;
}

.expert-help-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.expert-help-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.expert-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.expert-image {
    flex-shrink: 0;
}

.expert-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.expert-info {
    flex: 1;
}

.expert-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.expert-title {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.expert-course {
    font-size: 1.3rem;
    font-weight: 600;
    color: #a0ff00;
}

/* Beginners Features */
.beginners-features {
    background: #fff;
    padding: 4rem 0;
}

.beginners-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Suppliers Section */
.top-suppliers {
    background: #f8f9fa;
    padding: 4rem 0;
}

.top-suppliers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.top-suppliers-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #000;
}

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

.supplier-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.supplier-card:hover {
    transform: translateY(-5px);
}

.supplier-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #a0ff00;
}

.supplier-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.supplier-description {
    color: #666;
    line-height: 1.6;
}

.suppliers-note {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.suppliers-cta {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suppliers-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Expert Support Section */
.expert-support {
    background: #fff;
    padding: 4rem 0;
}

.expert-support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.expert-support-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #000;
}

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

.support-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #a0ff00;
}

.support-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.support-description {
    color: #666;
    line-height: 1.6;
}

.support-note {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.support-cta {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Beginners Testimonials */
.beginners-testimonials {
    background: #f8f9fa;
    padding: 4rem 0;
}

.beginners-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.beginners-testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}

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

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.testimonial-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Active Navigation Link */
.nav-link.active {
    color: #a0ff00;
    font-weight: 600;
}

/* Responsive Design for Beginners Page */
@media (max-width: 1024px) {
    .beginners-hero-title {
        font-size: 2.5rem;
    }
    
    .beginners-stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .expert-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .suppliers-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .beginners-hero-title {
        font-size: 2rem;
    }
    
    .beginners-hero-description {
        font-size: 1rem;
    }
    
    .all-in-one-title,
    .expert-help-title,
    .top-suppliers-title,
    .expert-support-title,
    .beginners-testimonials-title {
        font-size: 2rem;
    }
    
    .benefits-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expert-profile {
        padding: 1.5rem;
    }
    
    .expert-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .beginners-hero-title {
        font-size: 1.8rem;
    }
    
    .benefits-grid-container {
        grid-template-columns: 1fr;
    }
    
    .beginners-hero-cta,
    .all-in-one-cta,
    .suppliers-cta,
    .support-cta {
        width: 100%;
    }
    
    .expert-profile {
        padding: 1rem;
    }
    
    .expert-img {
        width: 100px;
        height: 100px;
    }
}
