body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 90%;
    padding: 20px;
}

.logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 30px;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.quotes {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 30px;
    height: 1.2em;
    transition: opacity 0.5s ease-in-out;
}

.cta-button {
    background-color: #e00;
    color: #fff;
    padding: 12px 24px;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c00;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    background-color: #111;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    cursor: pointer;
}

.modal-button {
    display: block;
    margin: 10px auto;
    padding: 12px 24px;
    background-color: #e00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    width: 80%;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.modal-button.secondary {
    background-color: #444;
}

.modal-button:hover {
    opacity: 0.9;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-content input,
.modal-content textarea {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
}

.modal-content textarea {
    resize: vertical;
    min-height: 80px;
}
