body {
    margin: 0;
    padding: 0;
    background: #e9ecf1;   /* updated */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    word-wrap: break-word;
}

body {
   background-color: #ffffff;
}

.hero {
   background-color: #ffffff;
}

.container {
    max-width: 700px;
    margin: 10% auto;
    text-align: center;
    padding: 0 20px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 50px;
}

.footer {
    font-size: 0.9rem;
    color: #888;
    margin-top: 40px;
}

.yt-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.yt-link:hover {
    text-decoration: underline;
}

.yt-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 600px) {
    .cta-buttons {
        display:flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width:100%;
    }

    .cta-buttons a {
        width: auto;
        padding: 12px 24px;
        text-align: center;
    }
}




