/********** Template CSS **********/
:root {
	--primary: #2320c9; /* Vibrant Teal/Green */
	--light: #e6f9f3; /* Very Light Teal/Green */
	--dark: #1719a2; /* Darker Teal/Green */
	--text-color: #2e2f53; /* Deep Charcoal Blue for text */
	--accent-color: #202ec9; /* Main accent color, same as primary */
	--accent-hover: #3017a2; /* Darker accent for hover states */
	--bg-color: #f8f9fa; /* Light grey for backgrounds */
	--border-color: #cfe4dd; /* Light teal-ish grey for borders */
}

.fw-medium {
	font-weight: 500 !important;
}

.money_for_gold_item_name {
	background-color: var(--primary); /* Uses primary color */
	color: #fff;
	padding: 4px 10px;
	font-size: 18px;
	display: inline;
	margin-bottom: 8px;
}

.fw-semi-bold {
	font-weight: 600 !important;
}

/*** Button ***/
.btn {
	font-weight: 500;
	text-transform: uppercase;
	transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
	color: #ffffff;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
	margin-right: 30px;
	padding: 25px 0;
	color: #ffffff;
	font-size: 15px;
	text-transform: uppercase;
	outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
	color: #000000;
}

@media (max-width: 991.98px) {
	.navbar-dark .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}
}

/*** Header end ***/
/* Footer */
.footer-section {
	background: linear-gradient(
		135deg,
		var(--text-color) 0%,
		#1a2a3a 100%
	); /* Adjusted dark gradient */
	color: white;
	padding: 3rem 0 2rem;
	margin-top: 5rem;
}

.footer-brand {
	font-size: 2rem;
	font-weight: 700;
	color: white;
	text-decoration: none;
	margin-bottom: 2rem;
	display: inline-block;
	transition: all 0.3s ease;
}

.footer-brand:hover {
	color: var(--accent-color); /* Changed to accent color */
	transform: translateY(-2px);
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.footer-link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.footer-link:hover {
	color: white;
	background: rgba(255, 255, 255, 0.1); /* Lighter rgba for hover */
	border-color: rgba(255, 255, 255, 0.2); /* Lighter rgba for border */
	transform: translateY(-2px);
}

.footer-email {
	color: var(--accent-color); /* Changed to accent color */
	font-weight: 500;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.footer-address {
	color: rgba(255, 255, 255, 0.8); /* Adjusted for readability */
	font-weight: 400;
	font-size: 1rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.footer-divider {
	width: 60px;
	height: 2px;
	background: var(--accent-color); /* Changed to accent color */
	margin: 2rem auto;
	border-radius: 2px;
	opacity: 0.6;
}

.footer-copyright {
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1.5rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
	.footer-nav {
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
	}

	.footer-brand {
		font-size: 1.6rem;
	}

	.footer-email {
		font-size: 1rem;
	}
}

/* Google Fonts - Poppins & Open Sans (Updated based on previous instructions) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

@media (max-width: 700px) {
	.cookie-wrapper {
		width: 100%;
	}
}

.cookie-wrapper {
	position: fixed;
	bottom: 0px;
	right: 0;
	width: 40%;
	background: #fff;
	padding: 15px 25px 22px;
	transition: right 0.3s ease;
	box-shadow: 0 5px 10px rgb(0, 0, 0);
	z-index: 999;
}

@media (max-width: 600px) {
	.cookie-wrapper {
		width: 100%;
	}
}

.cookie-wrapper.show {
	right: 20px;
}

.hidden {
	display: none;
}

header i {
	color: var(--accent-color); /* Uses accent color */
	font-size: 32px;
	text-align: center;
}

header h2 {
	font-weight: 500;
	text-align: center;
}

.data {
	text-align: center;
}

.data p a {
	color: var(--accent-color); /* Uses accent color */
	text-decoration: none;
	text-align: center !important;
}

.data p a:hover {
	text-decoration: underline;
}

.buttons {
	padding: 20px 0px;
	text-align: center;
}

.buttons .cookie-button {
	border: 2px solid var(--accent-color); /* Uses accent color */
	color: #fff;
	padding: 8px 0;
	background: var(--accent-color); /* Uses accent color */
	cursor: pointer;
	width: calc(100% / 2 - 10px);
	transition: all 0.5s ease;
	max-width: 150px;
	border-radius: 0;
}

.buttons #acceptBtn:hover {
	background-color: transparent;
	color: var(--accent-color); /* Uses accent color */
}

#declineBtn {
	background-color: #fff;
	color: var(--accent-color); /* Uses accent color */
}

