body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #faf8f5;
    color: #333;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #4a3f35;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    padding: 5px;
}

.logo span {
    color: #fdf5e6;
    font-size: 1.8rem;
    font-weight: bold;
    margin-left: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fdf5e6;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd700;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    background-color: #f9f6f2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px; /* Adds space between the two sections */
}

.contact h2 {
    font-size: 2.5rem;
    color: #4a3f35;
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
}

#contact-info {
    flex: 1 1 45%; /* Ensures the section takes up 45% of the width, but allows for resizing */
    min-width: 280px; /* Prevents it from becoming too narrow on small screens */
}

#contact-info h3 {
    font-size: 1.8rem;
    color: #4a3f35;
    margin-bottom: 20px;
}

#contact-info p {
    font-size: 1rem;
    color: #6b6b6b;
    line-height: 1.5;
}

form {
    flex: 1 1 45%; /* Ensures the form section takes up 45% of the width, but allows resizing */
    min-width: 280px; /* Prevents the form from becoming too narrow on small screens */
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

form label {
    font-size: 1rem;
    color: #4a3f35;
    margin-bottom: 8px;
    display: block;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box; /* Ensures padding doesn't cause overflow */
}

form button {
    background-color: #4a3f35;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #3a2f24;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #4a3f35;
    color: #fdf5e6;
}