@import url('https://fonts.googleapis.com/css2?family=Carlito:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Carlito', sans-serif;
    line-height: 1.6;
    padding: 20px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #0a0a0a;
    padding: 20px;
    z-index: 1000;
}

.nav-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

main {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 20px;
}

h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffffff;
}

h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffffff;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #cccccc;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #ffffff;
}

.contact-info {
    margin-top: 40px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.update-item {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.update-date {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 10px;
}

.update-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.job-listing {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.job-title {
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    margin-bottom: 15px;
    transition: opacity 0.3s;
}

.job-title:hover {
    opacity: 0.7;
}

.job-description {
    display: none;
    margin-top: 15px;
    padding-left: 20px;
}

.job-description ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.job-description li {
    margin-bottom: 8px;
    color: #cccccc;
}

