body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: #333;
    margin-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px; /* Space between tables */
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #A9D08E; /* First row color */
}

tr:last-child th, tr:last-child td {
    background-color: #A9D08E; /* Last row color */
}

td {
    background-color: #fff;
}

/* Style for header*/

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Top Bar Styles */
.top-bar {
    background-color: #1a1a1a;
    color: #A9D08E;
    padding: 5px 20px;
    text-align: center;
    font-size: 14px;
}

.contact-info {
    margin: 0 10px;
}

.contact-info a {
    color: #A9D08E;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-bottom: 2px solid #A9D08E;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    color: #333;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding-bottom: 5px;
}

.nav-menu a.active {
    border-bottom: 2px solid #A9D08E;
    color: #A9D08E;
}

.nav-menu a:hover {
    color: #A9D08E;
}

/* end of style for header*/


/* Style for Footer*/

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    padding: 0 20px;
    min-width: 200px;
}

.footer-column h3 {
    color: #00ff00;
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid #00ff00;
    padding-bottom: 5px;
}

.footer-column p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #00ff00;
    text-decoration: underline;
}

/* Radio Group Styles */
.radio-group {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.radio-circle {
    width: 10px;
    height: 10px;
    border: 2px solid #00ff00;
    border-radius: 50%;
    margin-right: 5px;
    cursor: pointer;
}

.radio-circle.active {
    background-color: #00ff00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}

/* End of Style for footer*/