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

body {
    background: #f4f7fb;
}

header {
    background: #111827;
    color: white;
    padding: 20px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-btn {
    color: white;
    text-decoration: none;
    background: #2ecc71;
    padding: 10px 18px;
    border-radius: 6px;
}

.hero {
    text-align: center;
    padding: 50px 20px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    color: #666;
}

.jobs {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.job-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    transition: .3s;
}

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

.job-card h3 {
    color: #1f2937;
    margin-bottom: 15px;
}

.job-card p {
    margin: 8px 0;
}

.job-card button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    border: none;
    background: #0b2c6b;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.job-card button:hover {
    background: #153d8a;
}

footer {
    text-align: center;
    padding: 20px;
    background: #111827;
    color: white;
    margin-top: 50px;
}