<div class=”caselab-site-container”>
    <style>
        @import url(‘https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap’);
        .caselab-site-container {
            font-family: ‘Inter’, sans-serif;
            color: #333;
            line-height: 1.6;
            background: #fff;
            margin: 0;
            padding: 0;
        }
        /* Hero */
        .header-hero {
            background: linear-gradient(135deg, #1A4B84 0%, #27AE60 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }
        .header-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin: 0; font-weight: 800; }
        .header-hero p { font-size: 1.2rem; margin: 20px 0; opacity: 0.9; }
        .btn-box { display: flex; justify-content: center; gap: 15px; margin-top: 30px; flex-wrap: wrap; }
        .btn-cl {
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
        }
        .btn-white { background: white; color: #1A4B84; }
        .btn-outline { border: 2px solid white; color: white; }
        .btn-cl:hover { transform: scale(1.05); }
        /* Sections */
        .section-cl { padding: 60px 10%; max-width: 1200px; margin: 0 auto; }
        .title-cl { text-align: center; color: #1A4B84; font-size: 2rem; margin-bottom: 40px; }
        .grid-cl {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        .card-cl {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            border-top: 5px solid #27AE60;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        /* Tracks */
        .track-box {
            background: #1A4B84;
            color: white;
            padding: 25px;
            border-radius: 10px;
        }
        .track-box h3 { color: #27AE60; margin-top: 0; }
        /* FAQ */
        details { background: #fff; border: 1px solid #ddd; margin-bottom: 10px; border-radius: 5px; }
        summary { padding: 15px; font-weight: bold; cursor: pointer; color: #1A4B84; }
        .faq-content { padding: 15px; border-top: 1px solid #ddd; background: #fafafa; }
        footer { background: #1A4B84; color: white; text-align: center; padding: 40px; margin-top: 50px; }
    </style>
    <header class=”header-hero”>
        <h1>CASELAB 2026</h1>
        <p>CUỘC THI VIẾT TÌNH HUỐNG THỰC TIỄN VỀ DOANH NGHIỆP BỀN VỮNG</p>
        <div class=”btn-box”>
            <a href=”#” class=”btn-cl btn-white”>ĐĂNG KÝ NGAY</a>
            <a href=”#” class=”btn-cl btn-outline”>TẢI HƯỚNG DẪN</a>
        </div>
    </header>
    <section class=”section-cl”>
        <h2 class=”title-cl”>Về Chúng Tôi</h2>
        <div class=”grid-cl”>
            <div class=”card-cl”>
                <h3>Caselab là gì?</h3>
                <p>Cuộc thi học thuật định kỳ 2 năm/lần. Tập trung vào thực tiễn ra quyết định và các đánh đổi (trade-offs) trong chiến lược bền vững.</p>
            </div>
            <div class=”card-cl”>
                <h3>Đối tượng</h3>
                <p>Sinh viên đại học tại Việt Nam quan tâm đến Doanh nghiệp bền vững, Doanh nghiệp xã hội và Đổi mới sáng tạo.</p>
            </div>
        </div>
    </section>
    <section class=”section-cl” style=”background: #f0f4f7;”>
        <h2 class=”title-cl”>Các Track Dự Thi</h2>
        <div class=”grid-cl”>
            <div class=”track-box”>
                <h3>Track 1</h3>
                <p>Doanh nghiệp Xã hội: Cân bằng giữa tác động xã hội và tài chính.</p>
            </div>
            <div class=”track-box”>
                <h3>Track 2</h3>
                <p>Kinh tế Tuần hoàn: Năng lượng tái tạo và quản lý chất thải.</p>
            </div>
            <div class=”track-box”>
                <h3>Track 3</h3>
                <p>Tiêu dùng Bền vững: Thay đổi hành vi và lối sống xanh.</p>
            </div>
        </div>
    </section>
    <section class=”section-cl”>
        <h2 class=”title-cl”>Câu hỏi thường gặp (FAQs)</h2>
        <details>
            <summary>Tôi có thể tham gia cá nhân không?</summary>
            <div class=”faq-content”>Có. Bạn có thể tham gia cá nhân hoặc theo nhóm.</div>
        </details>
        <details>
            <summary>Ngôn ngữ bài viết là gì?</summary>
            <div class=”faq-content”>Bài viết trình bày bằng Tiếng Việt.</div>
        </details>
        <details>
            <summary>Nếu chưa có doanh nghiệp thì sao?</summary>
            <div class=”faq-content”>BTC sẽ hỗ trợ kết nối bạn với mạng lưới doanh nghiệp đối tác.</div>
        </details>
    </section>
    <footer>
        <p>&copy; 2026 CASELAB – Vietnam Sustainable Business Case Competition</p>
    </footer>
</div>