/* Global Styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; 
    color: #444; 
    line-height: 1.6; 
}

/* Container Styles */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;  /* Center items vertically */
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

/* Left Section Styles */
.left {
    width: 60%; 
}

.left h1 {
    font-size: 3rem;
    color: #369e66;
    margin-bottom: 10px; /* Add bottom margin to h1 */
}

.left .motto {
    font-style: italic;
    color: #50b885;
    margin-bottom: 20px;
}

.left p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.left img {
    max-width: 100%; /* Allow image to take full width of container */
    height: auto;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    transition: all 0.3s ease; /* Smoother transition */
}

.left img:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Right Section Styles */
.right {
    width: 35%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.right h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #369e66;
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
}

form button {
    background-color: #2e8b57;
    color: white;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease; 
    width: 100%;
    box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
}

form button:hover {
    background-color: #246542; 
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px; /* Add margin to separate from content */
}

footer p {
    margin: 0;
}
