* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.container {
    text-align: center;
    padding: 40px;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #f1c40f;
}

p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}