/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px;
}

.profile-image {
    margin-bottom: 30px;
}

.profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-box {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.cta-text {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: 600;
}

/* Why Course Section */
.why-course {
    background: #f8f9fa;
    padding: 80px 0;
}

.why-course h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.why-course p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: white;
}

.video-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Steps Section */
.steps-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.steps-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.block {
    margin: 60px 0;
    border-radius: 20px;
    padding: 40px;
    color: white;
}

.block-1 {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.block-2 {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.block-3 {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.block-icon {
    font-size: 3rem;
}

.block-title h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.block-title p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.steps-container {
    margin: 40px 0;
}

.step {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Lesson Features */
.lesson-features {
    padding: 80px 0;
    background: white;
}

.lesson-features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature h4 {
    font-size: 1.2rem;
    color: #2c3e50;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b9d);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.bonus-content {
    max-width: 800px;
    margin: 0 auto;
}

.bonus-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.bonus-header h2 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.crown-icon, .gift-icon, .medal-icon {
    font-size: 2.5rem;
}

.bonus-value {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffd700;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 30px auto;
    display: inline-block;
    color: #ffd700;
}

.bonus-details h3 {
    font-size: 2rem;
    margin: 30px 0 15px;
}

.bonus-details h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.bonus-details p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.bonus-features {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.pricing-header {
    margin-bottom: 60px;
}

.limited-offer {
    background: #e74c3c;
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.price-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
}

.regular-price {
    opacity: 0.7;
}

.special-price {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    transform: scale(1.05);
    border: 3px solid #ffd700;
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin: 20px 0;
    color: #ffd700;
}

.price-card p {
    font-size: 1rem;
    opacity: 0.8;
}

.cta-button-container {
    margin-top: 30px;
}

.cta-button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.offer-warning {
    margin: 40px 0;
    font-size: 1.2rem;
    color: #ffd700;
}

.warning-icon {
    margin-right: 10px;
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.check-icon {
    color: #27ae60;
    font-size: 1.2rem;
}

/* Guarantee Section */
.guarantee-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.guarantee-content h3 {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    
    .pricing-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .special-price {
        transform: none;
    }
    
    .features-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .block-header {
        flex-direction: column;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .bonus-header {
        flex-wrap: wrap;
    }
    
    .bonus-header h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

