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

/* Header and Navigation */
header {
    background-color: #007acc;
    color: white;
    padding: 1em;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

nav a:hover {
    text-decoration: underline;
}

/* Section with Background Image */
section {
    position: relative;
    padding: 3em 1em;
    text-align: center;
    color: white;
    background-image: url('/IMG_3536.JPG');
    background-color: #333; /* Test background color */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

section * {
    position: relative;
    z-index: 2;
}

/* Call-to-Action Button */
.cta-button {
    background-color: #007acc;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1em;
}

.cta-button:hover {
    background-color: #005f99;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 1em;
    text-align: center;
}

/* Form Styles (for contact page) */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2em;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

form label {
    display: block;
    margin: 1em 0 0.5em;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button[type="submit"] {
    background-color: #007acc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button[type="submit"]:hover {
    background-color: #005f99;
}
/* Form Styles */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2em;
    background-color: rgba(255, 255, 255, 0.9); /* Light background for form container */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

form label {
    display: block;
    margin: 1em 0 0.5em;
    font-weight: bold;
    color: #333; /* Dark label color */
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white; /* White background for inputs */
    color: #333; /* Dark text color for readability */
}

form input[type="text"]::placeholder,
form input[type="email"]::placeholder,
form textarea::placeholder {
    color: #666; /* Placeholder color */
}

form button[type="submit"] {
    background-color: #007acc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

form button[type="submit"]:hover {
    background-color: #005f99;
}

