/********** Template CSS **********/
* {
	font-family: 'Rambla', sans-serif;
}

:root {
	--primary: #5b9bd5;
	--light: #e8f0f5;
	--dark: #3d5a80;
	--accent: #6ba3d8;
	--secondary: #4a90e2;
	--light-bg: #f0f4f8;
	--text-dark: #2c3e50;
	--text-light: #5a7a9a;
}

.fw-medium {
	font-weight: 500 !important;
}

.fw-semi-bold {
	font-weight: 600 !important;
}

.error-message {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	margin-bottom: 0;
	min-height: 1.2rem;
	display: block;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.error-message:not(:empty) {
	opacity: 1;
}

/* Додатковий стиль для полів з помилками */
.form-control.error {
	border-color: #dc3545 !important;
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}

/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0.5s;
	z-index: 99999;
}

#spinner.show {
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

/*** 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 ***/
.ie-header {
	background: linear-gradient(90deg, #3d5a80, #4a6b95);
	color: #fff;
	padding: 15px 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 999;
	box-shadow: 0 2px 8px rgba(61, 90, 128, 0.3);
}

.ie-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 30px;
}

.ie-logo a {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

.ie-logo a:hover {
	color: #6ba3d8;
}

.ie-nav ul {
	list-style: none;
	display: flex;
	gap: 30px;
	margin: 0;
	padding: 0;
}

.ie-nav ul li a {
	text-decoration: none;
	color: #e8e8e8;
	font-weight: 500;
	font-size: 15px;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.ie-nav ul li a:hover {
	color: #6ba3d8;
}


.ie-menu-icon {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.ie-menu-icon span {
	height: 3px;
	width: 24px;
	background: #fff;
	display: block;
	border-radius: 2px;
}

#ie-menu-toggle {
	display: none;
}

@media (max-width: 992px) {
	.ie-menu-icon {
		display: flex;
	}

	.ie-nav {
		position: absolute;
		top: 100%;
		left: 0;
		background-color: #4a6b95;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease-in-out;
	}

	#ie-menu-toggle:checked+.ie-menu-icon+.ie-nav {
		max-height: 400px;
	}

	.ie-nav ul {
		flex-direction: column;
		padding: 20px;
		gap: 15px;
	}

	.ie-nav ul li a {
		font-size: 16px;
	}
}

:root {
	--bg-color: #e8f0f5;
	--accent-color: #5b9bd5;
	--text-color: #5a7a9a;
	--white: #ffffff;
}

/* Footer Styles */
.footer-modern {
	background: linear-gradient(180deg, #3d5a80 0%, #2c3e50 100%);
	color: #e0e0e0;
	padding: 80px 40px 40px;
	font-family: 'Rambla', sans-serif;
	position: relative;
	overflow: hidden;
}

.footer-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(91, 155, 213, 0.5), transparent);
}

.footer-container {
	max-width: 1300px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 60px;
	margin-bottom: 50px;
}

.footer-col.brand {
	position: relative;
}

.footer-logo {
	font-size: 2.2rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 25px;
	transition: all 0.3s ease;
	background: linear-gradient(135deg, #ffffff 0%, #b8d4e8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-logo:hover {
	transform: translateY(-3px);
	opacity: 0.9;
}

.footer-desc {
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.footer-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #5b9bd5, #6ba3d8);
	border-radius: 2px;
}

.footer-link-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-link-list li {
	margin-bottom: 15px;
}

.footer-link-list a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 1rem;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.footer-link-list a::before {
	content: '→';
	position: absolute;
	left: -20px;
	opacity: 0;
	transition: all 0.3s ease;
	color: #5b9bd5;
}

.footer-link-list a:hover {
	color: #6ba3d8;
	transform: translateX(5px);
}

.footer-link-list a:hover::before {
	opacity: 1;
	left: -15px;
}

.footer-contact {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.8);
	word-break: break-word;
	line-height: 1.8;
}

.footer-contact strong {
	color: #ffffff;
	font-weight: 700;
}

.footer-contact a {
	color: #6ba3d8;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact a:hover {
	color: #5b9bd5;
	text-decoration: underline;
}

