/* Reset some default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {
    font-family: 'Helvetica', 'Arial', 'Segoe UI', Tahoma, Geneva, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Header */
header {
    background: #008000; /* Dark green */
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Navigation */
nav {
    margin-top: 0.5rem;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, transform 0.2s;
}

nav a:hover {
    color: #a0e0a0; /* lighter green */
    transform: scale(1.05);
}

/* Main content - full width */
main {
    width: 100%;
    padding: 2rem 2rem;
    background-color: #ffffff;
    min-height: 90vh; /* optional: gives some vertical space */
}

/* Footer - full width */
footer {
    width: 100%;
    background: #d9ffd9;
    color: #555;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.5rem;
    }

    nav a {
        display: block;
        margin: 5px 0;
    }

    main, footer {
        padding: 1rem;
    }
}

.center {
  text-align: center;
}



.education-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.education-table th,
.education-table td {
  text-align: left;
  padding: 10px 20px;
  color: #333;
}

.education-table thead {
  border-bottom: 2px solid #ccc;
}

.education-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

