*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f8f9fa;
    color:#333;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Hero Section */

.hero{
    background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f');
    background-size:cover;
    background-position:center;
    height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.hero-content h1{
    font-size:3rem;
    margin-bottom:15px;
}

.hero-content p{
    font-size:1.2rem;
    max-width:700px;
    margin:auto;
}

/* Why Join */

.why-join{
    padding:80px 0;
}

.why-join h2{
    text-align:center;
    margin-bottom:40px;
    color:#003366;
}

.benefits{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card h3{
    color:#0056b3;
    margin-bottom:10px;
}

/* Openings */

.openings{
    padding:60px 0;
    background:#eef5ff;
}

.openings h2{
    text-align:center;
    margin-bottom:30px;
    color:#003366;
}

.job-card{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.job-card h3{
    color:#0056b3;
    margin-bottom:15px;
}

.job-card ul{
    margin-left:20px;
}

/* Application Form */

.application{
    padding:80px 0;
}

.application h2{
    text-align:center;
    margin-bottom:30px;
    color:#003366;
}

form{
    background:white;
    max-width:800px;
    margin:auto;
    padding:30px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

form input,
form select,
form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:5px;
    font-size:16px;
}

form button{
    width:100%;
    padding:14px;
    background:#0056b3;
    color:white;
    border:none;
    border-radius:5px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

form button:hover{
    background:#003d80;
}

/* Footer */

footer{
    background:#003366;
    color:white;
    text-align:center;
    padding:20px;
}

/* Responsive */

@media(max-width:768px){

    .hero-content h1{
        font-size:2.2rem;
    }

    .hero-content p{
        font-size:1rem;
    }

}