.footer-bottom {
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid rgba(91, 155, 213, 0.2);
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-bottom a:hover {
	color: #6ba3d8;
}

@media (max-width: 768px) {
	.footer-modern {
		padding: 60px 20px 30px;
	}

	.footer-grid {
		gap: 40px;
		margin-bottom: 40px;
	}

	.footer-logo {
		font-size: 1.8rem;
	}
}


/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
	.cookie-wrapper {
		width: 100%;
	}
}

.cookie-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: linear-gradient(135deg, #3d5a80 0%, #4a6b95 100%);
	padding: 25px 30px;
	transition: transform 0.4s ease, opacity 0.4s ease;
	box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	border-top: 3px solid #5b9bd5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.cookie-wrapper.hidden {
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
}

.cookie-wrapper .show {
	transform: translateY(0);
	opacity: 1;
}

.cookie-wrapper > div:first-child {
	display: flex;
	align-items: center;
	gap: 15px;
	flex: 1;
	min-width: 250px;
}

.cookie-wrapper i {
	color: #6ba3d8;
	font-size: 32px;
}

.cookie-wrapper h2 {
	color: #ffffff;
	font-weight: 600;
	font-size: 1.3rem;
	margin: 0;
	text-align: left;
}

.data {
	flex: 2;
	min-width: 300px;
}

.data p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
	text-align: left;
}

.data p a {
	color: #6ba3d8;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 600;
}

.data p a:hover {
	color: #5b9bd5;
	text-decoration: underline;
}

.buttons {
	display: flex;
	gap: 15px;
	flex-shrink: 0;
}

.buttons .cookie-button {
	border: 2px solid #5b9bd5;
	color: #fff;
	background: #5b9bd5;
	padding: 12px 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
	font-family: 'Rambla', sans-serif;
	min-width: 140px;
}

.buttons .cookie-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(91, 155, 213, 0.4);
}

.buttons #acceptBtn {
	background: #5b9bd5;
	border-color: #5b9bd5;
}

.buttons #acceptBtn:hover {
	background: #4a90e2;
	border-color: #4a90e2;
}

#declineBtn {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.9);
}

#declineBtn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
	color: #ffffff;
}

@media (max-width: 768px) {
	.cookie-wrapper {
		flex-direction: column;
		padding: 20px;
		text-align: center;
	}

	.cookie-wrapper > div:first-child {
		flex-direction: column;
		text-align: center;
		width: 100%;
	}

	.cookie-wrapper h2 {
		text-align: center;
		font-size: 1.1rem;
	}

	.data {
		width: 100%;
	}

	.data p {
		text-align: center;
		font-size: 0.9rem;
	}

	.buttons {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}

	.buttons .cookie-button {
		flex: 1;
		min-width: 120px;
	}
}

/* new styles  */
/* Variables globales */
:root {
	--bg-primary: #fff;
	--text-primary: #3d5a80;
	--accent-color: #5b9bd5;
	--border-radius: 0;
	--shadow: 0 2px 8px rgba(91, 155, 213, 0.15);
}

/* Styles pour le bloc hero */
.ie-hero {
	position: relative;
	background: linear-gradient(135deg, #e8f0f5 0%, #d0e4f0 50%, #b8d4e8 100%);
	min-height: 75vh;
	display: flex;
	align-items: center;
	color: #3d5a80;
	overflow: hidden;
}

.ie-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(91, 155, 213, 0.15) 0%, transparent 70%);
	border-radius: 50%;
}

.ie-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(107, 163, 216, 0.12) 0%, transparent 70%);
	border-radius: 50%;
}

.ie-hero-overlay {
	background: transparent;
	width: 100%;
	padding: 100px 0;
	position: relative;
	z-index: 1;
}

.ie-hero-content {
	max-width: 800px;
	padding: 60px 50px;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(91, 155, 213, 0.2);
	border-radius: 30px;
	backdrop-filter: blur(20px);
	box-shadow: 0 20px 60px rgba(91, 155, 213, 0.2);
	animation: fadeInUp 1s ease-out both;
}

