
/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styles */
header {
    background-color: #2C3E50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

    header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

    nav ul li {
        margin: 0 15px;
    }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

            nav ul li a:hover {
                color: #1ABC9C;
            }

/* Main Content Styles */
main {
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Sections */
section h2 {
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

section ul {
    list-style-type: none;
    padding: 0;
}

    section ul li {
        margin-bottom: 10px;
    }

        section ul li a {
            color: #1ABC9C;
            font-size: 1.1rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            section ul li a:hover {
                color: #2C3E50;
            }

/* Footer Styles */
footer {
    background-color: #2C3E50;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
    }

        nav ul li {
            margin: 10px 0;
        }

    main {
        padding: 15px;
    }

    section h2 {
        font-size: 1.5rem;
    }

    section p, section ul li {
        font-size: 1rem;
    }
}

table {
            width: 80%; /* Adjust width as needed */
            border-collapse: collapse; /* Removes space between borders */
            margin: 20px auto; /* Centers the table with some margin */
            font-family: Arial, sans-serif;
        }
        th, td {
            border: 1px solid #dddddd; /* Adds a light grey border to cells */
            text-align: left; /* Aligns text to the left */
            padding: 8px; /* Adds some padding inside cells */
        }
        th {
            background-color: #f2f2f2; /* Light grey background for headers */
            color: #333; /* Darker text for headers */
        }
        tr:nth-child(even) {
            background-color: #f9f9f9; /* Zebra striping for even rows */
        }
        caption {
            caption-side: top;
            font-size: 1.2em;
            font-weight: bold;
            margin-bottom: 10px;
        }