* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.container {
    background: white;
    width: 90%;
    max-width: 650px;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: bold;
}

h1 {
    color: #1e3c72;
    margin-bottom: 20px;
}

p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 18px;
}

.btn {
    display: inline-block;
    background: #1e3c72;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 10px;
    transition: 0.3s;
}

.btn:hover {
    background: #16325e;
}

.footer {
    display: block;
    margin-top: 30px;
    color: #777;
}