/* style_contact_us.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #111;
    color: #ddd;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background-color: rgba(17, 17, 17, 0.9);
}

nav p {
    font-weight: bold;
    text-transform: uppercase;
}

nav a {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5em 2em;
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h1 {
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
}

.contact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    max-width: 400px;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0px;
    text-align: center;
}

.info-box h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.info-box a, .info-box p {
    color: #007bff;
    text-decoration: none;
    font-size: 1rem;
}

.contact-form {
    flex: 1;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: none;
    text-align: center;
}

.contact-form h2 {
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ddd;
    border-radius: 4px;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
}

.contact-form button:hover {
    background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .contact-form {
        max-width: 100%;
    }
}
