/* General Styles */

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes at least the full height */
}

marquee {
    font-size: 1.5em;
    padding: 10px 0;
}

/* Container and Section Styles */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1; /* Allow the container to grow */
}

.section {
    padding: 40px 20px;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #025e0a;
}

h5 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #333;
}

/* Table Styles */

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: white;
    font-size: 1.5em;
}

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

.table th {
    background-color: #f2f2f2;
    color: #025e0a;
}

.table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table tr:hover {
    background-color: #f1f1f1;
}

/* Link Styles */

a {
    text-decoration: none;
    color: blue;
}

a:hover {
    color: blue;
    text-decoration: underline;
    
}

/* Footer Styles */

.footer {
    text-align: center;
    padding: 20px;
    background-color: #025e0a; /* Green footer */
    color: white;
    margin-top: auto; /* Push the footer to the bottom */
}

.footer a {
    color: #ffcc00;
}

.footer a:hover {
    text-decoration: underline;
}

/* Home link style */
.home-link {
    display: inline-block;
    margin-bottom: 10px; /* Space above the home link */
}

/* Responsive Styles */

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    h2 {
        font-size: 1.5em;
    }

    h5 {
        font-size: 1.2em;
    }

    .table th, .table td {
        padding: 8px;
    }
}
/* Logo Styles */
.partner-logo {
    width: 100px; /* Set width as needed */
    height: auto; /* Maintain aspect ratio */
}