body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

.content {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    color: #4a4a4a;
    line-height: 1.6;
}

.content a {
    color: #5a3e8a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.content a:hover {
    color: #4a2e6a;
    text-decoration: underline;
}

.video-section {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    color: #4a4a4a;
}

.video-section h2 {
    font-size: 22px;
    margin: 0 0 10px;
    color: #333;
}

.video-section p {
    margin: 0 0 15px;
    line-height: 1.6;
}

.video-section iframe {
    max-width: 100%;
    border: none;
}

.support-section {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    color: #4a4a4a;
}

.support-section h3 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #333;
}

.support-section p {
    margin: 0;
    line-height: 1.6;
}

.support-section a {
    color: #5a3e8a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.support-section a:hover {
    color: #4a2e6a;
    text-decoration: underline;
}

.nav-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #5a3e8a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #4a2e6a;
    text-decoration: underline;
}

footer {
    margin-top: 40px;
    padding: 15px;
    background-color: #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

footer p {
    margin: 5px 0;
    color: #4a4a4a;
}

footer a {
    color: #5a3e8a;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #4a2e6a;
    text-decoration: underline;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 24px;
    }

    .video-section h2 {
        font-size: 20px;
    }

    .video-section iframe {
        height: 200px; /* Adjust height for smaller screens */
    }

    .support-section h3 {
        font-size: 16px;
    }
}