/* --- Global Styles --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

/* --- Main Page Container --- */
.container {
    max-width: 800px;
    margin: 40px auto; /* Centers the box on the page */
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.pitch {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

/* --- Call to Action Box --- */
.cta-box {
    background-color: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
}

h2 {
    color: #34495e;
    margin-top: 0;
}

/* --- The Main Button --- */
.cta-button {
    display: inline-block;
    background-color: #3498db; /* A nice, inviting blue */
    color: #ffffff;
    padding: 12px 25px;
    margin-top: 15px;
    text-decoration: none; /* Removes the underline from the link */
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9; /* A slightly darker blue on hover */
}

/* --- Footer --- */
footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #999;
}