* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #1d3557, #457b9d);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #f1faee;
}

.message {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.divider {
    width: 60px;
    height: 4px;
    background: #f1faee;
    margin: 0 auto 25px;
    border-radius: 2px;
}

.contact a {
    color: #f1faee;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}
