/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #2c2f33;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#container {
    display: flex;
    flex: 1;
}

/* Header Styling */
header {
    background: #23272a;
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
}

header h1 {
    margin: 0;
}

/* Navigation Bar Styling */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover:not(.active) {
    background-color: #111;
}

.active {
    background-color: #7851a9;
}

/* Main Content Styling */
#main {
    flex: 1;
    padding: 1rem;
}

/* Headings */
h2 {
    color: #ffffff;
}

/* Paragraphs */
p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Image Styling */
.resized-image {
    width: 100%;
    max-width: 500px; /* Adjust this value as needed */
    height: auto; 
    margin: 1rem 0;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resized-image:hover {
    transform: scale(1.02); 
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.7);
}

/* Video Container Styling */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 1rem 0;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.7);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Image Gallery Styling */
.image-gallery {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.image-gallery img {
    flex: 1;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.7);
}

/* Learn More Bar Styling - Same as Navigation Bar */
.learn-more-bar {
    display: flex;
    justify-content: flex-start;
    background: #40444b;
    padding: 0.5rem 1rem;
}

.learn-more-bar a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.learn-more-bar a:hover {
    color: #99aab5;
}

/* Footer Styling */
footer {
    background: #23272a;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    flex-shrink: 0;
}

/* Design */
@media (max-width: 768px) {
    #container {
        flex-direction: column;
    }

    .video-container iframe {
        height: 150px;
    }

    .image-gallery {
        flex-direction: column;
    }

    .image-gallery img {
        width: 100%;
        margin-bottom: 10px;
    }