.ie-hero-heading {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: #3d5a80;
	margin-bottom: 25px;
	background: linear-gradient(135deg, #3d5a80 0%, #5b9bd5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ie-hero-text {
	font-size: 1.3rem;
	line-height: 1.7;
	color: #5a7a9a;
	margin-bottom: 30px;
}

.ie-hero-text strong {
	color: #3d5a80;
}

.ie-hero-button {
	display: inline-block;
	padding: 16px 40px;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: none;
	color: #fff;
	background: linear-gradient(135deg, #5b9bd5 0%, #6ba3d8 100%);
	border: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: 0 8px 25px rgba(91, 155, 213, 0.3);
}

.ie-hero-button:hover {
	background: linear-gradient(135deg, #4a90e2 0%, #5b9bd5 100%);
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(91, 155, 213, 0.4);
}

@keyframes fadeInUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.ie-hero {
		min-height: 60vh;
	}

	.ie-hero-content {
		padding: 40px 25px;
	}

	.ie-hero-heading {
		font-size: 2.2rem;
	}

	.ie-hero-text {
		font-size: 1.1rem;
	}

	/* Attraktive Banner Section - Mobile */
	.attractive-banner {
		margin-top: 60px !important;
		padding: 25px 0 !important;
	}

	.attractive-banner > .container > div {
		flex-direction: column !important;
		text-align: center !important;
	}

	.attractive-banner > .container > div > div {
		width: 100% !important;
		min-width: 100% !important;
		margin-bottom: 15px;
	}

	.attractive-banner > .container > div > div:last-child {
		margin-top: 10px;
	}

	/* Tarife Section - Mobile */
	#tarifs {
		padding: 60px 0 !important;
	}

	#tarifs h2 {
		font-size: 2rem !important;
	}

	#tarifs > .container > div:first-of-type > div[style*="grid-template-columns"] {
		grid-template-columns: 1fr !important;
		gap: 25px !important;
	}

	#tarifs > .container > div:first-of-type > div[style*="grid-template-columns"] > div[style*="transform: scale(1.05)"] {
		transform: scale(1) !important;
	}

	#tarifs > .container > div:last-of-type {
		padding: 30px 20px !important;
	}

	#tarifs > .container > div:last-of-type > div[style*="grid-template-columns"] {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 15px !important;
	}
}

.stats-card {
	background: var(--bg-primary);
	border: 2px solid #f0f0f0;
	border-radius: var(--border-radius);
	padding: 2rem;
	height: 100%;
	transition: all 0.3s ease;
}

.stats-card:hover {
	border-color: var(--accent-color);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.stats-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 0.5rem;
}

.stats-label {
	color: var(--heading-color);
	font-weight: 600;
	font-size: 1rem;
}

.btn-primary-custom {
	background-color: var(--accent-color);
	border: 2px solid var(--accent-color);
	color: white;
	padding: 12px 32px;
	font-weight: 600;
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
	background-color: transparent;
	color: var(--accent-color);
	transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.hero-section {
		padding: 60px 0;
	}

	.stats-card {
		margin-bottom: 1.5rem;
	}
}

/* Styles pour le bloc À propos */
.ie-about {
	background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 50%, #e8f0f5 100%);
	color: #3d5a80;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.ie-about::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(91, 155, 213, 0.3), transparent);
}

.ie-about-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 60px;
}

.ie-about-image {
	flex: 1 1 45%;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(91, 155, 213, 0.2);
	transition: transform 0.3s ease;
}

.ie-about-image:hover {
	transform: translateY(-5px);
}

.ie-about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ie-about-content {
	flex: 1 1 50%;
	background: #ffffff;
	border: 2px solid rgba(91, 155, 213, 0.15);
	padding: 50px 40px;
	border-radius: 25px;
	box-shadow: 0 10px 40px rgba(91, 155, 213, 0.15);
	animation: fadeInUp 1.2s ease forwards;
	opacity: 1;
}

.ie-about-heading {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 25px;
	color: #3d5a80;
	position: relative;
	padding-bottom: 20px;
}

.ie-about-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #5b9bd5, #6ba3d8);
	border-radius: 2px;
}

.ie-about-paragraph {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #5a7a9a;
	margin-bottom: 25px;
}

.ie-about-features {
	list-style: none;
	padding-left: 0;
	margin-top: 30px;
}

