/* terms.css */

body {
	background-color: dodgerblue;
	margin: 0;
	padding: 0;
	max-width: 1536px;
}

.img {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin-left: 10px;
	margin-top: 10px;
}

.logo {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: auto;
}

/* Heading */
h1 {
	text-align: center;
	font-size: 2rem;
	color: #004080;
	margin-bottom: 20px;
}

/* Paragraphs */
p {
	font-size: 17px;
	line-height: 1.6;
	margin-bottom: 15px;
	margin-left: 8vw;
	margin-right: 8vw;
	border: 2px solid red;
	border-radius: 12px;
	padding: 5px;
}

/* Responsive paragraph margins for small screens */
@media (max-width: 600px) {
	p {
		margin-left: 4vw;
		margin-right: 4vw;
	}
}

/* Footer Link */
.footer {
	text-align: center;
	margin-top: 30px;
}

.footer a {
	text-decoration: none;
	color: #fff;
	background-color: #0077cc;
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.footer a:hover {
	background-color: #005fa3;
}