/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #1e40af, #3b82f6);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #dbeafe;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: url('https://via.placeholder.com/1500x600') no-repeat center/cover;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero h1, .hero p, .hero .btn {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn, .btn-small {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #1e40af;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.btn-small {
    padding: 0.5rem 1.5rem;
}

.btn:hover, .btn-small:hover {
    background-color: #3b82f6;
}

/* Content Sections */
.content, .welcome {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content h1, .welcome h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.job-card {
    background: white;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.contact-form input, .contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #1e40af;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .content h1, .welcome h2 {
        font-size: 1.8rem;
    }
}