body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d3d3d3; /* Light gray background color */
}

header {
    background-color: #4CAF50; /* Green background color */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

header .logo {
    width: 150px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 20px;
}

header h1 {
    color: #fff;
    font-size: 2em;
    text-align: center;
    margin: 0;
    flex-grow: 1;
}

nav {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
	
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
	padding-left: 5px;
	padding-bottom: 5px;
	padding-right: 5px;
	padding-top: 5px;
}

nav ul li {
    display: inline;
    margin: 0 10px;
	padding-left: 5px;
	padding-bottom: 5px;
	padding-right: 5px;
	padding-top: 5px;
}

nav ul li a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6c6c6c; /* Gray background color for the links */
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px; /* Rounded corners */
}

nav ul li a:hover {
    background-color: #333; /* Darker background on hover */
}

p {
    text-align: center;
    color: green;
    font-weight: bold;
	font-size: 20px;
}

p1 {
    text-align: center;
    color: green;
    font-weight: bold;
	font-size: 24px;
}

p2 {
	 text-align: center;
	 color: green;
	 font-weight: bold;
	 font-size: 20px;
}
p3 {
	text-align: center;
    color: green;
    font-weight: bold;
	font-size: 40px;
}
p4 {
	text-align: center;
    color: black;
    font-weight: bold;
	font-size: 20px;
}
#title {
    font-size: 24px;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.nav-buttons {
    display: flex;
    flex-direction: column;
	
    align-items: flex-start;
    margin-bottom: 10px;
}

.nav-buttons button {
    margin: 5px 0;
    padding: 10px 20px;
    background-color: gray;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.square-container {
    display: flex;
    padding: 20px;
    background-color: #fff;
    color: #000;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    max-width: 1200px;
}

.text-container {
    flex: 1;
    padding-right: 20px;
    margin-left: 115px;
    font-weight: bold;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
	flex-shrink: 0;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .square-container {
        flex-direction: column;
        align-items: center;
    }

    .text-container {
        padding-right: 0;
        padding-bottom: 20px;
        margin-left: 0;
    }

    .image-container {
        justify-content: center;
        margin-right: 0;
    }

    .header-top {
        flex-direction: column;
        align-items: center;
    }

    header .logo {
        margin: 0 0 10px 0;
        position: static;
        transform: none;
    }

    header h1 {
        margin: 10px 0;
    }
}

main {
    padding: 20px;
    text-align: center;
    background-color: #e0e0e0; /* Light gray content background */
    min-height: 400px; /* Ensure some content height */
}

footer {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 115px;
}
	ul {
    column-count: 2;
	flex-wrap: wrap;
	flex-shrink: shrink;
	padding-bottom: 10px;
	padding-right: 10px;
	padding-left: 10px;
	text-align: left;
	 color: green;
	 font-weight: bold;
	 font-size: 18px;
	 margin: 0 0 20 0;
}