body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0a0a23; 
    color: black;
}
.footer {
    background-color: rgba(17, 17, 17, 2);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}
.contact-us {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 10px;
    flex: 1;
    margin-right: 20px;
}

.contact-us p {
    margin: 10px 0;
}
.contact-us form {
    display: flex;
    flex-direction: column;
}
.contact-us label {
    margin: 10px 0 5px;
}
.contact-us input,
.contact-us textarea {
    padding: 5px;
    margin-bottom: 8px;
    border: none;
    border-radius: 5px;
    color: black;
}
.contact-us input[type="submit"] {
    cursor: pointer;
}
.submitted-message {
    display: none;
    color:yellow;
    margin-top: 10px;
    font-weight: bold;
}
.right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    margin-left: 20px;
}
.logo {
    margin-bottom: 10px;
    align-self: center;
}
.logo img {
    width: 120px;
}
.footer p {
    margin: 5px 0;
    font-size: 1em;
}
.footer a {
    text-decoration: none;
    margin: 0 5px;
    font-size: 1em;
}
.footer a:hover {
    text-decoration: underline;
}
.social-icons {
    margin: 10px 0;
}
.social-icons img {
    width: 24px;
    margin: 0 5px;
    vertical-align: middle;
}
.iframe-container {
    margin-top: 10px;
    border: none;
    overflow: hidden;
    border-radius: 10px;
    max-width: 100%;
    height: 200px;
    width: 400px;
}
iframe {
    width: 100%;
    height: 100%;
    border: none;
}