body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

h1 {
    color: #ff3b30; /* A punchy, energetic red/orange */
    margin-top: 0;
}

p {
    line-height: 1.6;
    color: #cccccc;
}

.contact-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #2c2c2c;
    border-radius: 8px;
}

.email-link {
    display: block;
    font-size: 1.25rem;
    color: #0a84ff; /* Standard iOS blue */
    text-decoration: none;
    margin: 15px 0;
    font-weight: bold;
}

.email-link:hover {
    text-decoration: underline;
}

button {
    background-color: #ff3b30;
    color: white;
    border: none;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s ease;
}

button:hover {
    background-color: #d32f2f;
}

.hidden {
    display: none;
}

.visible {
    display: block;
    color: #32d74b; /* iOS green for success */
    margin-top: 12px;
    font-weight: 500;
}

footer {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #666666;
}
.divider {
    border: 0;
    height: 1px;
    background: #333;
    margin: 40px 0;
}

.privacy-text {
    text-align: left;
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.4;
}

h2 {
    color: #ff3b30;
    margin-bottom: 20px;
}