body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    color: #f0f0f0;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav ul {
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

section {
    background: #2a2a2a;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background: #000;
    border-radius: 8px;
}

.contact-form, .apply-form {
    display: flex;
    flex-direction: column;
}

.contact-form label, .apply-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="password"],
.contact-form input[type="email"],
.contact-form textarea,
.apply-form input[type="text"],
.apply-form input[type="tel"],
.apply-form input[type="file"],
.apply-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555;
    border-radius: 4px;
    background: #333;
    color: #f0f0f0;
    width: calc(100% - 22px);
}

.contact-form button, .apply-form button {
    background: #e60073; /* Pinkish color for accent */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.contact-form button:hover, .apply-form button:hover {
    background: #cc0066;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
    margin-top: 20px;
}
