/* Forex Hero Section */
    .forex-hero {
        padding: 180px 0 120px;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .forex-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .forex-hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
    }

    .hero-badge {
        display: inline-block;
        background: rgba(255, 215, 0, 0.15);
        color: var(--primary);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 32px;
        border: 1px solid rgba(255, 215, 0, 0.3);
    }

    .forex-hero-title {
        font-size: 64px;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 32px;
        color: var(--white);
        letter-spacing: -1px;
    }

    .forex-hero-subtitle {
        font-size: 20px;
        color: var(--gray-300);
        line-height: 1.8;
        margin-bottom: 48px;
    }

    .hero-cta-btn {
        display: inline-block;
        background: var(--primary);
        color: var(--black);
        padding: 18px 48px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid var(--primary);
    }

    .hero-cta-btn:hover {
        background: transparent;
        color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
    }

    /* Content Sections */
    .content-section {
        padding: 30px 0;
    }

    .content-section.white {
        background: var(--white);
    }

    .content-section.gray {
        background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    }

    .section-title {
        font-size: 36px;
        font-weight: 800;
        color: var(--black);
        margin-bottom: 24px;
    }

    .section-divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary) 0%, #f4d03f 100%);
        border: none;
        border-radius: 50px;
        margin: 0 0 32px 0;
    }

    .content-text {
        font-size: 18px;
        color: var(--gray-600);
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 32px 0 0 0;
    }

    .feature-list li {
        font-size: 18px;
        color: var(--gray-600);
        line-height: 1.8;
        margin-bottom: 20px;
        padding-left: 40px;
        position: relative;
    }

    .feature-list li::before {
        content: '●';
        position: absolute;
        left: 0;
        color: var(--primary);
        font-size: 28px;
        line-height: 1.4;
    }

    .feature-list li strong {
        color: var(--black);
        font-weight: 700;
    }

    /* Chart Section */
    .chart-section {
        padding: 80px 0;
        background: var(--white);
    }

    .chart-title {
        text-align: center;
        font-size: 42px;
        font-weight: 800;
        color: var(--black);
        margin-bottom: 60px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .forex-hero {
            padding: 140px 0 80px;
        }

        .forex-hero-title {
            font-size: 36px;
        }

        .forex-hero-subtitle {
            font-size: 17px;
        }

        .content-section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 28px;
        }

        .chart-title {
            font-size: 32px;
            margin-bottom: 40px;
        }

        .chart-section {
            padding: 60px 0;
        }
    }

    @media (max-width: 480px) {
        .forex-hero-title {
            font-size: 28px;
        }

        .section-title {
            font-size: 24px;
        }

        .chart-title {
            font-size: 28px;
        }

        .hero-cta-btn {
            padding: 16px 36px;
            font-size: 16px;
        }
    }
