/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

/* Navigation */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    background-color: #555;
    padding: 10px;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    text-align: center;
    padding: 20px;
}

/* Resume Tables */
.resume-table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
}

.resume-table th, .resume-table td {
    border: 1px solid #333;
    padding: 10px;
    text-align: center;
}

.resume-table th {
    background-color: #f4f4f4;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .resume-table {
        width: 100%;
        font-size: 14px;
    }

    .resume-table th, .resume-table td {
        padding: 8px;
    }
}