.ie-about-features li {
	font-size: 1.1rem;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 15px;
	color: #3d5a80;
	padding: 12px;
	background: rgba(91, 155, 213, 0.05);
	border-radius: 10px;
	border-left: 4px solid #5b9bd5;
}

.ie-about-features i {
	color: #5b9bd5;
	font-size: 1.4rem;
}

@keyframes fadeInUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* FAQ Styles */
.faq-item {
	background: #ffffff;
	border: 2px solid rgba(91, 155, 213, 0.15);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 25px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(91, 155, 213, 0.1);
}

.faq-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 35px rgba(91, 155, 213, 0.2);
	border-color: rgba(91, 155, 213, 0.3);
}

.faq-question {
	font-size: 1.3rem;
	font-weight: 700;
	color: #3d5a80;
	margin-bottom: 15px;
	line-height: 1.4;
}

.faq-answer {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #5a7a9a;
	margin: 0;
}

/* Page Content Styles for Legal Pages */
.page__content {
	background: #ffffff;
	border: 2px solid rgba(91, 155, 213, 0.15);
	border-radius: 25px;
	padding: 60px 50px;
	box-shadow: 0 15px 50px rgba(91, 155, 213, 0.15);
	color: #3d5a80;
	max-width: 1000px;
	margin: 0 auto;
}

.page__content h2 {
	font-size: 2.8rem;
	font-weight: 700;
	color: #3d5a80;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 3px solid #5b9bd5;
	position: relative;
}

.page__content h2::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #5b9bd5, #6ba3d8);
}

.page__content > div > p:first-of-type {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #5a7a9a;
	margin-bottom: 40px;
}

.page__content > div > div {
	margin-bottom: 35px;
	padding: 25px;
	background: rgba(91, 155, 213, 0.03);
	border-radius: 15px;
	border-left: 4px solid #5b9bd5;
	transition: all 0.3s ease;
}

.page__content > div > div:hover {
	background: rgba(91, 155, 213, 0.06);
	transform: translateX(5px);
}

.page__content h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #3d5a80;
	margin-bottom: 15px;
}

.page__content p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #5a7a9a;
	margin-bottom: 15px;
}

.page__content ul {
	margin: 15px 0;
	padding-left: 25px;
}

.page__content ul li {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #5a7a9a;
	margin-bottom: 10px;
}

.page__content ul li strong {
	color: #3d5a80;
	font-weight: 700;
}

.page__content a {
	color: #5b9bd5;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 600;
}

.page__content a:hover {
	color: #4a90e2;
	text-decoration: underline;
}

.additional-wrapper {
	background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 50%, #e8f0f5 100%);
	padding: 80px 20px;
	min-height: calc(100vh - 200px);
	margin-top: 70px;
}

.legal-page-main {
	margin-bottom: 100px;
}

.thanks-page-content {
	text-align: center;
}

@media (max-width: 992px) {
	.ie-about-wrapper {
		flex-direction: column;
	}

	.ie-about-content {
		padding: 35px 25px;
	}

	.ie-about-heading {
		font-size: 2.2rem;
	}

	.kontakt-formular {
		padding: 35px 25px;
	}

	.form-title {
		font-size: 2rem;
	}

	.page__content {
		padding: 40px 30px;
	}

	.page__content h2 {
		font-size: 2.2rem;
	}

	.page__content > div > div {
		padding: 20px;
	}
}


/* Styles pour le bloc Programmes */
.ie-programs {
	background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 50%, #e8f0f5 100%);
	padding: 120px 0;
	color: #3d5a80;
	margin: 0;
	position: relative;
	overflow: hidden;
}

.ie-programs::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(91, 155, 213, 0.3), transparent);
}

.ie-programs-heading {
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #3d5a80;
	position: relative;
}

.ie-programs-heading::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #5b9bd5, #6ba3d8);
	border-radius: 2px;
}

.ie-programs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 35px;
	margin-top: 70px;
}

.ie-program-card {
	background: #ffffff;
	border: 2px solid rgba(91, 155, 213, 0.15);
	border-radius: 25px;
	padding: 45px 35px;
	transition: all 0.4s ease;
	animation: fadeInUp 1.2s ease both;
	box-shadow: 0 5px 20px rgba(91, 155, 213, 0.1);
	position: relative;
	overflow: hidden;
}

