/* Globale e Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--color-primary: #1a2a47;
	--color-secondary: #008cba;
	--color-tertiary: #f26522;
	--color-background-light: #f4f7f9;
	--color-background-dark: #e8ebed;
	--color-text: #333;
	--color-text-light: #666;
	--font-primary: 'Montserrat', sans-serif;
	--font-secondary: 'Lora', serif;
}

body {
	font-family: var(--font-primary);
	line-height: 1.6;
	color: var(--color-text);
	background-color: var(--color-background-light);
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	background-color: var(--color-primary);
	color: var(--color-background-light);
	text-align: center;
	padding: 80px 20px 60px;
}

.header h1 {
	font-family: var(--font-secondary);
	font-size: 2.8em;
	margin-bottom: 15px;
}

.header .subtitle {
	font-size: 1.1em;
	color: #fff;
}

/* Sections */
.section {
	padding: 60px 0;
}

.section:nth-of-type(odd) {
	background-color: var(--color-background-light);
}

.section:nth-of-type(even) {
	background-color: var(--color-background-dark);
}

h2 {
	font-family: var(--font-secondary);
	font-size: 2em;
	text-align: center;
	margin-bottom: 40px;
	color: var(--color-primary);
	position: relative;
	padding-bottom: 10px;
}

h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--color-secondary);
	margin: 10px auto 0;
}

h3 {
	font-size: 1.5em;
	margin-top: 30px;
	margin-bottom: 15px;
	color: var(--color-primary);
}

p,
li {
	margin-bottom: 20px;
	color: var(--color-text-light);
}

p strong {
	color: var(--color-primary);
}

ul {
	list-style: none;
	padding-left: 0;
}

ul li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	color: var(--color-text);
}

ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-secondary);
	font-size: 1.2em;
	font-weight: bold;
}

/* Form Section */
.section-intro .content-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 40px;
}

.form-container {
	flex: 1 1 350px;
	background-color: var(--color-white);
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
	text-align: center;
	margin-top: 0;
	margin-bottom: 20px;
	color: var(--color-secondary);
}

.contact-form .form-group {
	margin-bottom: 15px;
}

.contact-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: 700;
}

.contact-form input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1em;
}

.contact-form button {
	display: block;
	width: 100%;
	padding: 15px;
	background-color: var(--color-tertiary);
	color: var(--color-white);
	border: none;
	border-radius: 5px;
	font-size: 1.1em;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.contact-form button:hover {
	background-color: #d85c1e;
}

.text-block {
	flex: 1 1 500px;
}

/* Table */
.table-responsive {
	overflow-x: auto;
	margin-top: 30px;
}

table {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
}

th,
td {
	padding: 15px;
	text-align: left;
	border: 1px solid #ddd;
}

th {
	background-color: var(--color-secondary);
	color: var(--color-white);
	font-weight: 700;
}

td {
	background-color: var(--color-white);
	color: var(--color-text);
}

/* Adaptive Table */
@media (max-width: 768px) {
	table,
	thead,
	tbody,
	th,
	td,
	tr {
		display: block;
	}

	thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	tr {
		margin-bottom: 15px;
		border: 1px solid #ddd;
	}

	td {
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 50%;
		text-align: right;
	}

	td:last-child {
		border-bottom: 0;
	}

	td:before {
		content: attr(data-label);
		position: absolute;
		left: 10px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
		text-align: left;
		font-weight: 700;
		color: var(--color-primary);
	}
}

/* FAQ */
.faq-item {
	margin-bottom: 25px;
	padding: 20px;
	background-color: var(--color-white);
	border-left: 4px solid var(--color-secondary);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
	margin-top: 0;
	color: var(--color-secondary);
}

/* Footer */
.footer {
	text-align: center;
	padding: 25px 0;
	background-color: var(--color-primary);
	color: var(--color-background-light);
	font-size: 0.9em;
}


@media (max-width: 767px) {
	.header h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.7rem;
	}
}

img {
	width: 100%;
	max-width: 560px;
	display: block;
	margin: 20px auto;
}