body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	background-image: url('images/GD3.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

header {
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

nav li {
	margin: 0 10px;
}

nav a {
	color: #333;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}

nav a:hover {
	color: #F28705;
}

main {
	max-width: 960px;
	margin: 0 auto;
	padding: 40px;
}

section {
	margin: 80px 0;
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	padding: 40px;
}


h2 {
font-size: 36px;
margin-bottom: 40px;
}

ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
}

li {
margin: 0 20px 40px 0;
flex: 1 0 300px;
}

h3 {
font-size: 24px;
margin-bottom: 20px;
}

p {
font-size: 18px;
line-height: 1.5;
margin-bottom: 20px;
}

.gallery {
display: flex;
flex-wrap: wrap;
margin-bottom: 40px;
}

.gallery img {
	flex: 1 0 300px;
	margin-right: 20px;
	margin-bottom: 20px;
	max-height: 200px;
	object-fit: cover;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

button {
background-color: #F28705;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}

button:hover {
background-color: #E26B00;
}

footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}

footer p {
margin: 0;
}

/* Font Awesome Icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css")