body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    background-color: #ffeb3b;
    color: #000;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 100%;
    height: auto;
    width: 750px;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin-top: 20px;
}

.content {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #fdd835;
    color: #000;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    margin: 15px 0;
    transition: background-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.content p {
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 20px;
}

.site-footer {
    background-color: #f5f5f5;
    color: #757575;
    padding: 30px 0;
    text-align: center;
    font-size: 0.8rem;
}

.site-footer .disclaimer {
    max-width: 700px;
    margin: 20px auto;
    line-height: 1.6;
}

.footer-nav {
    margin-top: 20px;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 700;
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero h2 {
        font-size: 1.5rem;
    }
    .cta-button {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    .hero-image {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 95%;
    }
}