﻿
main {
	display: flex;
	justify-content: space-between;
	padding: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content {
	width: 65%;
	padding-right: 2rem;
	border-right: 1px solid #ddd;
}

	.content h1 {
		color: #203a47;
		font-size: 2rem;
		margin-bottom: 1rem;
		text-align: center;
	}

	.content p {
		line-height: 1.8;
		margin-bottom: 1rem;
	}

	.content img {
		max-width: 100%;
		height: auto;
		margin-top: 1rem;
		border-radius: 8px;
	}

.faq {
	width: 30%;
	padding-left: 2rem;
}

	.faq h2 {
		color: #203a47;
		font-size: 1.8rem;
		margin-bottom: 1.5rem;
	}

	.faq .question {
		margin: 1rem 0;
		cursor: pointer;
		font-weight: bold;
		color: #e63946;
		padding: 0.5rem 0;
		border-bottom: 1px solid #ddd;
	}

		.faq .question:hover {
			color: #203a47;
		}

	.faq .answer {
		display: none;
		margin-top: 0.5rem;
		font-size: 0.9rem;
		line-height: 1.6;
		color: #555;
	}

.chat-widget {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #00d084;
	color: white;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	font-size: 1.5rem;
	cursor: pointer;
}


