* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.6;
	color: #333;
}

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

/* Chi Siamo Main Section */
.chi-siamo-hero {
	background: url('background_pattern.svg'),
    linear-gradient(rgba(14, 30, 55, 1), rgba(25, 37, 92, 0.6), rgba(255,255,255,0.6)),  
    center/cover;
	padding: 80px 0;
    padding-top:calc(94px + 3rem);
	text-align: center;
	background-size: cover;
	background-position: center;
	position: relative;
}

.chi-siamo-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}

.chi-siamo-hero-content {
	position: relative;
	z-index: 1;
	color: #fff;
}

.chi-siamo-hero h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.chi-siamo-hero p {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto 30px;
}

.section-title {
	font-size: 2.2rem;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 3px;
	background-color: var(--primary);
}

.content-section {
	padding: 80px 0;
}

.two-column {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}

.column {
	flex: 1;
	min-width: 300px;
}

.img-container {
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.img-container img {
	width: 100%;
	height: auto;
	display: block;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.value-item {
	background-color: #f9f9f9;
	padding: 30px;
	border-radius: 5px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-item i {
	font-size: 2.5rem;
	color: #e74c3c;
	margin-bottom: 20px;
}

.value-item h3 {
	margin-bottom: 15px;
}

.team-section {
	background-color: #f5f5f5;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.team-member {
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
	width: 100%;
	height: auto;
	display: block;
}

.team-member-info {
	padding: 20px;
	text-align: center;
}

.team-member-info h3 {
	margin-bottom: 5px;
}

.team-member-info p {
	color: #777;
	margin-bottom: 10px;
}

.milestones {
	position: relative;
	padding: 60px 0;
}

.milestone-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 4px;
	background-color: var(--primary);
	transform: translateX(-50%);
}

.milestone {
	position: relative;
	margin-bottom: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.milestone:last-child {
	margin-bottom: 0;
}

.milestone-content {
	width: 45%;
	padding: 30px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.milestone:nth-child(odd) .milestone-content {
	margin-left: auto;
}

.milestone-year {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background-color: var(--secondary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 1.2rem;
	z-index: 1;
}

.cta-section {
	background-color: var(--primary);
	color: #fff;
	text-align: center;
	padding: 80px 0;
}

.cta-section h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.cta-section p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 30px;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: #fff;
	color: var(--primary);
	text-decoration: none;
	border-radius: 5px;
	font-weight: 700;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
	background-color: #333;
	color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
	.two-column {
		flex-direction: column;
	}

	.milestones {
		padding-left: 20px;
	}

	.milestone-line {
		left: 0;
		transform: none;
	}

	.milestone {
		flex-direction: column;
		align-items: flex-start;
	}

	.milestone-content {
		width: 100%;
		margin-left: 20px !important;
	}

	.milestone-year {
		left: 0;
		transform: translate(-50%, -50%);
		width: 60px;
		height: 60px;
		font-size: 1rem;
	}
}