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

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
}

/* Container */
.container {
	width: 80%;
	margin: 0 auto;
	max-width: 1200px;
}

/* Header */
header {
	background-color: #f4f4f4;
	padding: 20px 0;
	text-align: center;
}

header .logo {
	font-size: 1.8rem;
	font-weight: bold;
}

nav ul {
	list-style: none;
}

nav ul li {
	display: inline;
	margin: 0 15px;
}

nav ul li a {
	text-decoration: none;
	color: #333;
}

nav ul li a:hover {
	color: #007bff;
}

/* Hero Section */
#hero {
	background: #4b6c82;
	color: white;
	padding: 80px 0;
	text-align: center;
}

#hero h1 {
	font-size: 2.5rem;
}

#hero p {
	margin: 20px 0;
}

#hero .cta-btn {
	background: #fff;
	color: #007bff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
}

#hero .cta-btn:hover {
	background: #e0e0e0;
}

/* Download Section */
#downloads {
	padding: 60px 0;
	text-align: center;
}

#downloads h2 {
	font-size: 2rem;
	margin-bottom: 40px;
}

.pdf-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.pdf-item {
	background: #f4f4f4;
	padding: 20px;
	border-radius: 5px;
}

.pdf-item img {
	width: 100%;
	height: auto;
	max-width: 300px;     /* Maximum width for the thumbnail */
	max-height: 400px;
}

.download-btn {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 15px;
	background: #6e7277;
	color: white;
	text-decoration: none;
	border-radius: 5px;
}

.download-btn:hover {
	background: #0056b3;
}

/* About Section */
#about {
	padding: 60px 0;
	text-align: center;
}

#about .bio-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

#about img {
	border-radius: 50%;
	width: 150px;
	height: 150px;
}

/* Testimonials */
#testimonials {
	padding: 60px 0;
	background: #f9f9f9;
	text-align: center;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.testimonial {
	background: white;
	padding: 20px;
	border-radius: 5px;
}

.testimonial cite {
	display: block;
	margin-top: 10px;
	font-style: normal;
	font-weight: bold;
}

/* Footer */
footer {
	background-color: #333;
	color: white;
	text-align: center;
	padding: 20px 0;
}

footer a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
}

footer a:hover {
	color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
	#hero h1 {
		font-size: 1.8rem;
	}

	.pdf-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}
