.content-block a {
  color: #fff;
  text-decoration: none;
  background: #E52322;
  display: inline-block;
  padding: 10px 20px;
  margin: 10px auto;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.content-block a:hover {
  background: #c40000;
}

/* SECTION HERO */
.pare-brise-hero {
	background: linear-gradient(to right, #111, #222);
	color: #fff;
	padding: 60px 20px;
	text-align: center;
}

.pare-brise-hero .container {
	max-width: 1200px;
	margin: auto;
}

.pare-brise-hero .logo {
	max-width: 150px;
	margin-bottom: 20px;
}

.pare-brise-hero h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.pare-brise-hero .subtitle {
	font-size: 1.2rem;
	font-weight: 300;
	color: #ccc;
}

/* SECTION QUOTE */
.quote-section {
	background-color: #1a1a1a;
	padding: 40px 20px;
	color: #f5f5f5;
	text-align: center;
	font-style: italic;
}

.quote-section blockquote {
	margin: 0 auto;
	max-width: 800px;
	font-size: 1.1rem;
	border-left: 5px solid #e60000;
	padding-left: 20px;
}

/* SECTION CONTENT */
.pare-brise-content {
	display: flex;
	flex-direction: column;
	gap: 60px;
	padding: 60px 20px;
	background-color: #ffffff;
}

.content-block {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
	justify-content: center;
}

.content-block:nth-child(even) {
	flex-direction: row-reverse;
}

.content-block img {
	max-width: 500px;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.content-block div {
	max-width: 600px;
}

.content-block h2 {
	font-size: 1.8rem;
	margin-bottom: 15px;
	color: #c40000;
}

.content-block p {
	font-size: 1rem;
	color: #333;
	line-height: 1.6;
	margin-bottom: 20px;
}

.content-block a button {
	background-color: #c40000;
	color: #fff;
	padding: 12px 24px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	margin-right: 10px;
	transition: background-color 0.3s;
}

.content-block a button:hover {
	background-color: #a00000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.content-block {
		flex-direction: column !important;
	}

	.pare-brise-hero h1 {
		font-size: 2rem;
	}

	.content-block h2 {
		font-size: 1.5rem;
	}
}

