body {
    background-color: #F5EBDC;
    font-family: Arial, Helvetica, sans-serif;
}

.privacy-notice {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #555;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.text {
    text-align: center;
    margin-bottom: 20px;
}

.specs {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    justify-content: center;
    gap: 20px; /* Adds space between items */
    width: 100%;
    max-width: 1200px; /* Limits the width of the container */
    margin-bottom: 150px;
}

.callUs, .sendMessage, .visitUs {
    display: flex;
    flex-direction: column;
    width: 30%; /* Adjust width to fit the layout */
    background-color: #FF8731;
    justify-content: center;
    align-items: center; /* Centers all elements horizontally */
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    color: #fff; /* Text color */
    min-height: 250px; /* Ensures consistent height */
}

/* Ensure the icons have the same height and are aligned properly */
.callUs i, .sendMessage i, .visitUs i {
    font-size: 3rem; /* Ensure all icons have the same size */
    line-height: 1; /* Remove extra space around the icon */
}

/* Ensure consistent height for the headings */
.callUs h1, .sendMessage h1, .visitUs h1 {
    min-height: 40px; /* Set a minimum height for the headings to align them */
    margin: 0; /* Remove extra margin */
}

.callUs a {
    color: #fff;
    text-decoration: none;
}

/* Button and link styling */
.sendMessage a, .visitUs a {
    padding: 10px 20px;
    background-color: #fff; /* Button background */
    color: #FF8731; /* Button or link text color */
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    font-weight: bold;
    min-height: 20px; /* Set a minimum height for consistency */
}

/* Address link wraps correctly */
.visitUs a {
    word-wrap: break-word; /* Ensures the address wraps correctly */
}

/* Hover effect for buttons and links */
.sendMessage a:hover, .visitUs a:hover, .callUs a:hover {
    background-color: #fed7ba; /* Change background color on hover */
    color: #fff; /* Change text color on hover */
}

.phoneNum {
    font-size: 1.3rem;
}

html {
    scroll-behavior: smooth;
}

.formContainer {
    display: flex;
    justify-content: space-between; /* Distributes space between the items */
    align-items: flex-start; /* Align items at the start of the container */
    width: 100%;
    max-width: 1200px; /* Adjust max-width as needed */
    margin: 0 auto; /* Center the formContainer */
    padding: 20px;
    box-sizing: border-box;
    gap: 40px; /* Adds space between the form and hours section */
}

#messageBox {
    flex: 1; /* Allow the form to take available space */
    width: 65%; /* Adjust width as needed */
    margin-right: 20px; /* Optional: Adjust spacing between the form and hours section */
}

/* Basic form styling */
#form {
    max-width: 100%; /* Ensure the form takes up full width available */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Form Inputs */
#form input[type="text"],
#form input[type="email"],
#form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

/* Textarea */
#form textarea {
    height: 100px;
    resize: none;
}

/* Submit Button */
#form button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #D62400;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#form button[type="submit"]:hover {
    background-color: #ff2a00;
}

.privacy {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 20px;
}

/* Media query for smaller screens */
@media screen and (max-width: 800px) {
    .specs{
        flex-direction: column;
    }
    .callUs, .sendMessage, .visitUs{
        width: 100%;
        margin-bottom: 20px;
    }
    .formContainer {
        flex-direction: column; /* Stack the form and hours vertically on smaller screens */
    }

    #messageBox, .hours {
        width: 100%; /* Full width for each section */
        margin: 0 0 20px 0; /* Add space between sections */
    }

    #messageBox {
        margin-right: 0; /* Remove right margin on smaller screens */
    }
    .hoursContainer {
        max-width: 300px;
    }
}

.hoursContainer {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px; /* Adjust as needed */
    margin: 0 auto; /* Center horizontally */
}

.hours {
    font-size: 1.5rem;
    margin-bottom: 20px; /* Space between heading and schedule */
    color: #333; /* Adjust color as needed */
}

.hoursContainer p {
    margin: 10px 0; /* Space between each day’s schedule */
    font-size: 1rem; /* Adjust font size as needed */
    color: #555; /* Adjust color as needed */
}