body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background: #f4f4f4;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%), url(../Images/background2.png) no-repeat center center fixed;
    background-size: cover;
}

header {
    background: #ff7200;
    color: #fff;
    padding: 1em 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    width: 70px;
    margin-left: 50px; /* Adjusted margin for better alignment */
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-right: 20px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ff7200;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

main {
    padding-bottom: 30px;
}

.contact {
    background: #fff;
    padding-top: 0px;
    padding-bottom: 70px;
    padding-left: 50px;
    padding-right: 50px;
    /*margin: 10px auto; /* Margin around the contact section */
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 250px; /* Reduced width */
    text-align: center;
    margin-bottom: 70px; /* Space between the contact section and footer */
}

.contact h1 {
    font-size: 2em;
    margin-bottom: 10px; /* Reduced margin-bottom */
}

.contact-info {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
    text-align: center;
}

.form-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    color: #fff;
    background-color: #ff7200;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-top: 20px; /* Space between the address and button */
}

.form-button:hover {
    background-color: #e65c00; /* Darker shade for hover effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    padding-top: 10px;
}

footer p {
    margin: 0;
}

h1 {
    text-align: center;
    color: white;
    margin-bottom: 5px; /* Reduced margin-bottom for less gap */
}

