body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background: #f4f6f9;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0;
}

header {
    background: #0b3d91;
    color: white;
    padding: 40px 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
}

h1, h2 {
    margin-bottom: 10px;
}

h2 {
    border-bottom: 2px solid #0b3d91;
    padding-bottom: 5px;
}

a {
    color: #ffd700;
    text-decoration: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.job {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    background: #0b3d91;
    color: white;
    padding: 20px;
    margin-top: 40px;
}
