/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    text-align: center;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #003399;
    color: white;
    padding: 10px 20px;
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    margin-right: 10px;
}

/* Navigation */
.navbar {
    display: flex;
    gap: 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hamburger Button */
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Main Content */
main {
    padding: 50px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #003399;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding-left: 20px;
        z-index: 10;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        padding: 10px 0;
        font-size: 16px;
        color: white;
        text-decoration: none;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    header {
        position: relative;
    }
}

/* Contact Form Styling */
.contact-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
}

.contact-form button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}
