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

:root {
	--color-primary: #007bff;
	--color-secondary: #6c757d;
	--color-success: #28a745;
	--color-danger: #dc3545;
	--color-white: #ffffff;
	--color-light-gray: #f8f9fa;
	--color-dark-gray: #343a40;
	--color-black: #000000;
	--font-primary: 'Roboto', sans-serif;
	--font-secondary: 'Playfair Display', serif;
}

html {
	scroll-behavior: smooth;
}

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

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

/* Header & Navigazione */
.header {
	background-color: var(--color-primary);
	color: var(--color-white);
	padding-bottom: 50px;
	position: relative;
}

.navigation {
	background-color: var(--color-primary);
	padding: 15px 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	color: var(--color-white);
	font-size: 1.8em;
	font-weight: bold;
	text-decoration: none;
	font-family: var(--font-secondary);
}

.nav-links {
	list-style: none;
	display: flex;
}

.nav-links li {
	margin-left: 25px;
}

.nav-links a {
	color: var(--color-white);
	text-decoration: none;
	font-weight: 700;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: var(--color-light-gray);
}

.hero-content {
	text-align: center;
	padding-top: 100px;
}

.hero-content h1 {
	font-family: var(--font-secondary);
	font-size: 2.5em;
	margin-bottom: 10px;
}

.hero-content p {
	font-size: 1.2em;
	opacity: 0.9;
}

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

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

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

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

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

p {
	margin-bottom: 20px;
	font-size: 1em;
	color: var(--color-secondary);
}

.text-content p {
	color: var(--color-dark-gray);
}

ul,
ol {
	margin-bottom: 20px;
	padding-left: 20px;
}

li {
	margin-bottom: 10px;
}

strong {
	color: var(--color-dark-gray);
}

/* Specifiche per la pagina index.html */
.section-registration {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.form-block {
	background-color: var(--color-white);
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 500px;
	margin-bottom: 40px;
	order: 1; /* Sposta il blocco del form in alto */
}

.form-intro {
	text-align: center;
	margin-bottom: 25px;
}

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

.registration-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: var(--color-dark-gray);
}

.registration-form input {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--color-secondary);
	border-radius: 5px;
	font-size: 1em;
}

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

.cta-button:hover {
	background-color: #218838;
}

.form-status {
	margin-top: 15px;
	text-align: center;
	font-weight: bold;
}

.text-content {
	width: 100%;
	max-width: 800px;
	text-align: justify;
	order: 2; /* Sposta il blocco di testo in basso */
}

/* Specifiche per la pagina faq.html */
.faq-item {
	background-color: var(--color-white);
	border: 1px solid #dee2e6;
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

/* Footer */
.footer {
	text-align: center;
	padding: 25px 0;
	background-color: var(--color-dark-gray);
	color: var(--color-light-gray);
}

/* Responsività */
@media (min-width: 768px) {
	.section-registration .container {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 50px;
	}
	.form-block {
		order: 1;
		width: 40%;
		position: sticky;
		top: 100px;
	}
	.text-content {
		order: 2;
		width: 60%;
	}
}

@media (max-width: 767px) {
	.nav-container {
		flex-direction: column;
	}
	.nav-links {
		margin-top: 10px;
		justify-content: center;
	}
	.nav-links li {
		margin: 0 10px;
	}
	.hero-content h1 {
		font-size: 2em;
	}
	.form-block {
		order: -1;
	}
}

.hero-content p {
	color: var(--color-light-gray);
}
img {
	width: 100%;
	border-radius: 12px;
}
.qezvoro {
	padding: 40px 20px;
	background: #fff;
	color: #222;
	font-family: 'Inter', Arial, sans-serif;
	line-height: 1.6;
}

.qezvoro__container {
	max-width: 960px;
	margin: 0 auto;
}

.qezvoro__title {
	font-size: 1.8rem;
	margin-bottom: 25px;
	color: #111;
	font-weight: 700;
}

.qezvoro__subtitle {
	font-size: 1.3rem;
	margin: 20px 0 12px;
	color: #0066cc;
	font-weight: 600;
}

.qezvoro__subsubtitle {
	font-size: 1.1rem;
	margin: 16px 0 10px;
	color: #444;
	font-weight: 600;
}

.qezvoro__text {
	margin-bottom: 12px;
	font-size: 1rem;
	color: #333;
}

.qezvoro__table-wrap {
	overflow-x: auto;
	margin: 20px 0;
}

.qezvoro__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.qezvoro__table th,
.qezvoro__table td {
	padding: 12px 16px;
	border: 1px solid #ddd;
	text-align: left;
}

.qezvoro__table th {
	background: #f5f7fa;
	font-weight: 600;
	color: #333;
}

.qezvoro__section {
	margin-bottom: 30px;
}

/* 📱 Адаптивность */
@media (max-width: 768px) {
	.qezvoro__title {
		font-size: 1.5rem;
	}
	.qezvoro__subtitle {
		font-size: 1.1rem;
	}
	.qezvoro__text {
		font-size: 0.95rem;
	}
	.qezvoro__table th,
	.qezvoro__table td {
		font-size: 0.9rem;
		padding: 10px;
	}
}
