/* Base Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #333;
}

/* Header */
header {
    background-color: #28a745; /* Dark green */
    color: white; /* Corrected to white for readability */
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    margin: 0;
}

header p {
    font-size: 18px;
    margin-top: 10px;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Contact Info */
.contact-info {
    text-align: center;
    margin: 30px auto;
    max-width: 900px;
}

.contact-line {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 16px;
    line-height: 2;
    margin-top: 10px;
}

.contact-line a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
}
/* Center align h2 titles */
h2 {
    text-align: center;
}

/* Video */
iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.image-gallery img {
    width: 100%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* Button */
button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

button:hover {
    background: #0056b3;
}

/* Footer */
footer {
    background-color: #28a745; /* Dark green */
    color: white; /* Corrected to white for contrast */
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 14px;
}
