/* Common form and job page styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background: #0a1628;
    color: #b0c4de;
    line-height: 1.6;
    padding-top: 80px; /* Add space for fixed navbar */
}

/* Navigation styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.job-header {
    background: rgba(16, 32, 48, 0.6);
    padding: 60px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.job-title {
    font-size: 2.5em;
    color: #00d9ff;
    margin-bottom: 20px;
}

.job-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
}

/* Job description styles */
.job-description {
    background: rgba(16, 32, 48, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.job-description h2 {
    color: #00d9ff;
    font-size: 1.8em;
    margin: 25px 0 15px;
}

.job-description h2:first-child {
    margin-top: 0;
}

.job-description p {
    margin-bottom: 20px;
    color: #ffffff;
}

.job-description ul {
    list-style: none;
    margin: 15px 0;
}

.job-description ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #ffffff;
}

.job-description ul li:before {
    content: "•";
    color: #00d9ff;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.section-title {
    color: #00ffc8;
    font-size: 1.5em;
    margin: 40px 0 20px;
}

.section {
    margin-bottom: 40px;
}

ul {
    list-style-type: none;
    margin-bottom: 30px;
}

ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

ul li:before {
    content: "•";
    color: #00ffc8;
    position: absolute;
    left: 0;
}

.application-form {
    background: rgba(16, 32, 48, 0.8);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.3);
    margin: 40px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #00d9ff;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 217, 255, 0.4);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
    color: rgba(176, 196, 222, 0.6);
}

select {
    background-color: #0a1628;
    color: #ffffff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d9ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 40px;
}

select option {
    background-color: #0a1628;
    color: #ffffff;
    padding: 12px;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #00d9ff;
    box-shadow: 0 0 0 2px rgba(0, 217, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

button {
    background: linear-gradient(135deg, #00d9ff 0%, #00ffc8 100%);
    color: #0a1628;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}

/* Form field hover effects */
input:hover, textarea:hover, select:hover {
    border-color: rgba(0, 217, 255, 0.6);
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .job-header {
        padding: 30px 20px;
    }

    .job-title {
        font-size: 2em;
    }

    .job-meta {
        flex-direction: column;
        gap: 15px;
    }

    .application-form {
        padding: 30px 20px;
    }
}