/* Title font-face */
@font-face {
	font-family: 'Montserrat';
	src: url('./fonts/Montserrat-Bold.ttf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: url('./fonts/Montserrat-ExtraBold.ttf') format('opentype');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

/* Subtitle font-face */

@font-face {
	font-family: 'Noto Sans';
	src: url('./fonts/NotoSans-Regular.ttf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Noto Sans';
	src: url('./fonts/NotoSans-Bold.ttf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Noto Sans';
	src: url('./fonts/NotoSans-Italic.ttf') format('opentype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Noto Sans';
	src: url('./fonts/NotoSans-BoldItalic.ttf') format('opentype');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

/* root variables */
:root {
	/* Colors: */
	--black: #000000;
	--secondary: #e1bc95;
	--primary: #562b3e;
	--white: #ffffff;
	--unnamed-color-002134: #002134;

	/* Font/text values */
	--title-font: 'Montserrat';
	--subtitle-font: 'Noto Sans';
	--font-size-18: 18px;
	--font-size-20: 20px;
	--font-size-50: 50px;
	--character-spacing-0: 0px;
	--line-spacing-24: 24px;
	--line-spacing-27: 27px;
	--line-spacing-90: 90px;
	--text-transform-uppercase: uppercase;
}

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	font-size: 16px;
	font-weight: 400;
	scroll-behavior: smooth;

	max-width: 1920px;
	margin: 0 auto;
}

.container {
	padding: 42px;
}

.hero {
	position: relative;
	width: 100%;
	min-height: 580px;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 40% 50%;
	z-index: -1;
	will-change: auto;
	backface-visibility: hidden;
}

.logo {
	height: 40px;
	width: auto;
	margin-left: -8px;
	margin-bottom: 35px;
}

.hero-before-title {
	display: none;
}

.hero-title {
	font-family: var(--title-font);
	font-size: 24px;
	color: var(--primary);
	font-weight: 800;
	letter-spacing: 0px;
	line-height: 30px;
	margin-bottom: 10px;
}

.hero-subtitle {
	font-family: var(--subtitle-font);
	font-size: 13px;
	color: var(--black);
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 18px;
	margin-bottom: 50px;
}

.cta-button {
	background-color: var(--primary);
	color: var(--white);
	font-family: var(--subtitle-font);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 18px;
	padding: 10px 20px;
	border-radius: 10px;
}

@keyframes bounce {
	0% {
		transform: translateX(-50%) translateY(0);
	}
	25% {
		transform: translateX(-50%) translateY(-15px);
	}
	50% {
		transform: translateX(-50%) translateY(0);
	}
	75% {
		transform: translateX(-50%) translateY(-8px);
	}
	100% {
		transform: translateX(-50%) translateY(0);
	}
}

.icon-button {
	width: 40px;
	height: 25px;
	background-color: var(--primary);
	mask-image: url('./assets/icons/arrow-down-icon.svg');
	mask-size: cover;
	mask-position: center;
	cursor: pointer;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
	z-index: 2;
}

.intro-title {
	font-family: var(--title-font);
	font-size: 21px;
	color: var(--primary);
	font-weight: 800;
	letter-spacing: 0px;
	line-height: 28px;
	margin-bottom: 4px;
	text-align: center;
}

.intro-subtitle {
	font-family: var(--subtitle-font);
	font-size: 13px;
	color: var(--black);
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 18px;
	margin-bottom: 30px;
	text-align: center;
}

.intro-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.intro-content-item {
	background-color: var(--primary);
	border-radius: 40px;
	color: var(--white);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	width: 288px;
	min-height: 280px;

	img {
		height: 100px;
	}

	/* Make all SVG images white */
	img[src$='.svg'] {
		filter: brightness(0) invert(1);
	}

	/* Alternative approach for SVGs - if the filter doesn't work, use this */
	svg {
		fill: var(--white) !important;
	}

	/* Specific targeting for different sections */
	.intro-content-item img,
	.steps-content-item img,
	.company-content-item img {
		filter: brightness(0) invert(1);
	}
}

.intro-content-item-title {
	font-family: var(--title-font);
	font-size: 20px;
	color: var(--white);
	font-weight: 700;
	letter-spacing: 0px;
	line-height: 24px;
	margin-bottom: 7px;
}

.intro-content-item-description {
	font-family: var(--subtitle-font);
	font-size: 13px;
	color: var(--white);
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 18px;
	margin-bottom: 0px;
}

.produits-section {
	background-color: var(--secondary);

	.container {
		padding-bottom: 0px;
	}
}

.produits-title {
	font-family: var(--title-font);
	font-size: 22px;
	color: var(--primary);
	font-weight: 800;
	letter-spacing: 0px;
	line-height: 30px;
	margin-bottom: 8px;
	text-align: center;
}

.produits-subtitle {
	font-family: var(--subtitle-font);
	font-size: 13px;
	color: var(--primary);
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 18px;
	margin-bottom: 24px;
	text-align: center;
}

.produits-content {
	width: 100%;
	display: flex;
	overflow: auto;
	gap: 26px;
	padding: 24px;
}

.produits-content-item {
	width: 346px;
	flex-shrink: 0;

	img {
		width: 346px;
		height: 346px;
		object-fit: cover;
	}
}

.produits-content-item-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 30px 30px 30px;
	background-color: var(--white);
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
	text-align: center;
	min-height: 150px;
}

.produits-content-item-title {
	font-family: var(--subtitle-font);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0px;
	line-height: 33px;
	margin-bottom: 7px;
}

.produits-content-item-description {
	font-family: var(--subtitle-font);
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 24px;
	margin-bottom: 0px;
}

.steps-section {
	background-color: var(--primary);
	color: var(--white);

	/* Make all SVG images white */
	img[src$='.svg'] {
		filter: brightness(0) invert(1);
	}

	/* Alternative approach for SVGs - if the filter doesn't work, use this */
	svg {
		fill: var(--white) !important;
	}
}

.steps-title {
	font-family: var(--title-font);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0px;
	line-height: 30px;
	margin-bottom: 36px;
	text-align: center;
}

.steps-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 40px 20px;
	position: relative;
	counter-reset: step-counter;
	max-width: 500px;
	margin: 0 auto;
}

.steps-content-item {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 26px;
	position: relative;
	counter-increment: step-counter;

	img {
		width: 68px;
		height: auto;
		z-index: 2;
		position: relative;
	}
}

.candidate {
	&::before {
		content: '';
		position: absolute;
		left: 24px;
		top: 16px;
		width: 40px;
		height: 36px;
		background-color: var(--primary);
		border-radius: 50%;
		z-index: 2;
	}
}
.package {
	&::before {
		content: '';
		position: absolute;
		left: 0;
		top: 6px;
		width: 40px;
		height: 40px;
		background-color: var(--primary);
		z-index: 2;
	}
}
.test {
	&::before {
		content: '';
		position: absolute;
		left: 0;
		top: 11px;
		width: 50px;
		height: 52px;
		background-color: var(--primary);
		z-index: 2;
	}
}
.content {
	&::before {
		content: '';
		position: absolute;
		left: 0;
		top: 6px;
		width: 50px;
		height: 56px;
		background-color: var(--primary);
		z-index: 2;
	}
}

.steps-content-item-title {
	font-family: var(--subtitle-font);
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0px;
	line-height: 26px;
	margin-bottom: 0px;
	position: relative;
}

.steps-content-item-title::before {
	content: counter(step-counter) '.';
	position: absolute;
	left: -30px;
	top: 0;
	font-family: var(--subtitle-font);
	font-size: 20px;
	font-weight: 400;
	color: var(--white);
	background-color: var(--primary);
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.steps-content-item-description {
	font-family: var(--subtitle-font);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 18px;
	margin-bottom: 0px;
}

.steps-content-line {
	position: absolute;
	top: 0px;
	left: 53px;
	width: 1.3px;
	height: 100%;
	background-color: var(--white);
	z-index: 1;
}

.company-section {
	position: relative;
	height: 417px;

	.container {
		padding: 60px 40px 40px 40px;
	}
}

.company-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 70% 50%;
	z-index: -1;
	color: var(--white);
}

.company-title {
	font-family: var(--title-font);
	color: var(--white);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0px;
	line-height: 30px;
	margin-bottom: 14px;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.company-subtitle {
	font-family: var(--subtitle-font);
	color: var(--white);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 18px;
	margin-bottom: 24px;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.company-content {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 30px;

	img {
		width: 10px;
		transform: rotate(45deg);
		margin-top: 5px;
	}
	/* Make all SVG images white */
	img[src$='.svg'] {
		filter: brightness(0) invert(1);
	}

	/* Alternative approach for SVGs - if the filter doesn't work, use this */
	svg {
		fill: var(--white) !important;
	}
}

.company-content-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.company-content-item-title {
	font-family: var(--subtitle-font);
	color: var(--white);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 20px;
	margin-bottom: 0px;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.community-section {
	background-color: var(--secondary);
}

.community-title {
	font-family: var(--title-font);
	color: var(--primary);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0px;
	line-height: 30px;
	margin-bottom: 14px;
	text-align: center;
}

.community-subtitle {
	font-family: var(--subtitle-font);
	color: var(--primary);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 18px;
	margin-bottom: 24px;
	text-align: center;
}

.reviews-section {
	background-color: #e1bc9533;
}

.reviews-title {
	font-family: var(--title-font);
	color: var(--primary);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0px;
	line-height: 30px;
	margin-bottom: 14px;
	text-align: center;
}

.reviews-subtitle {
	font-family: var(--subtitle-font);
	color: var(--black);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 18px;
	margin-bottom: 24px;
	text-align: center;
}

.reviews-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 40px;
	gap: 26px;
}

.reviews-content-item {
	width: 345px;
	height: 345px;
	overflow: hidden;
	border-radius: 40px;
	position: relative;

	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.reviews-text-container {
	position: absolute;
	bottom: 40px;
	left: 34px;
	width: 227px;
	z-index: 2;

	&.right {
		left: 73px;
	}
}

.reviews-text {
	font-family: var(--subtitle-font);
	color: var(--white);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 18px;
	margin-bottom: 9px;
	text-align: center;
}

.reviews-author {
	font-family: var(--subtitle-font);
	color: var(--white);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0px;
	margin-bottom: 0px;
	text-align: center;
}

.application-section {
}

.application-title {
	font-family: var(--title-font);
	color: var(--primary);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0px;
	line-height: 30px;
	margin-bottom: 14px;
	text-align: center;
}

.application-subtitle {
	font-family: var(--subtitle-font);
	color: var(--black);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 18px;
	margin-bottom: 24px;
	text-align: center;
}

.faq-section {
	background-color: var(--primary);

	.container {
		padding: 40px 20px;
	}
}

.faq-title {
	font-family: var(--title-font);
	color: var(--white);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0px;
	line-height: 30px;
	margin-bottom: 14px;
	text-align: center;
}

.faq-content {
	max-width: 800px;
	margin: 0 auto;
}

/* FAQ Accordion Styles - Matching Original FAQ Design */
.accordion-item {
	margin-bottom: 10px;
	overflow: hidden;
	width: 100%;
	color: var(--white);
	border-bottom: 1px solid var(--white);
}

.accordion-button {
	width: 100%;
	background: transparent;
	border: none;
	padding: 10px 10px 10px 10px;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	transition: all 0.3s ease;
	color: var(--white);
}

.accordion-button.collapsed {
	padding-bottom: 10px;
}

.accordion-button:focus {
	outline: none;
	background: transparent;
}

.accordion-button:active {
	background: transparent;
}

.accordion-button:hover {
	background: transparent;
}

.accordion-button h3 {
	font-family: var(--subtitle-font);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0px;
	line-height: 18px;
	flex: 1;
}

.accordion-icon {
	font-size: 15px;
	font-weight: bold;
	margin-left: 20px;
	margin-top: -5px;
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: transparent;
}

.accordion-content.active {
	max-height: 500px;
}

.accordion-content-inner {
	padding: 0 10px 10px 10px;
}

.accordion-content-inner ul {
	padding-left: 20px;
	list-style-type: decimal;
	margin-left: 10px;
}

.accordion-content-inner li {
	font-family: var(--subtitle-font);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 18px;
	margin-bottom: 0;
}

.accordion-content-inner p {
	font-family: var(--subtitle-font);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 18px;
	margin: 0;
}

.accordion-content-inner a {
	color: var(--white);
	text-decoration: underline;
}

.footer {
	background-color: var(--primary);
	color: var(--white);
}

.footer-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0px 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-section {
	max-width: 380px;
	img {
		width: 160px;
		margin-left: -8px;
		margin-bottom: 20px;
	}
	/* Make all SVG images white */
	img[src$='.svg'] {
		filter: brightness(0) invert(1);
	}

	/* Alternative approach for SVGs - if the filter doesn't work, use this */
	svg {
		fill: var(--white) !important;
	}
}

.footer-right-sections {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.footer-section {
	margin-bottom: 20px;

	a {
		font-family: var(--subtitle-font);
		font-size: 13px;
		font-weight: 400;
		line-height: 15px;
		color: rgba(255, 255, 255, 0.6);
		text-decoration: underline;
	}
}

.footer-section-quote {
	font-family: var(--subtitle-font);
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
	color: rgba(255, 255, 255, 0.6);
}

.footer-section-resources {
	font-family: var(--subtitle-font);
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
	color: var(--white);
}

.footer-section-follow {
	font-family: var(--subtitle-font);
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
	color: var(--white);
}

.social-links {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.social-icon {
	width: 30px;
	height: 30px;
	background-color: var(--black);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;

	img {
		width: 20px !important;
		height: 20px !important;
		margin: 0;
		filter: brightness(0) invert(1);
	}

	&.instagram {
		img {
			width: 16px !important;
			height: 16px !important;
		}
	}
}

.footer-bottom {
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 20px 40px;

	p {
		font-family: var(--subtitle-font);
		font-size: 13px;
		font-weight: 400;
		line-height: 18px;
		color: rgba(255, 255, 255, 0.2);
		text-align: center;
	}
}

@media (min-width: 800px) {
	.hero-background {
		transform: none;
	}

	.logo {
		height: 80px;
		width: auto;
		margin: 0 auto 40px;
	}

	.hero-content {
		width: 60%;
		float: right;
	}

	.hero-before-title {
		display: block;
		background-color: var(--secondary);
		color: var(--primary);
		font-family: var(--subtitle-font);
		font-size: 11px;
		font-weight: 400;
		letter-spacing: 1.1px;
		line-height: 15px;
		padding: 6px 15px;
		border-radius: 30px;
		width: fit-content;
		margin-bottom: 20px;
	}

	.hero-title {
		font-size: 35px;
		line-height: 44px;
	}

	.hero-subtitle {
		font-size: 13px;
		line-height: 18px;
	}

	.section-title {
		font-size: 32px !important;
		line-height: 40px !important;
	}

	.section-subtitle {
		font-size: 16px !important;
		line-height: 22px !important;
	}

	.produits-subtitle {
		max-width: 600px;
		margin: 0 auto;
	}

	.company-section {
		height: 560px;

		.container {
			padding: 60px;
		}
	}

	.company-title {
		max-width: 500px;
	}
	.company-subtitle {
		max-width: 600px;
	}

	.footer-content {
		padding: 0px;
		justify-content: center;
	}
}

@media (min-width: 1124px) {
	.hero-background {
		transform: none;
	}

	.hero {
		min-height: 620px;
	}

	.logo {
		height: 90px;
		width: auto;
		margin: 0 auto 40px;
	}

	.hero-content {
		width: 55%;
		float: right;
	}

	.hero-before-title {
		display: block;
		background-color: var(--secondary);
		color: var(--primary);
		font-family: var(--subtitle-font);
		font-size: 11px;
		font-weight: 400;
		letter-spacing: 1.1px;
		line-height: 15px;
		padding: 6px 15px;
		border-radius: 30px;
		width: fit-content;
		margin-bottom: 20px;
	}

	.hero-title {
		font-size: 42px;
		line-height: 48px;
	}

	.hero-subtitle {
		font-size: 16px;
		line-height: 22px;
	}

	.section-title {
		font-size: 36px !important;
		line-height: 48px !important;
	}

	.section-subtitle {
		font-size: 18px !important;
		line-height: 26px !important;
	}

	.cta-button {
		background-color: var(--primary);
		color: var(--white);
		font-family: var(--subtitle-font);
		font-size: 16px;
		font-weight: 400;
		letter-spacing: 0px;
		line-height: 22px;
		padding: 12px 20px;
		border-radius: 10px;
	}

	.produits-subtitle {
		max-width: 900px;
		margin: 0 auto;
	}

	.intro-content {
		flex-direction: row;
		justify-content: center;
		gap: 24px;
	}

	.intro-content-description {
		font-size: 18px;
		line-height: 24px;
	}

	.steps-content {
		flex-direction: row;
		justify-content: center;
		max-width: 1200px;
		gap: 40px;
	}

	.steps-content-line {
		width: 100%;
		height: 2px;
		left: 0px;
		top: 80px;
	}

	.steps-content-item {
		width: 220px;
		max-width: 220px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		position: relative;
		counter-increment: step-counter;

		img {
			width: 80px;
			height: auto;
			z-index: 2;
			position: relative;
		}
	}

	.candidate {
		&::before {
			content: '';
			position: absolute;
			left: 98px;
			top: 16px;
			width: 47px;
			height: 50px;
			background-color: var(--primary);
			border-radius: 50%;
			z-index: 2;
		}
	}
	.package {
		&::before {
			content: '';
			position: absolute;
			left: 78px;
			top: 6px;
			width: 62px;
			height: 60px;
			background-color: var(--primary);
			z-index: 2;
		}
	}
	.test {
		&::before {
			content: '';
			position: absolute;
			left: 86px;
			top: 11px;
			width: 48px;
			height: 52px;
			background-color: var(--primary);
			z-index: 2;
		}
	}
	.content {
		&::before {
			content: '';
			position: absolute;
			left: 79px;
			top: 6px;
			width: 64px;
			height: 56px;
			background-color: var(--primary);
			z-index: 2;
		}
	}

	.steps-content-item-title {
		font-size: 22px;
		line-height: 29px;
		text-transform: uppercase;
	}

	.steps-content-item-title::before {
		content: counter(step-counter) '.';
		position: absolute;
		left: 40px;
		top: -50px;
		font-family: var(--subtitle-font);
		font-size: 36px;
		font-weight: 400;
		color: var(--white);
		background-color: var(--primary);
		border-radius: 50%;
		width: 24px;
		height: 24px;
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: normal;
	}

	.company-section {
		height: 700px;

		.container {
			padding: 100px;
			max-width: 1600px;
			margin: 0 auto;
		}
	}

	.reviews-content {
		flex-direction: row;
		justify-content: center;
		gap: 40px;
	}

	.reviews-content-item {
		height: 500px;
	}

	.reviews-text-container {
		position: absolute;
		top: 50px;
		bottom: unset;
		left: 34px;
		width: 227px;
		z-index: 2;

		&.right {
			left: 73px;
		}

		&.bottom {
			top: unset;
			bottom: 70px;
		}
	}

	.accordion-button h3 {
		font-size: 17px;
		line-height: 22px;
	}

	.accordion-icon {
		font-size: 20px;
		margin-left: 20px;
		margin-top: -5px;
	}

	.accordion-content-inner li {
		font-size: 17px;
		line-height: 22px;
		margin-bottom: 0;
	}

	.accordion-content-inner p {
		font-size: 17px;
		line-height: 22px;
		margin: 0;
	}
}

@media (min-width: 1920px) {
	.hero {
		min-height: 800px;
	}

	.logo {
		height: 110px;
		width: auto;
		margin: 0 auto 60px;
	}

	.hero-title {
		font-size: 60px;
		line-height: 80px;
		margin-bottom: 20px;
	}

	.hero-subtitle {
		max-width: 860px;
		font-size: 20px;
		line-height: 26px;
	}

	.cta-button {
		font-size: 20px;
		line-height: 28px;
	}

	.section-title {
		font-size: 50px;
		line-height: 60px;
	}

	.section-subtitle {
		font-size: 20px;
		line-height: 28px;
	}

	.company-section {
		height: 800px;
	}

	.company-title {
		margin-bottom: 30px;
	}
	.company-subtitle {
		margin-bottom: 40px;
	}
	.company-content {
		gap: 20px;
	}

	.company-content-item {
		gap: 10px;

		img {
			width: 14px;
			height: auto;
		}
	}

	.company-content-item-title {
		font-size: 18px;
		line-height: 24px;
	}
}

@media (min-width: 1024px) {
	.produits-content {
		width: 100%;
		max-width: 1440px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 26px;
		padding: 24px;
	}

	.produits-content-item {
		width: 100%;

		img {
			width: 100%;
			height: auto;
			aspect-ratio: 1/1;
			object-fit: cover;
		}
	}

	.produits-content-item-wrapper {
		justify-content: flex-start;
		min-height: 140px;
	}

	.produits-content-item-title {
		font-size: 20px;
		line-height: 26px;
	}

	.produits-content-item-description {
		font-size: 13px;
		line-height: 18px;
	}
}

@media (min-width: 1440px) {
	.produits-content-item-wrapper {
		justify-content: flex-start;
		min-height: 150px;
	}

	.produits-content-item-title {
		font-size: 24px;
		line-height: 32px;
	}

	.produits-content-item-description {
		font-size: 18px;
		line-height: 20px;
	}
}
