/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Header styles */
header img {
    width: 100%;
    height: auto;
    display: block;
}

/* Main content styles */
main {
    padding: 20px;
}

section {
    margin-bottom: 30px;
}

/* Video grid styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.video-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 5px;
}

.video-item h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #007bff;
}

.video-item p {
    font-size: 14px;
    color: #555;
}

/* Footer styles */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    position: relative;
}

footer a {
    color: #17a2b8;
    text-decoration: none;
}

footer img {
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: 50px;
    cursor: pointer;
}

/* WhatsApp button hover effect */
footer img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
/* CSS Document */

