/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Header Styles */
header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #0073b1; /* LinkedIn blue */
}

header h1 {
    font-size: 2.5em;
    color: #0073b1;
}

.subtitle {
    font-size: 1.2em;
    color: #666;
    margin: 10px 0;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #0073b1;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Section Styles */
section {
    margin: 20px 0;
}

h2 {
    font-size: 1.8em;
    color: #0073b1;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.job, .degree {
    margin-bottom: 20px;
}

.job h3, .degree h3 {
    font-size: 1.3em;
    color: #333;
}

.company, .school {
    font-style: italic;
    color: #666;
}

.dates {
    color: #888;
    font-size: 0.9em;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

.skills ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills li {
    background-color: #0073b1;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
}

/* Footer Styles */
footer {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9em;
    color: #666;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        margin: 10px;
        padding: 15px;
    }

    header h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    .skills ul {
        flex-direction: column;
    }
}