       /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #505;
        }

        /* Banner section - Modular component */
        .banner {
            position: relative;
            height: 150px;
            overflow: hidden;
            background-color: #f0f0aa;
        }

        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .banner-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: yellow;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            background-color: rgba(0,0,100,0.2);
            padding: 20px 40px;
            border-radius: 10px;
        }

        .banner-text h1 {
            font-size: 3rem;
            margin-bottom: 0rem;
        }

        /* Menu bar - Modular component */
        .menu-bar {
            background-color: #2c3e50;
            padding: 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .menu-bar ul {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
        }

        .menu-bar li {
            flex: 1;
        }

        .menu-bar a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            text-align: center;
            transition: background-color 0.3s;
            border-right: 3px solid #CF1023;
        }

        .menu-bar a:last-child {
            border-right: none;
        }

        .menu-bar a:hover {
            background-color: #32767F;
        }

        /* Main content area - Modular component */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        .content-section {
            margin-bottom: 30px;
        }

        .content-section h2 {
            color: #000000;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #000000;
        }

        /* Text boxes - Modular component */
        .text-box {
            background-color: #FDFAE7;
            color: #000000;
			padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .text-box h3 {
            color: #000000;
            margin-bottom: 10px;
        }


        /* Footer - Modular component */
        .footer {
            background-color: #288F8C;
            color: white;
            padding: 30px 20px;
            margin-top: 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-section h3 {
            margin-bottom: 15px;
            color: #000000;
        }

        .footer-section p {
            line-height: 1.6;
        }

        .last-update {
            background-color: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 5px;
            margin-top: 15px;
            text-align: center;
        }
		
		table 	{
				  width: 80%;
				  border= 1;
				}

		
		tr, td 	{
				  border: 1;
				  padding: 8px;
				  text-align: center;
				  background-color: #fffffe;
				}

		th {
			  width: 33%;
			  background-color: #fffffe;
			  font-weight: bold;
			}

        /* Responsive design */
        @media (max-width: 768px) {
            .menu-bar ul {
                flex-direction: column;
            }
            
            .banner-text h1 {
                font-size: 2rem;
            }
            
            .banner {
                height: 250px;
            }

        }