.ie-program-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #5b9bd5, #6ba3d8);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.ie-program-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 15px 45px rgba(91, 155, 213, 0.25);
	border-color: rgba(91, 155, 213, 0.4);
}

.ie-program-card:hover::before {
	transform: scaleX(1);
}

.ie-program-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #3d5a80;
	position: relative;
	padding-bottom: 15px;
}

.ie-program-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #5b9bd5, #6ba3d8);
	border-radius: 2px;
}

.ie-program-list {
	list-style: none;
	padding: 0;
	margin: 25px 0 0 0;
}

.ie-program-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 18px;
	font-size: 1.05rem;
	color: #5a7a9a;
	line-height: 1.6;
}

.ie-program-list i {
	font-size: 1.4rem;
	color: #5b9bd5;
	margin-top: 3px;
	flex-shrink: 0;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Animated Culinary Section */
.animated-culinary-section {
	position: relative;
	overflow: hidden;
}

.culinary-shape {
	position: absolute;
	font-size: 4rem;
	opacity: 0.15;
	animation: floatAnimation 20s infinite ease-in-out;
	pointer-events: none;
	z-index: 1;
}

.culinary-shape-1 {
	top: 10%;
	left: 5%;
	animation-delay: 0s;
	animation-duration: 15s;
}

.culinary-shape-2 {
	top: 20%;
	right: 10%;
	animation-delay: 2s;
	animation-duration: 18s;
}

.culinary-shape-3 {
	bottom: 15%;
	left: 8%;
	animation-delay: 4s;
	animation-duration: 16s;
}

.culinary-shape-4 {
	bottom: 25%;
	right: 5%;
	animation-delay: 1s;
	animation-duration: 17s;
}

.culinary-shape-5 {
	top: 50%;
	left: 2%;
	animation-delay: 3s;
	animation-duration: 19s;
}

.culinary-shape-6 {
	top: 60%;
	right: 3%;
	animation-delay: 5s;
	animation-duration: 14s;
}

.culinary-shape-7 {
	top: 30%;
	left: 50%;
	animation-delay: 2.5s;
	animation-duration: 20s;
}

.culinary-shape-8 {
	bottom: 40%;
	right: 20%;
	animation-delay: 1.5s;
	animation-duration: 16s;
}

@keyframes floatAnimation {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	25% {
		transform: translate(30px, -30px) rotate(5deg);
	}
	50% {
		transform: translate(-20px, 20px) rotate(-5deg);
	}
	75% {
		transform: translate(20px, 30px) rotate(3deg);
	}
}

.floating-circle {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(91, 155, 213, 0.2) 0%, transparent 70%);
	animation: pulseAnimation 8s infinite ease-in-out;
	pointer-events: none;
	z-index: 1;
}

.circle-1 {
	width: 300px;
	height: 300px;
	top: 10%;
	left: 15%;
	animation-delay: 0s;
}

.circle-2 {
	width: 200px;
	height: 200px;
	top: 60%;
	right: 20%;
	animation-delay: 2s;
}

.circle-3 {
	width: 250px;
	height: 250px;
	bottom: 20%;
	left: 10%;
	animation-delay: 4s;
}

.circle-4 {
	width: 180px;
	height: 180px;
	top: 40%;
	right: 10%;
	animation-delay: 1s;
}

.circle-5 {
	width: 220px;
	height: 220px;
	bottom: 40%;
	right: 30%;
	animation-delay: 3s;
}

@keyframes pulseAnimation {
	0%, 100% {
		transform: scale(1);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.5;
	}
}

.culinary-content-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 100px 20px;
}

.culinary-main-card {
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(91, 155, 213, 0.2);
	border-radius: 40px;
	padding: 80px 60px;
	box-shadow: 0 30px 80px rgba(91, 155, 213, 0.25);
	backdrop-filter: blur(20px);
	max-width: 900px;
	width: 100%;
	text-align: center;
	position: relative;
	animation: fadeInUp 1.5s ease-out both;
	z-index: 10;
}

