@charset "UTF-8";
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
			background: #ffc900;
			background-image: repeating-linear-gradient(45deg, #ffc900 0px, #ffc900 40px, #000000 40px, #000000 60px);
			min-height: 100vh;
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 1.5rem;
        }
		.yellow {
			color: #ffc900;;
		}
		.white {
			color: #fff;;
		}
		.white:hover {
			color: #ffc900;
		}
        .card {
            max-width: 720px;
            width: 100%;
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            padding: 3rem 2.5rem;
            text-align: center;
            transition: all 0.2s ease;
        }
        .badge {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            margin-bottom: 1.75rem;
        }
		.badge img {
            max-width: 170px;
        }
        h1 {
            font-size: 2rem;
            font-weight: 700;
            color: #0b1a2a;
            margin-bottom: 0.5rem;
		}
		h2 {
		  font-size: 1.2rem;
		  margin-bottom: 0.5rem;
		}
        .subhead {
            font-size: 1.1rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }
        .divider {
            width: 60px;
            height: 3px;
            background: #d0d7e0;
            margin: 1.5rem auto;
            border-radius: 6px;
        }
        p {
            color: #2c3e50;
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        .highlight {
            background: #f0f4fe;
            color: #0b2b4a;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            font-weight: 500;
        }
        .btn {
           display: inline-block;
		  margin-top: 1.8rem;
		  padding: 0.9rem 2.8rem;
		  background: #ffd803;
		  font-weight: 600;
		  font-size: 1.1rem;
		  border-radius: 10px;
		  text-decoration: none;
		  transition: background 0.2s ease, transform 0.1s ease;
		  box-shadow: 0 4px 12px rgba(11, 26, 42, 0.15);
        }
        .btn:hover {
            background: #000;
            transform: scale(1.02);
			color: #fff;
        }
        .btn:active {
            transform: scale(0.97);
        }
        .meta {
            margin-top: 2.5rem;
            font-size: 0.9rem;
            color: #5e6f7e;
            border-top: 1px solid #e9edf2;
            padding-top: 2rem;
        }
        .meta a {
            color: #0b1a2a;
            text-decoration: none;
            font-weight: 500;
        }
        .meta a:hover {
            text-decoration: underline;
        }
        @media (max-width: 480px) {
            .card {
                padding: 2rem 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            .btn {
                width: 100%;
                padding: 0.9rem 1rem;
            }
        }