/* Reset some default styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
    padding: 20px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid #e3e6eb;
}

header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #007BFF;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #007BFF;
}

header p {
    font-size: 1.2em;
    color: #555;
}

section {
    margin-bottom: 40px;
    padding: 15px;
    border: 1px solid #e3e6eb;
    border-radius: 8px;
    background-color: #f9fbfd;
}

h2 {
    color: #007BFF;
    border-left: 5px solid #007BFF;
    padding-left: 15px;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.job, .degree {
    margin-bottom: 30px;
    padding-left: 10px;
    border-left: 4px solid #dee2e6;
    transition: border-left-color 0.3s, background-color 0.3s;
}

.job:hover, .degree:hover {
    border-left-color: #007BFF;
    background-color: #f1f4f8;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
    color: #333;
}

p {
    font-size: 1em;
    margin-bottom: 10px;
    color: #666;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
}

ul li {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #e3e6eb;
}

footer p {
    font-size: 0.9em;
    color: #777;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }
}