.culinary-icon-large {
	font-size: 6rem;
	margin-bottom: 30px;
	animation: bounceAnimation 3s infinite ease-in-out;
	display: inline-block;
}

@keyframes bounceAnimation {
	0%, 100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-20px) scale(1.1);
	}
}

.culinary-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #3d5a80;
	margin-bottom: 25px;
	line-height: 1.2;
	background: linear-gradient(135deg, #3d5a80 0%, #5b9bd5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.culinary-subtitle {
	font-size: 1.3rem;
	line-height: 1.8;
	color: #5a7a9a;
	margin-bottom: 50px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.culinary-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 50px;
	padding: 40px 0;
	border-top: 2px solid rgba(91, 155, 213, 0.2);
	border-bottom: 2px solid rgba(91, 155, 213, 0.2);
}

.culinary-stat-item {
	text-align: center;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 700;
	color: #5b9bd5;
	margin-bottom: 10px;
	line-height: 1;
}

.stat-label {
	font-size: 1rem;
	color: #5a7a9a;
	font-weight: 600;
}

.culinary-features {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 50px;
}

.culinary-feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 25px;
	background: rgba(91, 155, 213, 0.08);
	border-radius: 50px;
	border: 2px solid rgba(91, 155, 213, 0.15);
	transition: all 0.3s ease;
}

.culinary-feature-item:hover {
	background: rgba(91, 155, 213, 0.15);
	transform: translateY(-5px);
	border-color: rgba(91, 155, 213, 0.3);
	box-shadow: 0 8px 20px rgba(91, 155, 213, 0.2);
}

.feature-icon {
	font-size: 1.8rem;
}

.feature-text {
	font-size: 1.05rem;
	color: #3d5a80;
	font-weight: 600;
}

.culinary-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	padding: 18px 50px;
	background: linear-gradient(135deg, #5b9bd5 0%, #6ba3d8 100%);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 700;
	box-shadow: 0 10px 30px rgba(91, 155, 213, 0.4);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.culinary-cta-button::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;
}

.culinary-cta-button:hover::before {
	left: 100%;
}

.culinary-cta-button:hover {
	background: linear-gradient(135deg, #4a90e2 0%, #5b9bd5 100%);
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(91, 155, 213, 0.5);
}

.button-arrow {
	transition: transform 0.3s ease;
}

.culinary-cta-button:hover .button-arrow {
	transform: translateX(5px);
}

@media (max-width: 992px) {
	.culinary-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	.culinary-features {
		gap: 20px;
	}
	
	.culinary-main-card {
		padding: 60px 40px;
	}
	
	.culinary-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.animated-culinary-section {
		min-height: auto;
		padding: 80px 0;
	}
	
	.culinary-content-wrapper {
		min-height: auto;
		padding: 40px 0;
	}
	
	.culinary-shape {
		font-size: 2.5rem;
	}
	
	.culinary-main-card {
		padding: 50px 30px;
	}
	
	.culinary-icon-large {
		font-size: 4rem;
	}
	
	.culinary-title {
		font-size: 2rem;
	}
	
	.culinary-subtitle {
		font-size: 1.1rem;
	}
	
	.culinary-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		padding: 30px 0;
	}
	
	.stat-number {
		font-size: 2.5rem;
	}
	
	.culinary-features {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	
	.culinary-cta-button {
		padding: 16px 40px;
		font-size: 1.1rem;
	}
	
	.floating-circle {
		display: none;
	}
}

@media (max-width: 768px) {
	.ie-programs-heading {
		font-size: 2.2rem;
	}

	.ie-program-card {
		padding: 30px 20px;
	}

	.ie-program-title {
		font-size: 1.4rem;
	}

	.ie-program-list li {
		font-size: 0.95rem;
	}
}

/* Styles pour le bloc Avantages */
.growth-benefits-section {
	padding: 120px 0;
	background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 50%, #e8f0f5 100%);
	color: #3d5a80;
	margin: 0;
	position: relative;
	overflow: hidden;
}

.growth-benefits-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(91, 155, 213, 0.3), transparent);
}

.section-header {
	text-align: center;
	margin-bottom: 80px;
}