#declineBtn:hover {
	background-color: var(--accent-color); /* Uses accent color */
	color: #fff;
}

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

/* Original Header (if still present or used) - ensure it uses new vars */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(
		--text-color
	); /* Using text-color for dark header background */
	color: white;
	padding: 1rem;
}

.logo {
	font-size: 1.5rem;
}

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

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

.nav-links a {
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
}

.burger {
	display: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-between;
	height: 21px;
}

.burger div {
	width: 25px;
	height: 3px;
	background-color: white;
}

@media (max-width: 578px) {
	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		position: absolute;
		top: 60px;
		left: 0;
		background-color: var(
			--text-color
		); /* Using text-color for dark header background */
	}

	.nav-links li {
		text-align: center;
		margin: 10px 0;
	}

	.burger {
		display: flex;
	}

	.nav-active {
		display: flex;
	}
}

hr {
	margin: 1rem 0;
	border: 1px solid var(--accent-color); /* Uses accent color */
}

@media (max-width: 768px) {
	.display-3 {
		font-size: 34px;
	}
}

/* new styles */
/* Variables de couleur (already defined in :root, ensuring consistency) */
/* Re-defined here to show what they map to in the new scheme:
:root {
    --bg-color: #f8f9fa;
    --text-color: #2e4053;
    --accent-color: #c92020;
    --light-gray: #e6f9f3;
    --border-color: #cfe4dd;
}
*/

/* Styles globaux (already defined in general reset) */

/* Header fixe */
.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	background-color: var(--bg-color);
	border-bottom: 1px solid var(--border-color);
	backdrop-filter: blur(10px);
}

.navbar-brand {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent-color) !important;
	letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
	color: var(--text-color) !important;
	font-weight: 500;
	padding: 0.5rem 1rem !important;
	transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: var(--accent-color) !important;
}

/* new styles (redundant, already handled by specific block styles) */

/* Bloc Héro */
.hero-section {
	min-height: 100vh;
	/* Updated gradient to use new colors, keeping a dark overlay over the image */
	background: linear-gradient(rgba(46, 64, 83, 0.7), rgba(46, 64, 83, 0.7)),
		url('../img/bg.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
}

.hero-content {
	background: rgba(
		248,
		249,
		250,
		0.95
	); /* Using lighter bg-color with opacity */
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 20px 40px rgba(46, 64, 83, 0.1); /* Adjusted shadow color */
	border: 1px solid rgba(32, 201, 151, 0.1); /* Adjusted border color */
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	/* Updated gradient to use new text and accent colors */
	background: linear-gradient(135deg, var(--text-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.5rem;
	font-weight: 300;
	margin-bottom: 2rem;
	color: var(--accent-color);
	font-style: italic;
}

.hero-description {
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
	color: var(--text-color);
	opacity: 0.9;
}

.btn-hero {
	/* Updated gradient to use new accent colors */
	background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
	color: white;
	padding: 1rem 2.5rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(32, 201, 151, 0.3); /* Adjusted shadow color */
}

.btn-hero:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(32, 201, 151, 0.4); /* Adjusted shadow color */
	color: white;
}

/* Responsive */
@media (max-width: 768px) {
	.hero-content {
		padding: 2rem;
		margin: 1rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.25rem;
	}

	.hero-description {
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.btn-hero {
		padding: 0.8rem 2rem;
		font-size: 1rem;
	}
}

/* Bloc À propos */
.about-section {
	padding: 5rem 0;
	/* Updated gradient to use new colors */
	background: linear-gradient(
		135deg,
		var(--bg-color) 0%,
		rgba(230, 249, 243, 0.5) 100%
	);
}

.about-card {
	background: white;
	border-radius: 25px;
	padding: 3rem;
	box-shadow: 0 15px 35px rgba(46, 64, 83, 0.08); /* Adjusted shadow color */
	border: 1px solid rgba(32, 201, 151, 0.05); /* Adjusted border color */
	margin-bottom: 2rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 3rem;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--accent-color); /* Uses accent color */
	border-radius: 2px;
}

.mission-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--accent-color); /* Uses accent color */
	margin-bottom: 1.5rem;
}

