/* Base styles and fonts */
body {
	font-family: "Open Sans", sans-serif;
	line-height: 1.6;
	color: #333;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	background-color: #f9f9f9;
}

/* Quote styling */
.quote {
	font-size: 2.2em;
	font-family: "Georgia", serif;
	color: #2c5282;
	text-align: center;
	padding: 30px 20px;
	margin: 20px 0;
	border-bottom: 3px solid #e2e8f0;
}

/* Section styling */
section {
	background: white;
	padding: 30px;
	margin: 20px 0;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Heading styles */
h2 {
	color: #2c5282;
	font-size: 1.1em;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 2px solid #e2e8f0;
	text-align: center;
}

/* Paragraph styles */
p {
	font-size: 1.1em;
	color: #4a5568;
	margin-bottom: 15px;
}

/* Responsive design */
@media (max-width: 768px) {
	.quote {
		font-size: 1.3em;
		padding: 20px 10px;
	}

	section {
		padding: 20px;
	}

	h2 {
		font-size: 1.5em;
	}

	p {
		font-size: 1em;
	}
}
