:root {
	--primary-color: #a8e6cf;
	--secondary-color: #ffd3b6;
	--background-color: #fffbf5;
	--text-color: #333333;
	--white: #ffffff;
	--light-gray: #f8f8f8;
	--border-color: #e0e0e0;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	--shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
	--transition: all 0.3s ease;
	--gradient-bg: linear-gradient(135deg, #fffbf5 0%, #f5f9ff 100%);
	--card-gradient: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background: var(--background-color);
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Container */
.gp-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.gp-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Button Styles */
.gp-btn {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition);
	cursor: pointer;
	border: none;
	outline: none;
	font-size: 16px;
	position: relative;
	overflow: hidden;
}

.gp-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s ease;
}

.gp-btn:hover::before {
	left: 100%;
}

.gp-btn-primary {
	background: linear-gradient(135deg, var(--primary-color), #88d4a8);
	color: var(--text-color);
	box-shadow: 0 8px 25px rgba(168, 230, 207, 0.3);
}

.gp-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(168, 230, 207, 0.4);
}

.gp-btn-secondary {
	background: linear-gradient(135deg, var(--secondary-color), #ffb894);
	color: var(--text-color);
	box-shadow: 0 8px 25px rgba(255, 211, 182, 0.3);
}

.gp-btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(255, 211, 182, 0.4);
}

.gp-btn-outline {
	background: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
}

.gp-btn-outline:hover {
	background: var(--primary-color);
	color: var(--text-color);
	transform: translateY(-3px);
}

/* Typography */
.gp-h1 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.gp-h2 {
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1.2rem;
}

.gp-h3 {
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.gp-h4 {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0.8rem;
}

.gp-text-large {
	font-size: 1.3rem;
	line-height: 1.6;
	opacity: 0.9;
}

.gp-text-center {
	text-align: center;
}

/* Header */
.gp-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 1200px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 60px;
	padding: 15px 30px;
	z-index: 1000;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

.gp-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gp-logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 10px;
}

.gp-logo i {
	color: var(--primary-color);
	font-size: 2rem;
}

.gp-nav {
	display: flex;
	align-items: center;
}

.gp-nav-list {
	display: flex;
	align-items: center;
	gap: 30px;
}

.gp-nav-link {
	color: var(--text-color);
	font-weight: 500;
	padding: 8px 15px;
	border-radius: 25px;
	transition: var(--transition);
	position: relative;
}

.gp-nav-link:hover {
	background: var(--primary-color);
	color: var(--text-color);
	transform: translateY(-2px);
}

.gp-mobile-menu-btn {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 20px;
	cursor: pointer;
	background: none;
	border: none;
}

.gp-mobile-menu-btn span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--text-color);
	transition: var(--transition);
	border-radius: 2px;
}

.gp-mobile-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 20px;
	margin-top: 10px;
	box-shadow: var(--shadow);
}

.gp-mobile-nav-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.gp-mobile-nav-link {
	color: var(--text-color);
	font-weight: 500;
	padding: 12px 20px;
	border-radius: 25px;
	transition: var(--transition);
	text-align: center;
}

.gp-mobile-nav-link:hover {
	background: var(--primary-color);
	color: var(--text-color);
}

/* Hero Section */
.gp-hero {
	min-height: 100vh;
	background: var(--gradient-bg);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.gp-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
\	background-attachment: fixed;
	opacity: 0.3;
}

.gp-hero-content {
	text-align: center;
	max-width: 800px;
	z-index: 2;
	position: relative;
	animation: gp-fade-in-up 1s ease 0.3s both;
}

.gp-hero-title {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--text-color), #555);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.gp-hero-subtitle {
	font-size: 1.4rem;
	margin-bottom: 2.5rem;
	opacity: 0.8;
	line-height: 1.6;
}

.gp-hero-btn {
	margin-top: 1rem;
	font-size: 1.1rem;
	padding: 18px 40px;
}

/* Sections */
.gp-section {
	padding: 100px 0;
	position: relative;
}

.gp-section:nth-child(even) {
	background: rgba(168, 230, 207, 0.05);
}

.gp-section-header {
	text-align: center;
	margin-bottom: 80px;
}

.gp-section-title {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	position: relative;
}

.gp-section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	border-radius: 2px;
}

.gp-section-subtitle {
	font-size: 1.2rem;
	opacity: 0.8;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Goals Section */
.gp-goals {
	background: var(--gradient-bg);
}

.gp-goals-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.gp-goal-card {
	background: var(--card-gradient);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
}

.gp-goal-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	opacity: 0;
	transition: var(--transition);
	z-index: -1;
}

.gp-goal-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
	border-color: var(--primary-color);
}

