/* Reset base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #333;
}


.container {
    text-align: center;
    padding: 60px 20px;
}


h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
}


.subtitle {
    font-size: 1.2rem;
    color: #eaf6ff;
    margin-bottom: 40px;
}


.card {
    background: #fff;
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


.card p {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}


.button {
    background: #4facfe;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background: #00c6ff;
    transform: scale(1.05);
}

