/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Basic styling for the header */
header {
    background-color: #3498db; /* Blue color */
    color: #fff; /* White color */
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Styling for the logo */
header img {
    max-height: 50px; /* Adjust the height as needed */
}

/* Styling for the phone icon and number */
header .phone-section {
    display: flex;
    align-items: center;
}

header .phone-icon {
    margin-right: 5px;
}

/* Styling for the "Contact Us Now" button */
header .contact-button {
    background-color: #fff; /* White color */
    color: #3498db; /* Blue color */
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Basic styling for the main content */
main {
    padding: 20px;
}

/* Basic styling for the footer */
footer {
    background-color: #333; /* Dark gray or black color */
    color: #fff; /* White color */
    padding: 10px;
    text-align: center;
}

/* ... (previous styles) */

/* Styling for the modal overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Styling for the modal content */
.modal-content {
    background-color: #fff; /* White color */
    padding: 20px;
    border-radius: 5px;
}

/* Styling for the form within the modal */
form {
    display: flex;
    flex-direction: column;
}

/* Styling for the close button in the modal */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #333; /* Blue color */
    z-index: 2;
}


