@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Warning Banner */
.warning-banner {
    background-color: #dc3545;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 3px solid #bd2130;
    margin-bottom: 20px;
}

.warning-wrapper {
    max-width: 720px;
    margin: 20px auto 0;
    padding: 0 10px;
}

.red-box {
    background-color: #dc3545;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    border: 3px solid #a71d2a;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 25px;
}

/* Headline */
h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000;
    font-weight: 700;
}

@media (min-width: 768px) {
    h1 {
        font-size: 46px;
    }
}

/* Video Thumbnail */
.video-wrapper {
    position: relative;
    max-width: 726px;
    margin: 0 auto 30px;
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px; /* Assuming slight rounded corners based on modern standards, though source might be sharp */
}

/* CTA Button */
.cta-button {
    display: block;
    background-color: #274785;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    padding: 20px 10px;
    border-radius: 5px;
    max-width: 600px;
    margin: 0 auto 40px;
    transition: background-color 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #1e3663;
}

.cta-text-large {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
}

.cta-text-small {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-top: 5px;
}

/* Content */
.content {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.content p {
    margin-bottom: 20px;
}

.content strong {
    font-weight: 700;
}

/* Footer */
footer {
    background-color: #f8f9fa; /* Light gray usually */
    padding: 40px 0;
    margin-top: 50px;
    font-size: 12px;
    color: #666;
    border-top: 1px solid #ddd;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

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

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

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: justify;
}

.copyright {
    text-align: center;
    margin-top: 20px;
}
