/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #022343;
    color: #c3f1c4;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 40px;
    background-color: #210128;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 512px;
    margin-bottom: 0;
}

/* Main Content */
h1 {
    font-size: 3em;
    font-weight: 700;
    color: #ec238e;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5em;
    font-weight: 400;
    color: #c3f1c4;
    margin-bottom: 20px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Signup Form */
.signup-form {
    margin-top: 40px;
}

.signup-form p {
    font-weight: 500;
    margin-bottom: 15px;
}

.signup-form input[type="email"] {
    width: 70%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
}

.signup-form button {
    padding: 15px 30px;
    border: none;
    background-color: #ec238e;
    color: white;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-form button:hover {
    background-color: #d41f7e;
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 1.2em;
    color: #f3dddd;
    text-align: center;
}

footer a {
    color: #ec238e;
    text-decoration: none;
}

footer a:hover {
    color: #f407c4;
    text-decoration: none;
}

/* Text Page Specific Styles (for privacy.html) */
.text-page {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.text-page .container {
    display: block;
    margin: 0;
    padding: 20px;
}

.text-page a {
    color: #ec238e;
    text-decoration: none;
}

.text-page a:hover {
    color: #f407c4;
    text-decoration: none;
}

.text-page h1 {
    text-align: center;
}

.text-page h2 {
    font-size: 1.3em;
    color: #ec238e;
    margin-top: 30px;
}

.text-page ul {
    padding-left: 20px;
}

.text-page ol {
    padding-left: 20px;
    font-size: 1.1em;
    line-height: 1.6;
}

.text-page ol li {
    margin-bottom: 10px;
    font-size: 1.0em;
}

.text-page ul li {
    margin-bottom: 10px;
}

.text-page span {
    margin-bottom: 0;
}

