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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.logo {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.email-button {
    background: #325893;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: 400;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 60px;
}

.email-button:hover {
    background: #1f3651;
}

.email-button:active {
    opacity: 0.9;
}

.footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    color: black;
    font-size: 0.9em;
    background: rgb(183, 198, 212);
    width: 100%;
}

.footer a {
    color: black;
    text-decoration: underline;
    transition: color 0.2s;
}

.footer a:hover {
    color: black;
    text-decoration: underline;
}

.footer .footer-subtle {
    color: #5f6670;
    font-size: 0.82em;
    margin-top: 4px;
}

.footer .footer-subtle a {
    color: inherit;
}

.footer .footer-subtle a:hover {
    color: #4a515a;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 20px;
        width: 95%;
    }

    .email-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }
}
