* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
}

/* Logo styling */
.logo {
    max-width: 150px;
    margin-bottom: 25px;
}

h1 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.divider {
    height: 2px;
    width: 60px;
    background: #ffffff;
    margin: 25px auto;
    opacity: 0.6;
}

.contact {
    font-size: 1rem;
}

.contact a {
    color: #ffdd57;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 30px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive logo */
@media (max-width: 480px) {
    .logo {
        max-width: 120px;
    }
}
