body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .hero {
            background: linear-gradient(90deg, #4e73df 0%, #1cc88a 100%);
            color: #fff;
            padding: 80px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
        }
        .hero p {
            font-size: 1.2rem;
            margin-top: 20px;
        }
        .section {
            padding: 60px 0;
        }
        .section h2 {
            font-weight: 700;
            margin-bottom: 30px;
            color: #2c3e50;
        }
        .icon-list {
            list-style: none;
            padding: 0;
        }
        .icon-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-size: 1rem;
        }
        .icon-list li::before {
            content: "➤";
            position: absolute;
            left: 0;
            color: #1cc88a;
        }
        .highlight {
            background-color: #e9f7ef;
            padding: 20px;
            border-left: 5px solid #1cc88a;
            margin-bottom: 20px;
            border-radius: 5px;
        }