@import url('https://fonts.googleapis.com/css?family=Montserrat');

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat'; 
    background: #f4f4f4;
    color: #333;
}

.wide-image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wide-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.container {
    max-width: 800px;
    margin: 100px auto; 
    padding: 20px;
    background: rgba(255, 255, 255, 0.7); 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

h1 {
    text-align: center;
    color: #333;
}

p {
    text-align: center;
    color: #555;
}

.contact-box {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.contact-left,
.contact-right {
    flex: 1;
    padding: 0 20px;
}

form {
    max-width: 400px;
    margin: 0 auto;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    text-align: left;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 15px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}
.navbar {

    overflow: hidden;
    position: relative;
    z-index: 2; /* Set a higher z-index */
}


.navbar a {
    float: right;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

@media (max-width: 768px) {
    .container{
        padding: auto;
        margin: 80px auto;
        max-width: 600px;
    }
}