/* custom.css page */
.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px; /* Space between form and image */
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.contact-form {
    flex: 1; /* Takes up equal space */
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-image {
    flex: 1; /* Takes up equal space */
    text-align: right; /* Align image to the right */
}

.contact-image img {
    width: 100%;
    max-width: 350px; /* Adjust size */
    border-radius: 8px;
}
button {
    background: #c39a6e; /* Muted brown for the button */
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s ease;
    /*width: 100%;*/
}
button:hover {
    background: #4b3825; /* Darker brown for hover effect */
}
.contact-details h3 {
    color: #6c4f30; /* A soft brown color for the heading */
    font-size: 24px;
    margin-bottom: 10px;
}
.contact-details {
    text-align: center;
    background: #faf0e6; /* Same cream color for consistency */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
}
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #faf0e6; /* Cream background for the form */
}
.contact-container {
    display: flex;
    gap: 30px; /* Increased space between the form and the right section */
    max-width: 1200px;
    width: 90%;
    background: #ffffff; /* White background for the container */
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
body {
    background: linear-gradient(to right, #f1e6d6, #e5d0b5); /* Soft cream to light beige gradient */
}
.contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the contents horizontally */
    justify-content: center; /* Center the contents vertically */
    text-align: center;
}

.contact-details {
    text-align: center;
    background: #faf0e6; /* Same cream color for consistency */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px; /* Adjust to desired width */
    margin: 0 auto; /* Centers the contact details box */
}
