/* General Reset */
body, h1, h2, h3, p, ul, li, a, button, iframe {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f9fc;
}

/* Navbar */
.navbar {
    background-color: #4caf50;
    color: white;
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
}
.navbar li {
    margin: 0 15px;
}
.navbar a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}
.navbar a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 2rem 1rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
section h1, section h2 {
    color: #4caf50;
    margin-bottom: 1rem;
}
section p, section ul {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Video Gallery */
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}
.video-item iframe {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Quotes */
blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #2e7d32;
    margin: 1.5rem 0;
    padding: 0.5rem 1rem;
    border-left: 4px solid #4caf50;
    background-color: #e8f5e9;
}

/* Form */
select, button {
    font-size: 1rem;
    padding: 0.5rem;
    margin: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}
button {
    background-color: #4caf50;
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: #45a049;
}

/* Footer */
footer {
    background-color: #4caf50;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}
