/* General Styles */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f3f2ef;
    color: #1c1c1c;
}

/* Header */
header {
    background: #004182;
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 24px;
    font-weight: bold;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    background: white;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #004182;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0;
    display: block;
}
.Education h2 {
    font-weight: bold;
}
nav ul li a:hover {
    color: #0a66c2;
    border-bottom: 3px solid #0a66c2;
}

/* Main Content */
main {
    padding: 40px;
    max-width: 900px;
    margin: auto;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

section {
    margin-bottom: 30px;
}

h2 {
    color: #004182;
    border-bottom: 2px solid #004182;
    padding-bottom: 5px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
    font-weight: bold;
    color: #004182;
}
table, th, td {
    border-collapse: collapse;
    border: 1px solid;
    width: 100%;
    table-layout: fixed;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    background: #f3f2ef;
}

input:focus, textarea:focus {
    border-color: #0a66c2;
    outline: none;
    background: white;
}

button {
    margin-top: 20px;
    padding: 12px;
    background: #0a66c2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #004182;
}

/* Footer */
.footer-section {
    text-align: center;
    padding: 15px;
    background: #004182;
    color: white;
    margin-top: 40px;
    font-size: 14px;
}
