/* Base styles */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(135deg, #0052cc, #2684ff);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

/* Section container */
section {
    background: white;
    margin: 20px auto;
    padding: 25px;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

section h2 {
    border-bottom: 2px solid #0052cc;
    padding-bottom: 5px;
    margin-bottom: 15px;
    color: #0052cc;
}

/* Lists */
ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 5px;
}

/* Jobs */
.job {
    margin-bottom: 20px;
}

.job h3 {
    color: #333;
    margin-bottom: 5px;
}

/* Education section */
.education {
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #0052cc;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}