/* Global Styles */
body {
    background-color: #F1F3F4; /* Light grey/blue background */
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Main Container */
.container {
    background-color: #FFFFFF;
    max-width: 650px;
    width: 100%;
    margin: 20px auto;
    padding: 20px 40px 40px 40px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
    box-sizing: border-box;
    text-align: center;
}

/* Headline */
h1 {
    font-family: 'Times New Roman', Times, serif; /* Serif font for headline */
    font-weight: 700;
    font-size: 28px; /* Approximate size based on visual */
    line-height: 1.3;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
}

.highlight {
    color: #B91C1C; /* Dark Red highlight */
    font-weight: 700;
}

/* Video/Image Container */
.video-container {
    margin-bottom: 25px;
    width: 100%;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    /* No border radius on the image as per analysis */
}

/* Body Text */
.body-text {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 30px;
    text-align: left; /* Usually body text is left-aligned or justified, checking screenshot it looks centered or left. Let's stick to center for now based on GummyGirls, but standard simple pages often center. Let's re-check analysis... analysis said "TextAlign: center" for container. */
    text-align: center; 
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #B91C1C; /* Dark Red */
    color: #FFFFFF;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    max-width: 400px; /* Constrain button width on large screens */
}

.cta-button:hover {
    background-color: #991b1b;
}

/* Footer */
.footer {
    margin-top: 40px;
    font-size: 12px;
    color: #666666;
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .container {
        padding: 15px 20px;
        margin: 0;
        width: 100%;
    }

    h1 {
        font-size: 24px;
    }

    .cta-button {
        width: 100%;
        padding: 15px 20px;
        font-size: 18px;
    }
}
