/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
    color: #333;
}

/* Hero Section */
.hero-section {
    background-image: url("/gainforchrist/images/2.jpg");
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: #ffcb70;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
}

/* Contact Info Section */
.contact-info-section {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info-section h2, .contact-info-section h3 {
    color: #4a90e2;
    margin-bottom: 10px;
}

.contact-info-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.contact-details, .map-container {
    list-style-type: none;
    padding: 0;
    font-size: 1.1rem;
    color: #333;
}

.contact-details li {
    margin-bottom: 10px;
}

.contact-details a {
    color: #4a90e2;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-form-section h2 {
    color: #4a90e2;
    margin-bottom: 10px;
}

.contact-form-section p {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 20px;
}

.contact-form-section label {
    font-size: 1rem;
    color: #333;
    display: block;
    margin-top: 10px;
    text-align: left;
}

.contact-form-section input,
.contact-form-section textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form-section button {
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form-section button:hover {
    background-color: #3a78c2;
}


.success-message {
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    text-align: center;
    font-size: 1.1rem;
    display: none; /* Hidden by default */
}

.success-message.visible {
    display: block;
}

.success-message.hidden {
    display: none;
}