.section-title {
	font-size: 3rem;
	font-weight: 700;
	color: #3d5a80;
	margin-bottom: 20px;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #5b9bd5, #6ba3d8);
	border-radius: 2px;
}

.section-subtitle {
	font-size: 1.25rem;
	color: #5a7a9a;
	max-width: 800px;
	margin: 40px auto 0;
	line-height: 1.7;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 35px;
	margin-top: 60px;
}

.advantage-card {
	background: #ffffff;
	border: 2px solid rgba(91, 155, 213, 0.15);
	border-radius: 25px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(91, 155, 213, 0.1);
}

.advantage-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #5b9bd5, #6ba3d8);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.advantage-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 45px rgba(91, 155, 213, 0.25);
	border-color: rgba(91, 155, 213, 0.4);
}

.advantage-card:hover::before {
	transform: scaleX(1);
}

.advantage-icon {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
}

.advantage-number {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 1rem;
	font-weight: 700;
	color: rgba(91, 155, 213, 0.3);
	background: rgba(91, 155, 213, 0.1);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.advantage-title {
	font-size: 1.6rem;
	font-weight: 700;
	color: #3d5a80;
	margin-bottom: 15px;
	line-height: 1.3;
}

.advantage-text {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #5a7a9a;
	margin: 0;
}

.growth-image-wrapper {
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(91, 155, 213, 0.2);
}

.growth-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 768px) {
	.growth-benefits-section {
		padding: 80px 0;
	}

	.section-title {
		font-size: 2.2rem;
	}

	.section-subtitle {
		font-size: 1.1rem;
	}

	.advantages-grid {
		grid-template-columns: 1fr;
		gap: 25px;
		margin-top: 40px;
	}

	.advantage-card {
		padding: 30px 25px;
	}
}


/* Styles pour le bloc Histoires de réussite */
.success-section {
	padding: 80px 0;
	background-color: var(--bg-primary);
}

.success-title {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
}

.testimonial-card {
	background: #fafafa;
	border-left: 5px solid var(--accent-color);
	border-radius: var(--border-radius);
	padding: 2.5rem;
	margin-bottom: 2rem;
	position: relative;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	background: #f5f5f5;
	transform: translateX(5px);
}

