@charset "utf-8";
/* CSS Document */
body {
            font-family: 'Sylfaen', 'Noto Serif Georgian', 'Arial', sans-serif;
            color: #333; 
			background-color: #F7F8F9; margin: 0; padding: 0;
        }

        /* Header styling */
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #0078AE;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 10; 
			border: 0 solid red; /* Ensures header is above other content */
        }

        header img {
            height: 70px; 
			border: 0 solid red;
        }

        nav ul {
            list-style: none;
            display: flex; 
			border: 0 solid red;
        }

        nav ul li {
            margin: 0 10px; 
			border: 0 solid red;
        }

        nav ul li a {
            color: #FFFFFF;
            text-decoration: none;
            font-weight: bold; 
			font-size: 21px;
        }

        /* Hamburger menu button */
        .menu-toggle {
            display: none;
            font-size: 24px;
            color: white;
            cursor: pointer;
            background: none;
            border: none;
            position: absolute;
            top: 15px;
            right: 20px;
        }

        /* Responsive Menu */
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: #4CAF50;
                z-index: 9; /* Ensures menu is above the banner */
                padding-top: 20px; /* Offset for header height */
            }
            nav ul li {
                text-align: center;
                margin: 10px 0;
            }

            .menu-toggle {
                display: block;
            }

            .menu-open nav ul {
                display: flex;
            }
        }

        /* Responsive Banner */
        .banner {
            width: 100%x;
            height: auto;
            overflow: hidden;
            position: relative;
            margin: 60px 0 0 0; /* Space for fixed header */
        }

        .banner img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* Main content */
        .content {
            padding: 30px;
            max-width: 1000px;
            margin: 20px auto;
            text-align: left; 
			border: 1px solid #f1f1f1; 
			background-color: #FFFFFF;
        }
		.content h1{
			font-size: 28px; 
			color: #333333; 
			text-align: left;
		}
		.content h2{
			font-size: 22px; 
			color: #333333; 
			text-align: left;
		}
		.content p{
			font-size: 19px; 
			color: #333333; 
			text-align: left;
			line-height: 1.4; 
			border: 0 solid red;
		}
		
		.content ul{
			background-color:#E9F0F8; padding: 10px 10px 10px 25px;
		}
		.content ul li{
			font-size: 19px; margin: 10px 0 0 0;
		}

        /* Footer styling */
        footer {
            background-color: #333;
            color: white;
            padding: 20px;
            text-align: center; font-size: 19px;
        }

        footer p, footer a {
            margin: 5px 0;
            color: #ccc;
            font-size: 20px;
        }

        footer a {
            text-decoration: none;
            color: #ccc;
        }

        footer a:hover {
            color: #fff;
        }