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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-weight: 700;
    font-size: 24px;
    color: #E67E22;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #E67E22;
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E67E22, #F39C12);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    order: -1;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-btn {
    background: #2E3B82;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: #1E2A72;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid #2E3B82;
    color: #2E3B82;
}

.cta-btn.secondary:hover {
    background: #2E3B82;
    color: white;
}

/* Investing Section */
.investing {
    padding: 80px 0;
    background: #fff;
}

.investing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.investing-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2E3B82;
    margin-bottom: 10px;
}

.underline {
    width: 60px;
    height: 4px;
    background: #2E3B82;
    margin-bottom: 30px;
}

.investing-text p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #333;
}

.investing-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.investing-text li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.investing-text li::before {
    content: "•";
    color: #E67E22;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.investing-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.investing-image {
    position: relative;
}

.investing-image img {
    width: 100%;
    border-radius: 10px;
}

.investing-card {
    background: #2E3B82;
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.investing-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.investing-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background: #f0f2f5;
    padding: 80px 0;
    text-align: center;
}

.stats h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2E3B82;
    margin-bottom: 10px;
}

.stats .underline {
    margin: 10px auto 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2E3B82;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 16px;
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background: white;
}

.courses h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2E3B82;
    margin-bottom: 10px;
}

.courses .underline {
    margin: 10px auto 50px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.course-card.large {
    grid-column: span 1;
}

.course-card:nth-child(4) {
    grid-column: 1 / span 2;
}

.course-card:nth-child(5) {
    grid-column: 3 / span 1;
}

.course-image {
    position: relative;
    height: 200px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-content {
    padding: 25px;
}

.course-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.course-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.course-price {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.course-btn {
    background: #2E3B82;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
}

.course-btn:hover {
    background: #1E2A72;
}

/* Testimonials Section */
.testimonials {
    background: #f0f2f5;
    padding: 80px 0;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.testimonials-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.testimonials-image img {
    width: 100%;
    border-radius: 15px;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2E3B82;
    cursor: pointer;
}

.video-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: white;
    font-size: 14px;
}

.video-duration {
    background: rgba(0,0,0,0.7);
    padding: 5px 10px;
    border-radius: 15px;
    margin-bottom: 5px;
}

.video-date {
    background: rgba(0,0,0,0.7);
    padding: 5px 10px;
    border-radius: 15px;
}

.testimonials-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2E3B82;
    margin-bottom: 10px;
}

.testimonials-text .underline {
    margin-bottom: 40px;
}

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

.testimonial {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stars {
    color: #F39C12;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2E3B82;
}

.testimonial p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    font-style: italic;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #E67E22, #F39C12);
    color: white;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-form h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form > p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: rgba(255,255,255,0.9);
    color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.contact-image img {
    width: 100%;
    border-radius: 15px;
}

/* Footer */
.footer {
    background: #2E3B82;
    color: white;
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    font-weight: 700;
    font-size: 20px;
    color: #E67E22;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #E67E22;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: #ccc;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    background: white;
    padding: 30px;
    margin: 20px;
    border-radius: 15px;
    max-width: 500px;
    margin: 20px auto;
    text-align: center;
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2E3B82;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cookie-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.cookie-btn.accept {
    background: #2E3B82;
    color: white;
}

.cookie-btn.accept:hover {
    background: #1E2A72;
}

.cookie-btn.decline {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.cookie-btn.decline:hover {
    background: #f5f5f5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .course-card:nth-child(4),
    .course-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image {
        order: 0;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .investing-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .course-card:nth-child(4),
    .course-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .cookie-content {
        margin: 10px;
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .investing, .stats, .courses, .testimonials, .contact {
        padding: 60px 0;
    }
    
    .investing-text h2,
    .stats h2,
    .courses h2,
    .testimonials-text h2,
    .contact-form h2 {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .cookie-content h3 {
        font-size: 18px;
    }
    
    .cookie-content p {
        font-size: 13px;
    }
    
    .course-content {
        padding: 20px;
    }
    
    .testimonial {
        padding: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Success Page Styles */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E67E22, #F39C12);
    color: white;
    text-align: center;
    padding: 20px;
}

.success-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.success-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.success-content .cta-btn {
    background: white;
    color: #E67E22;
}

.success-content .cta-btn:hover {
    background: #f5f5f5;
}