.gp-goal-card:hover::before {
	opacity: 0.1;
}

.gp-goal-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color), #88d4a8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 2rem;
	color: var(--text-color);
	transition: var(--transition);
}

.gp-goal-card:hover .gp-goal-icon {
	transform: scale(1.1) rotate(10deg);
}

.gp-goal-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.gp-goal-desc {
	opacity: 0.8;
	line-height: 1.6;
}

/* Resources Section */
.gp-resources-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-top: 60px;
}

.gp-video-container {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.gp-video-container:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
}

.gp-video-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.gp-video-placeholder .gp-intro-video {
	object-fit: cover;
}

.gp-play-btn {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--text-color);
	cursor: pointer;
	transition: var(--transition);
}

.gp-play-btn:hover {
	transform: scale(1.1);
	background: var(--white);
}

.gp-resources-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.gp-resource-item {
	background: var(--white);
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
	border-left: 4px solid var(--primary-color);
}

.gp-resource-item:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.gp-resource-item h4 {
	font-size: 1.3rem;
	margin-bottom: 10px;
	color: var(--text-color);
}

.gp-resource-item p {
	opacity: 0.8;
	line-height: 1.5;
}

/* Pricing Section */
.gp-pricing {
	background: var(--gradient-bg);
}

.gp-pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.gp-pricing-card {
	background: var(--white);
	border-radius: 20px;
	padding: 40px 30px;

	box-shadow: var(--shadow);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.gp-pricing-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.gp-pricing-link a {
	margin-top: auto;
}

.gp-pricing-card.gp-featured {
	transform: scale(1.05);
	border: 3px solid var(--primary-color);
}

.gp-pricing-card.gp-featured::before {
	content: 'Populaire';
	position: absolute;
	top: 17px;
	right: -35px;
	background: var(--primary-color);
	color: var(--text-color);
	padding: 8px 40px;
	font-size: 0.9rem;
	font-weight: 600;
	transform: rotate(45deg);
}

.gp-pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
}

.gp-pricing-card.gp-featured:hover {
	transform: scale(1.05) translateY(-10px);
}

.gp-pricing-title {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.gp-pricing-price {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.gp-pricing-period {
	opacity: 0.6;
	margin-bottom: 30px;
}

.gp-pricing-features {
	list-style: none;
	margin-bottom: 40px;
}

.gp-pricing-features li {
	padding: 8px 0;
	position: relative;
	padding-left: 25px;
}

.gp-pricing-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
}

.gp-services-table {
	margin-top: 60px;
	background: var(--white);
	border-radius: 20px;
	padding: 40px;
	box-shadow: var(--shadow);
}

.gp-services-table h3 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 2rem;
}

.gp-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 30px;
}

.gp-service-item {
	padding: 20px;
	border-radius: 15px;
	background: rgba(168, 230, 207, 0.1);
	transition: var(--transition);
}

.gp-service-item:hover {
	background: rgba(168, 230, 207, 0.2);
	transform: translateY(-5px);
}

.gp-service-item h4 {
	color: var(--text-color);
	margin-bottom: 10px;
}

/* Team Section */
.gp-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.gp-team-card {
	background: var(--white);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
	overflow: hidden;
	position: relative;
}

.gp-team-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	opacity: 0;
	transition: var(--transition);
	z-index: 1;
}

.gp-team-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
}

.gp-team-card:hover::before {
	opacity: 0.05;
}

.gp-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 20px;
	object-fit: cover;
	border: 4px solid var(--primary-color);
	transition: var(--transition);
	position: relative;
	z-index: 2;
}

.gp-team-card:hover .gp-team-avatar {
	transform: scale(1.1);
}

.gp-team-name {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 10px;
	position: relative;
	z-index: 2;
}

.gp-team-role {
	color: var(--primary-color);
	font-weight: 500;
	margin-bottom: 15px;
	position: relative;
	z-index: 2;
}

.gp-team-bio {
	opacity: 0.8;
	line-height: 1.5;
	position: relative;
	z-index: 2;
}

/* Contact Section */
.gp-contact {
	background: var(--gradient-bg);
}

.gp-contact-container {
	margin: 0 auto;
}

.gp-contact-form {
	background: var(--white);
	border-radius: 20px;
	padding: 50px;
	box-shadow: var(--shadow);
	margin-top: 60px;
}

.gp-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 30px;
}

.gp-form-group {
	display: flex;
	flex-direction: column;
}

.gp-form-group.gp-full-width {
	grid-column: 1 / -1;
}

.gp-form-label {
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text-color);
}

.gp-form-input,
.gp-form-textarea {
	padding: 15px 20px;
	border: 2px solid var(--border-color);
	border-radius: 15px;
	font-size: 1rem;
	transition: var(--transition);
	background: var(--white);
}

