/* CarCrush Policy Styles */
body {
	font-family: 'Georgia', serif;
	line-height: 1.6;
	color: #333;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background-color: #f9f9f9;
}

.logo-container {
	text-align: center;
	margin: 0 auto 30px;
}

.logo {
	max-width: 150px;
}

header {
	text-align: center;
	border-bottom: 2px solid #444;
	padding-bottom: 20px;
	margin-bottom: 30px;
}

h1 {
	font-size: 28px;
	margin-bottom: 10px;
	color: #222;
}

h2 {
	font-size: 22px;
	margin-top: 30px;
	margin-bottom: 15px;
	color: #333;
	border-bottom: 1px solid #ddd;
	padding-bottom: 5px;
}

h3 {
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 10px;
	color: #444;
}

p {
	margin-bottom: 15px;
	text-align: justify;
}

ul {
	margin-bottom: 20px;
}

li {
	margin-bottom: 8px;
}

.last-updated {
	font-style: italic;
	color: #666;
	text-align: center;
	margin-bottom: 30px;
}

.section {
	margin-bottom: 30px;
}

footer {
	text-align: center;
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
	color: #666;
	font-size: 14px;
}

.contact {
	font-weight: bold;
}

.emergency-contact {
	margin-top: 10px;
	font-style: italic;
}

strong {
	color: #444;
}

/* Stili per la pagina index */
.legal-hub {
	text-align: center;
	margin: 50px auto;
}

.policy-container {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.policy-card {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	padding: 25px;
	width: 280px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
}

.policy-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.policy-icon {
	font-size: 48px;
	margin-bottom: 20px;
	color: #444;
}

.policy-title {
	font-size: 20px;
	margin-bottom: 15px;
	color: #222;
	border-bottom: none;
}

.policy-description {
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
}

.policy-link {
	display: inline-block;
	background-color: #444;
	color: white;
	padding: 10px 20px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.policy-link:hover {
	background-color: #222;
}

