/* General body and layout */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
}

header nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Contact Form Section */
.contact-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    text-align: left;
}

/* Flexbox container for form and details */
.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Style for the contact form */
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    background-color: #258;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #00bcd4;
}

/* Style for the contact details */
.contact-details {
    flex: 1;
    min-width: 250px;
}

.contact-details h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-details a {
    color: #00bcd4;
    text-decoration: none;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}


/* Responsive design */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 20px;
    }
}
