/* --- Global Resets & Font --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif;
    background-color: #f0f2f5; /* A light, neutral background */
    color: #333;
    line-height: 1.6;
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* --- Main Content Card --- */
.container {
    max-width: 500px; /* Max width of the card */
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* Keeps the image corners rounded */
    text-align: center;
}

.content {
    padding: 30px; /* Spacing inside the card */
}

/* --- Your Image --- */
.main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Typography --- */
h1 {
    font-size: 1.75rem; /* 28px */
    font-weight: 700;
    color: #1c1e21;
    margin-bottom: 12px;
}
h3 {
    font-weight: 700;
    color: #1c1e21;
    margin-bottom: 12px;    
}

p {
    font-size: 1rem; /* 16px */
    color: #555;
    margin-bottom: 24px;
}

ul {
    text-align: left;
}

/* --- The Call to Action (CTA) Button --- */
.cta-button {
    display: inline-block;
    width: 100%; /* Make button full-width for emphasis */
    padding: 14px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #e00000;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #c00000; /* A darker shade on hover */
}

/* --- Simple Footer --- */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
}