.gp-form-input:focus,
.gp-form-textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.2);
}

.gp-form-input.gp-error,
.gp-form-textarea.gp-error {
	border-color: #e74c3c;
}

.gp-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.gp-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

.gp-form-error.gp-visible {
	display: block;
}

.gp-form-submit {
	width: 100%;
	padding: 18px;
	font-size: 1.1rem;
	margin-top: 20px;
}

.gp-form-submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
}

/* Footer */
.gp-footer {
	background: var(--text-color);
	color: var(--white);
	padding: 60px 0 30px;
}

.gp-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.gp-footer-section h4 {
	font-size: 1.3rem;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.gp-footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gp-footer-links a {
	color: rgba(255, 255, 255, 0.8);
	transition: var(--transition);
	padding: 5px 0;
}

.gp-footer-links a:hover {
	color: var(--primary-color);
	padding-left: 10px;
}

.gp-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.gp-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(51, 51, 51, 0.95);
	backdrop-filter: blur(10px);
	color: var(--white);
	padding: 20px 0;
	z-index: 9999;
	display: none;
	animation: gp-slide-up 0.5s ease;
}

.gp-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.gp-cookie-text {
	flex: 1;
	min-width: 300px;
}

.gp-cookie-text p {
	margin: 0;
	line-height: 1.5;
}

.gp-cookie-text a {
	color: var(--primary-color);
	text-decoration: underline;
}

.gp-cookie-actions {
	display: flex;
	gap: 15px;
	align-items: center;
}

.gp-btn-small {
	padding: 10px 20px;
	font-size: 0.9rem;
}

/* Legal Pages */
.gp-legal-hero {
	background: var(--gradient-bg);
	padding: 120px 0 60px;
	text-align: center;
}

.gp-legal-content {
	background: var(--white);
	padding: 80px 0;
}

.gp-legal-container {
	max-width: 900px;
	margin: 0 auto;
}

.gp-legal-section {
	margin-bottom: 50px;
}

.gp-legal-section:last-child {
	margin-bottom: 0;
}

.gp-legal-section h2 {
	font-size: 2rem;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--primary-color);
	color: var(--text-color);
}

.gp-legal-section h3 {
	font-size: 1.5rem;
	margin: 30px 0 15px;
	color: var(--text-color);
}

.gp-legal-section p {
	margin-bottom: 15px;
	line-height: 1.7;
	color: var(--text-color);
}

.gp-legal-section ul {
	list-style: disc;
	padding-left: 30px;
	margin-bottom: 20px;
}

.gp-legal-section ul li {
	margin-bottom: 8px;
	line-height: 1.6;
}

.gp-legal-highlight {
	background: rgba(168, 230, 207, 0.1);
	border-left: 4px solid var(--primary-color);
	padding: 20px;
	margin: 20px 0;
	border-radius: 5px;
}

.gp-legal-contact {
	background: var(--light-gray);
	padding: 25px;
	border-radius: 10px;
	margin: 25px 0;
}

.gp-legal-contact h4 {
	color: var(--text-color);
	margin-bottom: 15px;
}

.gp-legal-last-updated {
	background: var(--light-gray);
	padding: 20px 0;
	text-align: center;
	color: var(--text-color);
	font-style: italic;
}

/* Animations */
@keyframes gp-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes gp-float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes gp-slide-up {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	.gp-nav {
		display: none;
	}

	.gp-mobile-menu-btn {
		display: flex;
	}

	.gp-mobile-nav.gp-active {
		display: block;
	}
}

@media (max-width: 768px) {
	.gp-header {
		top: 10px;
		width: calc(100% - 20px);
		padding: 12px 20px;
	}

	.gp-hero-title {
		font-size: 2.5rem;
	}

	.gp-hero-subtitle {
		font-size: 1.1rem;
	}

	.gp-section-title {
		font-size: 2rem;
	}

	.gp-h1 {
		font-size: 2.5rem;
	}

	.gp-h2 {
		font-size: 2rem;
	}

	.gp-goals-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.gp-resources-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.gp-pricing-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.gp-pricing-card.gp-featured {
		transform: none;
	}

	.gp-team-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 30px;
	}

	.gp-form-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.gp-contact-form {
		padding: 30px 20px;
	}

	.gp-footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.gp-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.gp-cookie-actions {
		justify-content: center;
	}

	.gp-services-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.gp-container {
		padding: 0 15px;
	}

	.gp-hero-title {
		font-size: 2rem;
	}

	.gp-section {
		padding: 60px 0;
	}

	.gp-section-header {
		margin-bottom: 50px;
	}

	.gp-goal-card,
	.gp-pricing-card,
	.gp-team-card {
		padding: 25px 20px;
	}

	.gp-btn {
		padding: 12px 25px;
		font-size: 0.9rem;
	}

	.gp-legal-container {
		padding: 0 15px;
	}
	.gp-logo {
		font-size: 1.4rem;
		gap: 5px;
	}
	.gp-services-table h3 {
		font-size: 1.5rem;
	}
}

