/* General Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	background-color: #eae9e3;
	color: #333;
}

/* Header */
header {
	text-align: center;
	background-color: #2c3e50;
}

.logo {
	width: 200px;
}

header h1 {
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 10px;
}

header p {
	font-size: 1.2rem;
	color: #555;
}

/* Navigation Bar */
nav {
	background-color: #2c3e50;
	padding: 0px 0;
	margin-bottom: 30px;
}

nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 30px;
}

nav a {
	text-decoration: none;
	color: white;
	font-weight: bold;
	transition: color 0.3s ease;
	padding: 0 16px;
}

nav a:hover {
	color: #1abc9c;
}

/* Main Content */
main {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 20px;
}

/* Section Headings */
.page-title {
	color: #1abc9c;
}

main h2 {
	color: #2c3e50;
	margin-top: 30px;
	margin-bottom: 10px;
}

/* Paragraphs and Lists */
main p {
	margin-bottom: 15px;
}

main ul {
	margin-left: 20px;
	margin-bottom: 20px;
}

main ul li {
	margin-bottom: 5px;
}

/* Contact */

.contact-wrapper {
	display: flex;
	flex-direction: row;
}

.contact-description {
	display: flex;
	flex-direction: column;
	padding: 20px 0;
}

.contact-info {
	list-style: none;
	padding-left: 20px;
	a {
		text-decoration: none;
	}
}
/* Footer (optional) */
footer {
	text-align: center;
	margin-top: 50px;
	font-size: 0.9rem;
	background-color: #2c3e50;
	color: #f4f4f4;
	display: flex;
	padding: 0 20px;

	.img-container {
		width: 33%;
		img {
			width: 200px;
			padding: 20px;
		}
	}

	ul {
		width: 33%;
		padding-top: 20px;
		list-style: none;
		display: flex;
		flex-direction: column;
		height: 100%;
		color: #1abc9c;

		li {
			text-align: center;

			a {
				text-decoration: none;
				color: #1abc9c;
			}
		}
	}
}
