/* Policy pages common styles */
#policy {
	padding: 120px 0 80px;
	overflow-x: hidden;
	width: 100%;
}

.policy-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px;
}

.policy-container h1 {
	color: var(--secondary-color);
	margin-bottom: 10px;
	text-align: center;
	word-wrap: break-word;
}

.last-updated {
	text-align: center;
	color: #666;
	margin-bottom: 40px;
}

.policy-content h2 {
	color: var(--secondary-color);
	margin-top: 30px;
	margin-bottom: 15px;
	font-size: 22px;
	word-wrap: break-word;
}

.policy-content p,
.policy-content ul {
	margin-bottom: 15px;
}

.policy-content ul {
	padding-left: 20px;
}

.policy-content li {
	margin-bottom: 5px;
}

.policy-content a {
	color: var(--main-color);
	text-decoration: none;
	word-break: break-all;
}

.policy-content a:hover {
	text-decoration: underline;
}

.table-responsive {
	overflow-x: auto;
	max-width: 100%;
	margin-bottom: 20px;
}

.cookie-table {
	width: 100%;
	min-width: 500px;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.cookie-table th,
.cookie-table td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #eee;
}

.cookie-table th {
	background-color: var(--background-color);
	font-weight: 600;
}

.cookie-table tr:hover {
	background-color: rgba(215, 38, 56, 0.05);
}

/* Responsive styles for policy pages */
@media (max-width: 992px) {
	.policy-container {
		padding: 30px;
	}
}

@media (max-width: 768px) {
	#policy {
		padding: 100px 0 60px;
	}

	.policy-container {
		padding: 25px 20px;
	}

	.policy-content h2 {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	#policy {
		padding: 90px 0 40px;
	}

	.policy-container {
		padding: 20px 15px;
	}

	.policy-container h1 {
		font-size: 24px;
	}

	.policy-content h2 {
		font-size: 18px;
	}

	.last-updated {
		margin-bottom: 25px;
	}
}