/* Print Styles */
@media print {
	.gp-header,
	.gp-cookie-banner,
	.gp-btn {
		display: none !important;
	}

	.gp-section {
		padding: 20px 0;
		page-break-inside: avoid;
	}

	body {
		background: white !important;
		color: black !important;
	}
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
	:root {
		--primary-color: #2d5f42;
		--secondary-color: #b8621b;
		--text-color: #000000;
		--background-color: #ffffff;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
:root {
  --primary-color: #2A2E43;
  --secondary-color: #F25F5C;
  --accent-color: #FFE066;
  --bg-light: #FEF9EF;
  --bg-dark: #E4FDE1;
  --surface: #FFFFFF;
  --text-main: #333333;
  --text-muted: #777777;
  --border-color: #DDDEE1;
  --radius-small: 4px;
  --radius-medium: 12px;
  --radius-large: 32px;
  --shadow-light: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-strong: 0 6px 20px rgba(0, 0, 0, 0.12);
  --transition: all 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background: url(assets/background-pattern.png) no-repeat fixed center;
    line-height: 1.65;
    overflow-x: hidden;
    background-position: center;
    background-size: cover;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-small);
}

.gp-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;
}



/* Hero */
.gp-hero {
  padding: 120px 0;
  background: url('assets/hero-bg.jpg') center/cover fixed;
  color: var(--surface);
  text-align: center;
}
.gp-hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.gp-hero-subtitle {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.5;
}
.gp-hero-btn {
  background: var(--secondary-color);
  color: var(--surface);
  padding: 20px 45px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-strong);
}
.gp-hero-btn:hover {
  transform: scale(1.05);
}
.gp-header .gp-container {
	padding: 20px;
}
/* Sections */
.gp-section {
  margin: 80px 40px;
  padding: 60px 0;
  background: var(--bg-light);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
}
.gp-section:nth-child(even) {
  background: var(--bg-dark);
}
.gp-section-title {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.gp-section-subtitle {
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-muted);
}

/* Cards */
.gp-goal-card,
.gp-pricing-card,
.gp-team-card,
.gp-contact-form {
  background: var(--surface);
  padding: 35px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}
.gp-goal-card:hover,
.gp-pricing-card:hover,
.gp-team-card:hover,
.gp-contact-form:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-8px);
}

/* Resources */
.gp-resources-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.gp-video-container {
  flex: 1 1 45%;
  border-radius: var(--radius-small);
  overflow: hidden;
}
.gp-resources-list {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Pricing */
.gp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.gp-pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-large);
}
.gp-pricing-price {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin: 15px 0;
}

/* Team */
.gp-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px,1fr));
  gap: 30px;
}
.gp-team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
}

/* Contact */
.gp-contact-form {
  background: var(--surface);
  padding: 45px;
  border-radius: var(--radius-large);
}
.gp-form-input,
.gp-form-textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-small);
}

/* Footer */
.gp-footer {
  background: var(--primary-color);
  color: var(--surface);
  padding: 80px 0;
}
.gp-footer-links a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Adjust mobile */
@media (max-width:768px) {
  .gp-resources-content,
  .gp-pricing-grid,
  .gp-team-grid {
    grid-template-columns: 1fr;
  }
}
/* Custom styles pour la section “Ressources” */
#resources {
  padding: 60px 20px;
  background: var(--bg-light);
}

.gp-resources-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.gp-resource-item {
  background: var(--surface);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.gp-resource-item:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-strong);
  transform: translateY(-5px);
}

.gp-resource-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.gp-resource-item h4 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.gp-resource-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
/* Cookie Banner Styles */
.gp-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--surface);
  padding: 20px;
  border-radius: var(--radius-medium);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-strong);
  z-index: 10000;
}
.gp-cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}
.gp-cookie-text a {
  color: var(--accent-color);
  text-decoration: underline;
}
.gp-cookie-actions {
  display: flex;
  gap: 10px;
}
.gp-cookie-actions .gp-btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: var(--radius-small);
}
.gp-cookie-accept {
  background: var(--secondary-color);
  color: var(--surface);
}
.gp-cookie-decline {
  background: transparent;
  color: var(--surface);
  border: 1px solid var(--surface);
}
.gp-cookie-accept:hover,
.gp-cookie-decline:hover {
  opacity: 0.9;
}
