body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

nav {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.menu-wrap {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.menu-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu-wrap ul li {
    margin: 0 20px;
}

.menu-wrap ul li a {
    text-decoration: none;
    color: #3498db;
    font-size: 18px;
}

.menu-wrap ul li a:hover {
    text-decoration: underline;
}

.contact-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    text-align: center;
    margin-top: 100px;
}

.contact-container h1 {
    margin-bottom: 25px;
    color: #f39c12; /* Light Orange */
    font-size: 28px;
}

.contact-details p {
    margin: 15px 0;
    font-size: 18px;
}

.contact-details a {
    color: #3498db; /* Light Blue */
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline;
    color: #e67e22; /* Darker Light Orange */
}
