body {
    font-family: 'Lato', sans-serif;
    background-color: #121212;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
}

header {
    background: #1e1e1e;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
}

nav a:hover {
    color: #007bff;
}

main {
    padding-top: 60px;
}

section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    border-bottom: 1px solid #333;
}

#hero {
    text-align: center;
    padding: 100px 20px;
    border-bottom: none;
}

#hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.5rem;
    color: #a0a0a0;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
}

.job, .education-item {
    margin-bottom: 30px;
}

.job h3, .education-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.job .title, .education-item p {
    font-style: italic;
    color: #a0a0a0;
    margin-bottom: 10px;
}

ul {
    list-style: disc;
    padding-left: 20px;
}

#skills ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

#skills li {
    display: inline-block;
    background: #333;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
}

#contact {
    text-align: center;
}

#contact a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

#contact a:hover {
    color: #FFFFFF;
}

footer {
    text-align: center;
    padding: 20px;
    background: #1e1e1e;
}

@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1.2rem;
    }
}