.testimonial-quote {
	position: absolute;
	top: -10px;
	left: 20px;
	background: var(--accent-color);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.testimonial-text {
	color: var(--text-primary);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-style: italic;
	margin-top: 1rem;
}

.testimonial-author {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
}

.author-icon {
	color: var(--accent-color);
	margin-right: 0.5rem;
	font-size: 1.2rem;
}


/* Styles pour le bloc Tarifs */

/* Responsive pour les nouveaux blocs */
@media (max-width: 768px) {

	.tips-title,
	.pricing-title {
		font-size: 2rem;
	}

	.tips-image {
		height: 250px;
		margin-bottom: 1rem;
	}

	.tip-item {
		padding: 1.5rem;
	}

	.pricing-card {
		padding: 2rem;
		margin-bottom: 2rem;
	}

	.pricing-card.featured {
		transform: none;
	}

	.plan-price {
		font-size: 2rem;
	}
}

/* Styles pour le bloc Contacts */
.contact-section {
	padding: 80px 0;
	background-color: var(--bg-primary);
}

.contact-title {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.contact-description {
	font-size: 1.2rem;
	color: var(--text-primary);
	text-align: center;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.contact-info {
	background: #fafafa;
	border: 2px solid #f0f0f0;
	border-radius: var(--border-radius);
	padding: 3rem;
	text-align: center;
	transition: all 0.3s ease;
}

.contact-info:hover {
	border-color: var(--accent-color);
	box-shadow: var(--shadow);
}

.email-link {
	display: inline-flex;
	align-items: center;
	background: var(--accent-color);
	color: white;
	padding: 1rem 2rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.2rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
}

.email-link:hover {
	background: var(--heading-color);
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
}

.email-icon {
	margin-right: 0.5rem;
	font-size: 1.3rem;
}

.social-title {
	color: var(--heading-color);
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	color: white;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.5rem;
}

.social-link:hover {
	background: var(--heading-color);
	color: white;
	transform: translateY(-3px) scale(1.1);
}

/* Styles pour le bloc Formulaire */
.angebot-kontakt-section {
	padding: 100px 0;
	background: rgba(28, 28, 40, 0.85);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2px;
}

.angebot-kontakt-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1300px;
	width: 100%;
	padding: 0 40px;
}

.angebot-title {
	font-size: 2.8rem;
	color: #f5f5f5;
	margin-bottom: 50px;
	text-align: left;
}

.angebot-grid {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.angebot-card {
	flex: 1;
	background: #2e2e44;
	border-radius: 20px;
	padding: 30px;
	transition: all 0.3s ease;
	color: #fff;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.angebot-card.active {
	background: rgba(196, 18, 236, 0.12);
	border: 2px solid #c412ec;
}

.angebot-plan {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #ffffff;
}

.angebot-price {
	font-size: 2rem;
	font-weight: 600;
	color: #0fe18a;
	margin-bottom: 25px;
}

.angebot-price span {
	font-size: 1rem;
	color: #ccc;
	display: block;
}

.angebot-list {
	list-style: none;
	padding: 0;
}

.angebot-list li {
	margin-bottom: 12px;
	color: #e2e2e2;
	font-size: 1rem;
	padding-left: 18px;
	position: relative;
}

.angebot-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #0fe18a;
	font-size: 1rem;
}

.kontakt-formular {
	background: #ffffff;
	border: 2px solid rgba(91, 155, 213, 0.15);
	border-radius: 25px;
	padding: 50px 40px;
	box-shadow: 0 15px 50px rgba(91, 155, 213, 0.15);
	color: #3d5a80;
}

.form-title {
	font-size: 2.5rem;
	color: #3d5a80;
	margin-bottom: 40px;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
	text-align: center;
}

.form-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #5b9bd5, #6ba3d8);
	border-radius: 2px;
}

.kontakt-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.form-input {
	padding: 16px 20px;
	border-radius: 12px;
	border: 2px solid rgba(91, 155, 213, 0.2);
	font-size: 1rem;
	background: #ffffff;
	color: #3d5a80;
	outline: none;
	transition: all 0.3s ease;
	font-family: 'Rambla', sans-serif;
}

.form-input:focus {
	border-color: #5b9bd5;
	box-shadow: 0 0 0 4px rgba(91, 155, 213, 0.1);
}

.form-input::placeholder {
	color: #999;
}

.form-button {
	background: linear-gradient(135deg, #5b9bd5 0%, #6ba3d8 100%);
	color: #ffffff;
	padding: 16px 40px;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(91, 155, 213, 0.3);
	font-family: 'Rambla', sans-serif;
	margin-top: 10px;
}

.form-button:hover {
	background: linear-gradient(135deg, #4a90e2 0%, #5b9bd5 100%);
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(91, 155, 213, 0.4);
}

@media (max-width: 992px) {
	.angebot-kontakt-container {
		grid-template-columns: 1fr;
	}
}


.error-message {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	margin-bottom: 0;
	display: none;
}

.btn-primary {
	background-color: var(--accent-color);
	border: 2px solid var(--accent-color);
	color: white;
	font-weight: 600;
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-primary:hover {
	background-color: transparent;
	color: var(--accent-color);
	border-color: var(--accent-color);
	transform: translateY(-1px);
}

.btn-primary:focus {
	box-shadow: 0 0 0 0.2rem rgba(78, 21, 4, 0.25);
}

/* Responsive pour les blocs finaux */
@media (max-width: 768px) {

	.contact-title,
	.form-title {
		font-size: 2rem;
	}

	.contact-info {
		padding: 2rem;
	}

	.form-container {
		padding: 2rem;
	}

	.social-links {
		gap: 0.75rem;
	}

	.social-link {
		width: 45px;
		height: 45px;
		font-size: 1.3rem;
	}
}

/* Vergleichstabelle Styles */
table {
	font-family: 'Rambla', sans-serif;
}

table th {
	font-weight: 700;
}

table td {
	font-size: 0.95rem;
}

@media (max-width: 768px) {
	table {
		font-size: 0.85rem;
	}
	
	table th,
	table td {
		padding: 8px !important;
	}
}