<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Master Your Credit in 2025 | Interactive Credit Repair Course</title>
    <style>
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .hero-section {
            background: linear-gradient(135deg, #00579b, #003366);
            color: white;
            padding: 60px 20px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero-section h1 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        .hero-section p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .cta-button {
            display: inline-block;
            background-color: #ff6b00;
            color: white;
            font-weight: bold;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            background-color: #e55f00;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 60px 0;
        }
        .feature-box {
            flex-basis: 30%;
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .feature-box h3 {
            color: #00579b;
            margin-top: 0;
        }
        .modules {
            margin: 60px 0;
        }
        .module-card {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .module-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .module-card h3 {
            color: #00579b;
            margin-top: 0;
        }
        .module-card .module-number {
            display: inline-block;
            background-color: #00579b;
            color: white;
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            border-radius: 50%;
            margin-right: 10px;
        }
        .testimonials {
            background-color: #f8f9fa;
            padding: 40px;
            border-radius: 8px;
            margin: 60px 0;
        }
        .testimonial {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .testimonial-text {
            font-style: italic;
            font-size: 18px;
            margin-bottom: 20px;
        }
        .testimonial-author {
            font-weight: bold;
        }
        .pricing {
            text-align: center;
            margin: 60px 0;
        }
        .pricing-plans {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        .plan {
            flex-basis: 30%;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px;
            transition: all 0.3s ease;
        }
        .plan:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .plan.featured {
            border-color: #00579b;
            box-shadow: 0 5px 15px rgba(0,87,155,0.2);
            position: relative;
            z-index: 1;
        }
        .plan-name {
            font-size: 24px;
            font-weight: bold;
            color: #00579b;
        }
        .plan-price {
            font-size: 36px;
            margin: 15px 0;
            color: #333;
        }
        .plan-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            text-align: left;
        }
        .plan-features li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        .plan-features li:before {
            content: "✓";
            color: #00579b;
            position: absolute;
            left: 0;
        }
        .faq {
            margin: 60px 0;
        }
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 20px;
        }
        .faq-question {
            font-weight: bold;
            cursor: pointer;
            color: #00579b;
        }
        .faq-answer {
            margin-top: 10px;
            display: none;
        }
        .footer {
            background-color: #003366;
            color: white;
            padding: 40px 20px;
            text-align: center;
            border-radius: 10px;
            margin-top: 60px;
        }
    </style>
</head>
<body>
    <div class="hero-section">
        <h1>Master Your Credit in 2025</h1>
        <p>Learn how to repair your credit using the latest laws, tax credits, and unknown credit hacks to achieve financial freedom.</p>
        <a href="#pricing" class="cta-button">Enroll Now</a>
    </div>

    <div class="features">
        <div class="feature-box">
            <h3>Latest Credit Laws</h3>
            <p>Stay updated with the newest credit regulations and laws that can help boost your score faster in 2025.</p>
        </div>
        <div class="feature-box">
            <h3>Interactive Tools</h3>
            <p>Access custom calculators, dispute letter generators, and credit score simulators to accelerate your progress.</p>
        </div>
        <div class="feature-box">
            <h3>Unknown Credit Hacks</h3>
            <p>Discover insider strategies and lesser-known techniques that can dramatically improve your credit score.</p>
        </div>
        <div class="feature-box">
            <h3>Tax Credit Strategies</h3>
            <p>Learn how to leverage tax credits and refunds to pay down debt and boost your financial position.</p>
        </div>
        <div class="feature-box">
            <h3>Community Support</h3>
            <p>Join our community of credit improvers to share tips, get advice, and stay motivated on your journey.</p>
        </div>
        <div class="feature-box">
            <h3>Expert Guidance</h3>
            <p>Get insights from credit repair professionals with proven track records of helping clients succeed.</p>
        </div>
    </div>

    <div class="modules">
        <h2>Course Curriculum</h2>
        <div class="module-card">
            <h3><span class="module-number">1</span> Understanding Credit in 2025</h3>
            <p>Build a solid foundation of how credit works in 2025, including the latest scoring models and reporting changes.</p>
            <ul>
                <li>What is a Credit Score?</li>
                <li>Credit Reporting Agencies (CRAs)</li>
                <li>New 2025 Credit Laws You Must Know</li>
            </ul>
        </div>
        <div class="module-card">
            <h3><span class="module-number">2</span> Accessing and Understanding Your Credit Report</h3>
            <p>Learn to access, read, and analyze your credit report to identify errors and opportunities.</p>
        </div>
        <div class="module-card">
            <h3><span class="module-number">3</span> Disputing Errors and Removing Negative Items</h3>
            <p>Master the legal strategies to remove inaccurate or negative items from your credit reports.</p>
        </div>
        <div class="module-card">
            <h3><span class="module-number">4</span> Tax Credits & Financial Leverage in 2025</h3>
            <p>Discover how to use tax credits and financial strategies to improve your credit status.</p>
        </div>
        <div class="module-card">
            <h3><span class="module-number">5</span> Credit Utilization Strategies</h3>
            <p>Learn advanced utilization techniques to quickly boost your score by optimizing your credit usage.</p>
        </div>
        <div class="module-card">
            <h3><span class="module-number">6</span> Unknown Credit Hacks for 2025</h3>
            <p>Uncover little-known strategies and insider techniques to accelerate your credit improvement.</p>
        </div>
        <div class="module-card">
            <h3><span class="module-number">7</span> Debt Elimination and Negotiation</h3>
            <p>Master effective strategies for reducing debt and negotiating with creditors.</p>
        </div>
        <div class="module-card">
            <h3><span class="module-number">8</span> Maintaining Good Credit & Long-Term Planning</h3>
            <p>Build habits and systems to maintain excellent credit for life.</p>
        </div>
    </div>

    <div class="testimonials">
        <h2>What Our Students Say</h2>
        <div class="testimonial">
            <p class="testimonial-text">"I raised my credit score by 137 points in just 3 months using the strategies from this course. The dispute letter generator alone was worth the price!"</p>
            <p class="testimonial-author">- Michael D., Course Graduate</p>
        </div>
    </div>

    <div class="pricing" id="pricing">
        <h2>Choose Your Plan</h2>
        <p>Invest in your financial future with our flexible pricing options</p>
        <div class="pricing-plans">
            <div class="plan">
                <div class="plan-name">Basic</div>
                <div class="plan-price">$99</div>
                <p>Access to core modules and basic tools</p>
                <ul class="plan-features">
                    <li>All 8 course modules</li>
                    <li>Basic dispute letters</li>
                    <li>Credit score basics</li>
                    <li>30-day access</li>
                </ul>
                <a href="#" class="cta-button">Get Started</a>
            </div>
            <div class="plan featured">
                <div class="plan-name">Premium</div>
                <div class="plan-price">$199</div>
                <p>Complete tools and templates</p>
                <ul class="plan-features">
                    <li>All 8 course modules</li>
                    <li>Advanced dispute letter generator</li>
                    <li>All interactive calculators</li>
                    <li>Credit utilization optimizer</li>
                    <li>Lifetime access</li>
                    <li>Community forum access</li>
                </ul>
                <a href="#" class="cta-button">Get Started</a>
            </div>
            <div class="plan">
                <div class="plan-name">VIP</div>
                <div class="plan-price">$299</div>
                <p>Everything plus personal guidance</p>
                <ul class="plan-features">
                    <li>All Premium features</li>
                    <li>1-on-1 credit review session</li>
                    <li>Custom credit repair plan</li>
                    <li>Priority support</li>
                    <li>Monthly Q&A sessions</li>
                </ul>
                <a href="#" class="cta-button">Get Started</a>
            </div>
        </div>
    </div>

    <div class="faq">
        <h2>Frequently Asked Questions</h2>
        <div class="faq-item">
            <div class="faq-question">How quickly will I see results?</div>
            <div class="faq-answer">Most students see measurable improvements within 30-60 days of implementing the strategies. However, significant results often take 3-6 months, depending on your unique credit situation.</div>
        </div>
        <div class="faq-item">
            <div class="faq-question">Are the credit repair methods legal?</div>
            <div class="faq-answer">Absolutely. All strategies taught in this course are 100% legal and compliant with current credit laws and regulations. We focus on legitimate methods that leverage your consumer rights.</div>
        </div>
        <div class="faq-item">
            <div class="faq-question">Do I need technical skills to use the interactive tools?</div>
            <div class="faq-answer">No technical skills required. Our interactive tools are user-friendly and come with step-by-step instructions. If you can browse the internet, you can use our tools.</div>
        </div>
        <div class="faq-item">
            <div class="faq-question">How is this course different from free content online?</div>
            <div class="faq-answer">Our course provides structured, actionable strategies specific to 2025's credit landscape, interactive tools you won't find elsewhere, and a supportive community. We focus on implementation, not just information.</div>
        </div>
    </div>

    <div class="footer">
        <p>© 2025 Credit Mastery Course. All rights reserved.</p>
        <p>Questions? Contact us at support@creditmastery.com</p>
    </div>

    <script>
        // Simple FAQ toggle functionality
        document.querySelectorAll('.faq-question').forEach(question => {
            question.addEventListener('click', () => {
                const answer = question.nextElementSibling;
                answer.style.display = answer.style.display === 'block' ? 'none' : 'block';
            });
        });
    </script>
</body>
</html>