* {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
body {
    background: #f5f5f5;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: white;
}
.navbar a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    margin: 0 15px;
}
.navbar a:hover {
    text-decoration: underline;
}

.hero img {
    width: 100%;
    height: 80vh;
}

.container {
    max-width: 800px;
    margin: auto;
}
.container h2 {
    font-style: italic;
    font-weight: bold;
    color: blue;
    font-size: 40px;
}
.job-title {
    font-size: 22px;
    font-weight: bold;
    text-decoration: underline;
}
.job-section {
    margin-bottom: 30px;
}
.job-description {
    margin-top: 10px;
}
.job-description p {
    margin: 5px 0;
}
ul {
    margin-top: 5px;
    padding-left: 20px;
}
ul li {
    margin-bottom: 5px;
}
.contact {
    font-weight: bold;
    margin-top: 20px;
}

footer {
    background-color: #2a8b9d;
    color: white;
    padding: 30px 10%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left h2 {
    font-size: 24px;
    margin: 0;
}

.footer-left p {
    font-size: 16px;
    margin-top: 5px;
}

.footer-right p {
    margin: 5px 0;
    font-size: 16px;
}

.footer-right a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

