/* CSS Reset */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Theme Variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --accent-color: #28a745;
    --text-color: #333;
    --background-color: #f9f9f9;
    --header-background-color: #fff;
    --header-text-color: #333;
    --footer-background-color: #fff;
    --footer-text-color: #333;
}

/* Header Styles */
header {
    background-color: var(--header-background-color);
    color: var(--header-text-color);
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 1rem;
}

nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Main Styles */
main {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

section {
    margin-bottom: 2rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

/* Education Styles */
#education ul li {
    margin-bottom: 1rem;
}

#education strong {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

#education p {
    margin-top: 0.5rem;
    color: #777;
}

/* Awards Styles */
#awards ul li {
    margin-bottom: 0.5rem;
}

/* Contact Styles */
#contact p {
    margin-bottom: 0.5rem;
}

#contact a {
    color: var(--primary-color);
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: var(--footer-background-color);
    color: var(--footer-text-color);
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #eee;
}