.values-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.values-list li {
	padding: 1rem 0;
	border-bottom: 1px solid rgba(32, 201, 151, 0.1); /* Adjusted border color */
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.values-list li:last-child {
	border-bottom: none;
}

.value-icon {
	color: var(--accent-color); /* Uses accent color */
	font-size: 1.5rem;
	margin-top: 0.2rem;
}

.value-content strong {
	color: var(--accent-color); /* Uses accent color */
	font-weight: 600;
}

/* Bloc Méthodes */
.methods-section {
	padding: 5rem 0;
	background: white;
}

.method-card {
	background: var(--bg-color);
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
	border: 1px solid rgba(32, 201, 151, 0.1); /* Adjusted border color */
	transition: all 0.3s ease;
}

.method-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(46, 64, 83, 0.1); /* Adjusted shadow color */
}

.method-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 15px;
	margin-bottom: 1.5rem;
}

.method-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.method-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
}

.method-list li {
	padding: 0.5rem 0;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.method-list li::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--accent-color); /* Uses accent color */
	border-radius: 50%;
	margin-top: 0.7rem;
	flex-shrink: 0;
}

.format-tag {
	background: var(--accent-color); /* Uses accent color */
	color: white;
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	margin: 0.25rem;
	display: inline-block; /* Added for better rendering */
}

.formats-container {
	margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
	.about-card,
	.method-card {
		padding: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.method-img {
		height: 150px;
	}
}

/* Bloc Avantages */
.advantages-section {
	padding: 5rem 0;
	/* Updated gradient to use new colors */
	background: linear-gradient(
		135deg,
		rgba(32, 201, 151, 0.03) 0%,
		var(--bg-color) 100%
	);
}

.advantage-item {
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
	border: 1px solid rgba(32, 201, 151, 0.08); /* Adjusted border color */
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.advantage-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	/* Updated gradient to use new accent colors */
	background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
}

.advantage-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(46, 64, 83, 0.12); /* Adjusted shadow color */
}

.advantage-icon {
	/* Updated gradient to use new accent colors */
	background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
	color: white;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 10px 30px rgba(32, 201, 151, 0.3); /* Adjusted shadow color */
}

.advantage-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.advantage-text {
	color: var(--text-color);
	opacity: 0.8;
	line-height: 1.7;
}

/* Bloc Comment rejoindre */
.join-section {
	padding: 5rem 0;
	background: white;
}

.join-content {
	background: var(--bg-color);
	border-radius: 25px;
	padding: 3rem;
	border: 1px solid rgba(32, 201, 151, 0.1); /* Adjusted border color */
}

.join-image {
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(46, 64, 83, 0.15); /* Adjusted shadow color */
	width: 100%;
	object-fit: cover;
}

.step-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	padding: 1.5rem;
	background: white;
	border-radius: 15px;
	border: 1px solid rgba(32, 201, 151, 0.08); /* Adjusted border color */
	transition: all 0.3s ease;
}

.step-item:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(46, 64, 83, 0.08); /* Adjusted shadow color */
}

.step-number {
	background: var(--accent-color); /* Uses accent color */
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	flex-shrink: 0;
	box-shadow: 0 8px 20px rgba(32, 201, 151, 0.3); /* Adjusted shadow color */
}

.step-content {
	flex: 1;
}

.step-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.5rem;
}

.step-description {
	color: var(--text-color);
	opacity: 0.8;
	line-height: 1.6;
}

.btn-join {
	/* Updated gradient to use new accent colors */
	background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
	color: white;
	padding: 1.2rem 3rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s ease;
	box-shadow: 0 15px 35px rgba(32, 201, 151, 0.3); /* Adjusted shadow color */
	margin-top: 2rem;
}

