  body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            background-color: #ffffff;
            color: #333;
        }
        header {
            background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e') center/cover no-repeat;
            color: white;
            padding: 80px 20px;
            text-align: center;
            position: relative;
        }
        header::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5);
        }
        header h1, header p {
            position: relative;
            z-index: 1;
        }
        header h1 {
            margin: 0;
            font-size: 3rem;
            font-weight: 700;
        }
        header p {
            font-size: 1.2rem;
            margin-top: 10px;
        }
        main {
            max-width: 1100px;
            margin: -50px auto 40px auto;
            padding: 40px;
            background: white;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 20px;
        }
        section {
            margin-bottom: 40px;
        }
        section h2 {
            color: #0b3d91;
            font-size: 1.8rem;
            position: relative;
        }
        section h2::before {
            content: '';
            position: absolute;
            width: 50px;
            height: 4px;
            background: #f4b400;
            bottom: -8px;
            left: 0;
        }
        ul {
            list-style: none;
            padding: 0;
        }
        ul li {
            background: #f9fafb;
            margin-bottom: 12px;
            padding: 15px 20px;
            border-left: 5px solid #0b3d91;
            border-radius: 8px;
        }
        .cta {
            text-align: center;
            margin-top: 30px;
        }
        .cta a {
            display: inline-block;
            background: linear-gradient(135deg, #0b3d91, #062b63);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
        }
        .cta a:hover {
            background: #0a1b99;
            color: white;
        }