/* Reset + base layout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: #ffffff;
/* Text color for the entire site */
    color: #0C2C47;  
}



/* Logo centered at top */
.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.site-logo {
    max-width: 300px;
    width: 80%;
    height: auto;
}

/* Main content centered */
.content-wrapper {
    max-width: 700px;
    width: 100%;
}

/* Forms */
.signup-form {
    margin: 25px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
}

.signup-form input[type="email"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.signup-form button {
    padding: 14px;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    background-color: #1c73ff;
    color: white;
    cursor: pointer;
}

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

/* Responsive spacing */
ul {
    text-align: left;
    margin: 20px auto;
    max-width: 500px;
}

.callout {
 font-size: 1.6rem;      /* Increase size */
    font-weight: bold;      /* Make it stronger */
    text-align: center;     /* Center it */
    line-height: 1.4;       /* Good spacing between the two lines */
    margin: 30px auto;      /* Adds breathing room */
    max-width: 700px;       /* Keeps it readable on large screens */
    color: #0C2C47; 
}
.site-footer {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #333;
    opacity: 0.8;
}
.features {
    text-align: left;       /* Align both title + list to the left */
    width: fit-content;     /* Prevent it from stretching full width */
    margin: 0 auto;         /* Keep the block centered on the page */
}

.feature-title {
    margin-bottom: 5px;     /* Pulls the text closer to the bullet list */
    font-weight: bold;
}

.cta-block {
    text-align: center;    /* Centers the heading */
    margin-top: 40px;
}

.focus-link {
    color: #ff6600;
    text-decoration: underline;
    cursor: pointer;
}
.focus-link:hover {
    opacity: 0.8;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.site-logo {
    max-width: 220px;
    height: auto;
}