.btn-join:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 45px rgba(32, 201, 151, 0.4); /* Adjusted shadow color */
	color: white;
}

/* Responsive */
@media (max-width: 768px) {
	.advantage-item,
	.join-content {
		padding: 2rem;
	}

	.join-image {
		height: 250px;
		margin-bottom: 2rem;
	}

	.step-item {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.step-number {
		margin: 0 auto;
	}
}

/* Bloc Témoignages */
.testimonials-section {
	padding: 5rem 0;
	background: white;
}

.testimonial-card {
	background: var(--bg-color);
	border-radius: 25px;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(32, 201, 151, 0.1); /* Adjusted border color */
	height: 100%;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(46, 64, 83, 0.08); /* Adjusted shadow color */
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(46, 64, 83, 0.15); /* Adjusted shadow color */
}

.testimonial-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.testimonial-content {
	padding: 2.5rem;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--text-color);
	margin-bottom: 1.5rem;
	font-style: italic;
	position: relative;
}

.testimonial-text::before {
	content: '"';
	font-size: 4rem;
	color: var(--accent-color); /* Uses accent color */
	position: absolute;
	top: -20px;
	left: -10px;
	opacity: 0.3;
}

.testimonial-author {
	font-weight: 600;
	color: var(--accent-color); /* Uses accent color */
	font-size: 1rem;
}

/* Bloc Tarifs */
.pricing-section {
	padding: 5rem 0;
	/* Updated gradient to use new colors */
	background: linear-gradient(
		135deg,
		var(--bg-color) 0%,
		rgba(230, 249, 243, 0.5) 100%
	);
}

.pricing-card {
	background: white;
	border-radius: 25px;
	padding: 3rem 2.5rem;
	text-align: center;
	height: 100%;
	border: 2px solid rgba(32, 201, 151, 0.1); /* Adjusted border color */
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.pricing-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color); /* Uses accent color */
	box-shadow: 0 25px 50px rgba(32, 201, 151, 0.15); /* Adjusted shadow color */
}

.pricing-card.featured {
	border-color: var(--accent-color); /* Uses accent color */
	transform: scale(1.05);
}

.pricing-card.featured::before {
	content: 'POPULAR'; /* Changed from French to English, or you can translate to Portuguese 'POPULAR' */
	position: absolute;
	top: 20px;
	right: -30px;
	background: var(--accent-color); /* Uses accent color */
	color: white;
	padding: 0.5rem 3rem;
	font-size: 0.8rem;
	font-weight: 600;
	transform: rotate(45deg);
}

.pricing-plan {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.pricing-amount {
	font-size: 3rem;
	font-weight: 800;
	color: var(--accent-color); /* Uses accent color */
	margin-bottom: 0.5rem;
}

.pricing-currency {
	font-size: 1.2rem;
	opacity: 0.7;
}

.pricing-features {
	text-align: left;
	margin: 2rem 0;
	padding: 0;
	list-style: none;
}

.pricing-features li {
	padding: 0.75rem 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--text-color);
}

.pricing-features li::before {
	content: '';
	width: 8px;
	height: 8px;
	background: var(--accent-color); /* Uses accent color */
	border-radius: 50%;
	flex-shrink: 0;
}

/* Bloc Actualités */
.news-section {
	padding: 5rem 0;
	background: white;
}

.news-item {
	background: var(--bg-color);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(32, 201, 151, 0.1); /* Adjusted border color */
	margin-bottom: 3rem;
	transition: all 0.3s ease;
}

.news-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(46, 64, 83, 0.12); /* Adjusted shadow color */
}

.news-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.news-content {
	padding: 2.5rem;
}

.news-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.news-date {
	background: var(--accent-color); /* Uses accent color */
	color: white;
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
}

.news-text {
	color: var(--text-color);
	line-height: 1.7;
	opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
	.testimonial-content,
	.pricing-card,
	.news-content {
		padding: 2rem;
	}

	.testimonial-image,
	.news-image {
		height: 200px;
	}

	.pricing-amount {
		font-size: 2.5rem;
	}

	.news-title {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
}

/* Кнопка для тарифних планів */
.btn-pricing {
	/* Updated gradient to use new accent colors */
	background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
	color: white;
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(32, 201, 151, 0.25); /* Adjusted shadow color */
	margin-top: 1.5rem;
	width: 100%;
}

.btn-pricing:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(32, 201, 151, 0.35); /* Adjusted shadow color */
	color: white;
}

