/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Tahoma, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    background-color: #000000;
    color: #FFFFFF;
    padding: 1em 0;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5em;
}

.hero {
    background-color: #504D4E;
    text-align: center;
    padding-top: 30px;
}

.container {
    background-color: #FFFF00;
    display: flex;
    flex-wrap: wrap; /* Allow the container to wrap items */
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 2em;
}

.about, .contact {
    flex: 1;
    padding: 1em;
    background: #FFFF00;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact {
    background: #000; /* Black background */
    color: #fff; /* White text for "Contact Us" */
    text-align: left;
    width:100%;
}

.contact a{
    text-decoration: none;
    color: #fff;
}

.contact h2 {
    color: #fff;
    margin-bottom: 1em;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact form input, 
.contact form textarea {
    width: 100%;
    padding: 10px;
    background: #fff;
    border: 1px solid #444;
    border-radius: 5px;
    color: #000000;
}

.contact form input::placeholder, 
.contact form textarea::placeholder {
    color: #bbb;
}

.contact form button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact form button:hover {
    background-color: #0056b3;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    font-size: 1.2em;
    text-align: center;
}

.contact-info img {
    vertical-align: middle;
}

footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero img {
        width: 100%; /* Make hero image responsive */
        height: auto;
    }

    .container {
        flex-direction: column;
        padding: 1em;
    }

    .about, .contact {
        flex: 1 1 100%; /* Full width for smaller screens */
        margin-bottom: 20px;
    }
}
