/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    color: #333;
}

h2 {
    color: #3498db;
    font-size: 2em;
    margin-bottom: 20px;
}

section {
    background-color: #ffffff;
    margin: 30px auto;
    padding: 40px;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header img {
    height: 60px;
    width: auto;
    margin: 0 40px;
}

/* Video Styles */
video {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Download Link Styles */
a {
    text-decoration: none;
    color: #ffffff;
    background-color: #3498db;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #2980b9;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 10px 10px 10px 10px;
    background-color: #3498db;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

footer a:hover {
    background-color: #2980b9;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    video {
        width: 100%;
    }

    section {
        padding: 20px;
    }

    h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    a {
        padding: 8px 15px;
    }
}