.btn-pricing.btn-featured {
	/* Updated gradient to use new text color for dark feature button */
	background: linear-gradient(
		135deg,
		var(--text-color),
		#1f3041
	); /* Darker shade of text-color */
	box-shadow: 0 10px 25px rgba(46, 64, 83, 0.3); /* Adjusted shadow color */
}

.btn-pricing.btn-featured:hover {
	box-shadow: 0 15px 35px rgba(46, 64, 83, 0.4); /* Adjusted shadow color */
}

/* Bloc Contacts */
.contact-section {
	padding: 5rem 0;
	/* Updated gradient to use new colors */
	background: linear-gradient(
		135deg,
		var(--bg-color) 0%,
		rgba(230, 249, 243, 0.7) 100%
	);
}

.contact-card {
	background: white;
	border-radius: 25px;
	padding: 3rem;
	text-align: center;
	border: 1px solid rgba(32, 201, 151, 0.1); /* Adjusted border color */
	box-shadow: 0 15px 35px rgba(46, 64, 83, 0.08); /* Adjusted shadow color */
}

.contact-email {
	/* Updated gradient to use new accent colors */
	background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 500;
	font-size: 1.1rem;
	margin: 2rem 0;
	transition: all 0.3s ease;
	box-shadow: 0 10px 25px rgba(32, 201, 151, 0.3); /* Adjusted shadow color */
}

.contact-email:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(32, 201, 151, 0.4); /* Adjusted shadow color */
	color: white;
}

.social-links {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.social-link {
	width: 50px;
	height: 50px;
	background: var(--bg-color);
	border: 2px solid var(--accent-color); /* Uses accent color */
	color: var(--accent-color); /* Uses accent color */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--accent-color); /* Uses accent color */
	color: white;
	transform: translateY(-3px);
}

/* Bloc Formulaire */
.form-section {
	padding: 5rem 0;
	background: white;
}

.form-container {
	background: var(--bg-color);
	border-radius: 25px;
	padding: 3rem;
	border: 1px solid rgba(32, 201, 151, 0.1); /* Adjusted border color */
	box-shadow: 0 20px 40px rgba(46, 64, 83, 0.1); /* Adjusted shadow color */
}

.form-title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1rem;
	text-align: center;
}

.form-description {
	color: var(--text-color);
	opacity: 0.8;
	line-height: 1.7;
	text-align: center;
	margin-bottom: 3rem;
}

.form-floating {
	margin-bottom: 1.5rem;
}

.form-floating .form-control {
	background: white;
	border: 2px solid rgba(32, 201, 151, 0.1); /* Adjusted border color */
	border-radius: 15px;
	padding: 1.2rem 1rem 0.6rem;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-floating .form-control:focus {
	border-color: var(--accent-color); /* Uses accent color */
	box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.15); /* Adjusted shadow color */
	background: white;
}

.form-floating label {
	color: var(--text-color);
	opacity: 0.7;
	padding: 1rem;
}

.form-floating .form-control:focus + label,
.form-floating .form-control:not(:placeholder-shown) + label {
	color: var(--accent-color); /* Uses accent color */
	opacity: 1;
}

.btn-submit {
	/* Updated gradient to use new accent colors */
	background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
	border: none;
	border-radius: 50px;
	padding: 1.2rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(32, 201, 151, 0.3); /* Adjusted shadow color */
}

.btn-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(32, 201, 151, 0.4); /* Adjusted shadow color */
	/* Updated gradient direction for hover effect */
	background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
}

.error-message {
	color: var(--accent-color) !important; /* Uses accent color */
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
	.contact-card,
	.form-container {
		padding: 2rem;
	}

	.social-links {
		gap: 0.5rem;
	}

	.social-link {
		width: 45px;
		height: 45px;
	}

	.form-title {
		font-size: 1.6rem;
	}
}
