.container {
    position: relative;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    max-width: 1200px;
    padding: 2rem 1rem;
    padding-top: 240px;
    box-sizing: border-box;
    margin: 0 auto;
}

section {
    width: 100%;
    margin-bottom: 0.5rem;
}

iframe {
    width: 100%;
    max-width: 720px;
    height: 405px;
    border: none;
    margin: 20px 0;
}

a {
    text-decoration: underline;
    color: #007bff;
    transition: color 0.3s ease;
}

.cta-button {
        display: inline-block;
        background: linear-gradient(90deg, #ff0000, #cc0000);
        color: white;
        text-decoration: none;
        padding: 15px 25px;
        font-size: 20px;
        font-weight: bold;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        text-transform: uppercase;
    }

    .cta-button:hover {
        background: linear-gradient(90deg, #cc0000, #ff0000);
        transform: translateY(-3px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    }

    .cta-button:active {
        transform: translateY(1px);
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    }