/* Global Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	background-color: #f7f7f7;
	color: #333;
}

a {
	text-decoration: none;
	color: inherit;
}

/* Guide Section */
.guide-section {
	padding: 80px 16px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	background-color: #fff;
}

.guide-section .heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin-bottom: 40px;
	text-align: center;
}

.guide-section img {
	background: var(--bblue);
	height: 200px;
	width: 150px;
	border-radius: 8px;
	object-fit: cover;
}

.guide-section h2 {
	font-size: 2rem;
	font-weight: bold;
	color: var(--bblue);
	text-transform: uppercase;
}

.guide-section span {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.4rem;
	color: #333;
	padding: 16px 0;
	text-align: center;
	width: 100%;
}

.guide-section .text-div {
	width: 100%;
	max-width: 1200px;
	margin-bottom: 40px;
	padding: 0 16px;
	text-align: left;
}

.guide-section h3,
.guide-section h4 {
	font-size: 1.6rem;
	color: var(--bblue);
	margin-bottom: 8px;
	font-weight: bold;
}

.guide-section p {
	font-size: 1rem;
	line-height: 1.8;
	color: #555;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
	.guide-section {
		padding: 40px 16px;
	}

	.guide-section .heading {
		flex-direction: column;
		gap: 16px;
	}

	.guide-section h2 {
		font-size: 1.6rem;
	}

	.guide-section span {
		font-size: 1.2rem;
	}

	.guide-section img {
		width: 120px;
		height: 160px;
	}

	.guide-section .text-div {
		margin-bottom: 24px;
	}

	.guide-section h3,
	.guide-section h4 {
		font-size: 1.4rem;
	}

	.guide-section p {
		font-size: 1rem;
	}
}

@media screen and (max-width: 480px) {
	.guide-section {
		padding: 24px 16px;
	}

	.guide-section h2 {
		font-size: 1.4rem;
	}

	.guide-section img {
		width: 100px;
		height: 140px;
	}

	.guide-section span {
		font-size: 1.1rem;
	}

	.guide-section .text-div {
		margin-bottom: 16px;
	}
}
