/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Lora:wght@700&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: #1a1a1a;
    background-color: #ffffff; /* Reverted to pure white */
    padding: 0 24px;
}

.container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

.container__content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Typography Hierarchy */
.container__content h1 {
    font-family: "Lora", serif;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.2;
    color: #000000;
}

.container__content p {
    margin-bottom: 24px;
    font-size: 1.125rem;
    color: #333333;
}

/* Bullets Section - Simplified spacing */
.bullets {
    text-align: left;
    width: 100%;
    max-width: 480px;
    margin-bottom: 32px;
}

.bullets ul {
    list-style-position: outside;
    padding-left: 20px; /* Ensures bullets align nicely with text */
}

.bullets li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* Call to Action */
.cta-btn {
    display: inline-block;
    padding: 18px 40px;
    background-color: #0000ff; /* Standard strong blue */
    border-radius: 6px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.cta-btn:hover {
    background-color: #0000cc;
}

/* --- Responsive Desktop Design --- */

@media (min-width: 768px) {
    .container__content h1 {
        margin-top: 70px; /* Reduced by 30% from original 100px */
        font-size: 3.2rem;
        margin-bottom: 28px;
    }

    .container__content p {
        font-size: 1.3rem;
    }

    .cta-btn {
        width: auto; /* Button returns to natural size on desktop */
    }
}
