﻿:root {
	--primary: #4b2c50; /* Deep Slate Blue - primary brand color */
	--secondary: #ecf0f1; /* Light Grayish Blue - for backgrounds and lighter elements */
	--accent: #db34d8; /* Bright Sky Blue - for calls to action and highlights */
	--accent-hover: #a921bb; /* Slightly darker blue for hover effects */
	--dark: #331c2f; /* Very Dark Blue-Gray - for deep backgrounds and text */
	--light-text: #f8f8f8; /* Off-white for text on dark backgrounds */
	--dark-text: #502c4c; /* Primary color for text on light backgrounds */
	--white: #ffffff; /* Pure White */
	--light-gray: #bdc3c7; /* Medium light gray for subtle borders/separators */
	--background-color: #ecf0f1; /* Main background color */
	--text-color: var(--dark-text); /* Default text color */
	--accent-color: var(--accent); /* Default accent color */
	--light-accent: rgba(
		52,
		152,
		219,
		0.15
	); /* Light transparency of accent for overlays */
	--header-height: 80px;
	--transition: all 0.3s ease;
	--shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft, subtle shadow */
}

.fw-medium {
	font-weight: 500 !important;
}

.fw-semi-bold {
	font-weight: 600 !important;
}

body {
	font-family: 'Roboto', sans-serif; /* Изменен шрифт */
	color: var(--text-color);
	background-color: gray;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
	background-color: var(--accent-color);
	color: var(--dark-bg); /* Темный цвет текста на желтой кнопке */
	border-radius: 50%;
	box-shadow: var(--shadow);
}

.back-to-top:hover {
	background-color: var(--accent-hover);
}

/*** 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;
	border-radius: 5px;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-accent {
	/* Добавлен класс btn-accent для основной кнопки */
	color: var(--dark-bg); /* Темный текст на желтых кнопках */
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn.btn-outline-secondary {
	/* Для outline кнопок */
	color: var(--accent-color);
	border-color: var(--accent-color);
	background-color: transparent;
}

.btn.btn-primary:hover,
.btn.btn-secondary:hover,
.btn.btn-accent:hover {
	background-color: var(--accent-hover);
	border-color: var(--accent-hover);
	color: var(--dark-bg); /* Убедимся, что текст темный при ховере */
}

.btn.btn-outline-secondary:hover {
	background-color: var(--accent-color);
	color: var(--dark-bg);
}

.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: 5px;
}

/*** Navbar ***/
.site-header {
	background-color: black !important; /* Темный хедер */
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); /* Более темный тень */
	transition: var(--transition);
	padding-top: 0;
	display: flex;
	align-items: center;
}

.site-header.scrolled {
	height: 60px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.site-logo {
	font-size: 26px;
	font-weight: 700;
	color: var(--accent-color); /* Желтое лого */
	text-decoration: none;
	position: relative;
	transition: var(--transition);
}

.site-logo:hover {
	color: var(--accent-hover);
}

.nav-link {
	color: var(--light-text) !important; /* Светлый текст для навигации */
	font-weight: 500;
	padding: 10px 18px !important;
	transition: var(--transition);
	position: relative;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
	color: var(--accent-color); /* Желтый при наведении/активности */
}

.nav-link:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: var(--accent-color);
	transition: var(--transition);
	transform: translateX(-50%);
}

.nav-link:hover:after,
.nav-link:focus:after,
.nav-link.active:after {
	width: 80%;
}

@media (max-width: 991.98px) {
	.navbar-dark .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}
}

/* Hero Section Specific Styles */
.hero-section {
	background-color: var(--dark-bg); /* Темный фон для hero секции */
	color: var(--light-text);
	padding: 80px 0;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	color: black !important; /* Белый заголовок */
}

.hero-title .highlight {
	color: var(--accent-color); /* Желтый акцент */
}

.hero-subtitle {
	font-size: 1.25rem;
	line-height: 1.6;
	margin-bottom: 30px;
	color: black !important; /* Светлый текст */
}

.hero-image-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-pattern {
	position: absolute;
	width: 90%;
	height: 90%;
	background-color: var(--light-accent); /* Легкий желтый полупрозрачный фон */
	border-radius: 10px;
	z-index: 1;
}

.hero-image {
	position: relative;
	z-index: 2;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

/* Advantages Section Specific Styles */
.advantages-section {
	background-color: var(--background-color);
	padding: 80px 0;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--white); /* Белый заголовок */
	margin-bottom: 20px;
}

.lead {
	font-size: 1.15rem;
	color: var(--light-text);
}

.advantages-list-column {
	display: flex;
	flex-wrap: wrap;
	gap: 30px; /* Отступ между элементами */
	justify-content: center;
}

.advantage-item-column {
	background-color: var(
		--light-bg
	); /* Темно-серый фон для карточек преимуществ */
	padding: 30px;
	border-radius: 10px;
	box-shadow: var(--shadow);
	display: flex;
	align-items: flex-start;
	gap: 20px;
	flex: 1 1 calc(50% - 15px); /* Два элемента в ряд на больших экранах */
	max-width: calc(50% - 15px);
}

@media (max-width: 768px) {
	.advantage-item-column {
		flex: 1 1 100%; /* Один элемент в ряд на мобильных */
		max-width: 100%;
	}
}

.advantage-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background-color: var(--accent-color); /* Желтый фон для иконок */
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--dark-bg); /* Темный цвет иконок */
	font-size: 28px;
}

.advantage-text h4 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--accent-color); /* Желтый заголовок */
}

.advantage-text p {
	font-size: 1rem;
	color: var(--light-text);
}

/* Pricing Section Specific Styles */
.pricing-section {
	background-color: var(--dark-bg);
	padding: 80px 0;
}

.pricing-card {
	background-color: var(
		--light-bg
	) !important; /* Темно-серый фон для карточек цен */
	border-radius: 10px;
	padding: 40px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	height: 100%; /* Убедимся, что карточки одной высоты */
}

.pricing-card.featured {
	border: 2px solid var(--accent-color); /* Желтая рамка для выделенной карточки */
	transform: translateY(-10px);
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.pricing-header {
	margin-bottom: 30px;
}

.pricing-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--accent-color); /* Желтый заголовок */
	margin-bottom: 10px;
}

.pricing-subtitle {
	font-size: 1rem;
	color: var(--light-text);
	margin-bottom: 20px;
}

.pricing-price {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--white); /* Белая цена */
}

.pricing-price span {
	font-size: 1rem;
	font-weight: 500;
	color: var(--light-text);
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin-bottom: 40px;
	flex-grow: 1; /* Чтобы список занимал все доступное пространство */
}

.pricing-feature {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: var(--light-text);
	text-align: left;
}

.pricing-feature-icon {
	color: var(--accent-color); /* Желтая галочка */
	margin-right: 10px;
	font-size: 24px;
}

.pricing-cta {
	margin-top: auto; /* Прижимаем кнопку к низу карточки */
}

/* CTA Section Specific Styles */
.cta-section {
	background-color: var(--background-color);
	padding: 80px 0;
}

.cta-section .row {
	margin-bottom: 60px; /* Отступ между блоками CTA */
}

.cta-section .row:last-child {
	margin-bottom: 0;
}

.cta-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cta-text {
	padding: 20px;
	background-color: var(
		--light-bg
	); /* Темно-серый фон для текстового блока CTA */
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.cta-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--white); /* Белый заголовок */
	margin-bottom: 15px;
}

.cta-description {
	font-size: 1.1rem;
	color: var(--light-text);
	margin-bottom: 25px;
}

.cta-image-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.cta-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

/* Testimonials Section Specific Styles */
.testimonials-section {
	background-color: var(--dark-bg);
	padding: 80px 0;
}

.testimonial-card {
	background-color: var(--light-bg); /* Темно-серый фон для карточек отзывов */
	border-radius: 10px;
	padding: 30px;
	box-shadow: var(--shadow);
	margin-bottom: 30px; /* Отступ между отзывами */
}

.testimonial-author {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.testimonial-author-img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
	border: 3px solid var(--accent-color); /* Желтая рамка вокруг аватара */
}

.testimonial-author-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-author-name {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--white); /* Белое имя */
}

.testimonial-author-title {
	font-size: 0.9rem;
	color: var(--light-text);
}

.testimonial-rating {
	margin-bottom: 15px;
}

.rating-star {
	color: var(--accent-color); /* Желтые звезды */
	font-size: 20px;
}

.testimonial-text {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--light-text);
}

/* Contact Section Specific Styles */
.contact-section {
	background-color: var(--background-color);
	padding: 80px 0;
}

.form-container {
	background-color: var(--light-bg); /* Темно-серый фон для формы */
	border-radius: 10px;
	padding: 40px;
	box-shadow: var(--shadow);
}

.form-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--white); /* Белый заголовок формы */
	margin-bottom: 30px;
	text-align: center;
}

.form-floating {
	margin-bottom: 20px;
}

.form-floating .form-control {
	background-color: var(--dark-bg); /* Черный фон для полей ввода */
	border: 1px solid var(--light-gray); /* Темно-серая рамка */
	color: var(--white); /* Белый текст ввода */
}

.form-floating .form-control:focus {
	border-color: var(--accent-color); /* Желтая рамка при фокусе */
	box-shadow: 0 0 0 0.25rem var(--light-accent);
}

.form-floating label {
	color: var(--light-gray); /* Светло-серый текст метки */
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
	color: var(--accent-color); /* Желтая метка при фокусе/заполнении */
}

/* Footer Specific Styles */
.footer {
	position: relative;
	background-color: black !important;
	color: var(--light-text);
	padding-top: 4rem;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(
		to right,
		var(--accent),
		var(--auxiliary)
	); /* Желтый градиент */
}

.footer .btn.btn-social {
	margin-right: 5px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light-text);
	border: 1px solid var(--light-text);
	border-radius: 35px;
	transition: 0.3s;
}

.footer .btn.btn-social:hover {
	color: var(--accent);
	border-color: var(--accent);
}

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 10px;
	margin: 6px;
	border: 1px solid var(--auxiliary); /* Желтый акцентный фон */
	border-radius: 12px;
	text-align: left;
	color: var(--light-text);
	font-size: 15px;
	font-weight: normal;
	text-transform: capitalize;
	transition: 0.3s;
}

.footer .btn.btn-link:hover {
	box-shadow: none;
	color: var(--dark-bg); /* Темный текст при ховере на желтом фоне */
	background-color: var(--accent-hover);
}

.footer .copyright {
	padding: 25px 0;
	font-size: 15px;
	border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
	color: var(--accent-color);
}

.footer .footer-menu a {
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}

/* Google Fonts - Roboto */
@import url('../css2');

.site-logo,
.hero-title,
.section-title,
.pricing-title,
.cta-title,
.form-title,
.testimonial-author-name {
	font-family: 'Roboto', sans-serif; /* Применяем Roboto к заголовкам */
}
---
/* Strengths Section Specific Styles */
.strengths-section {
	background-color: var(--background-color);
	padding: 100px 0;
}

.content-wrapper {
	padding: 100px 0;
}

.strengths-section .section-title {
	color: var(--white); /* Белый заголовок */
	margin-bottom: 20px;
}

.strengths-section .lead {
	color: var(--light-text); /* Светлый текст */
	margin-bottom: 50px;
}

.strength-card {
	background-color: black; /* Темно-серый фон для карточек */
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
	height: 100%; /* Гарантируем одинаковую высоту карточек */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	border: 1px solid transparent; /* Для эффекта наведения */
}

.strength-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
	border-color: var(--accent-color); /* Желтая рамка при наведении */
}

.strength-icon {
	width: 70px;
	height: 70px;
	background-color: var(--accent-color); /* Желтый фон для иконок */
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
	font-size: 36px;
	color: var(--dark-bg); /* Черный цвет иконок */
	flex-shrink: 0;
}

.strength-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--white); /* Белый заголовок карточки */
	margin-bottom: 15px;
}

.strength-text {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--light-text); /* Светлый текст описания */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.strength-card {
		padding: 25px;
	}
	.strength-title {
		font-size: 1.6rem;
	}
}

@media (max-width: 767.98px) {
	.strengths-section {
		padding: 60px 0;
	}
	.strengths-section .section-title {
		font-size: 2rem;
	}
	.strengths-section .lead {
		font-size: 1rem;
		margin-bottom: 30px;
	}
	.strength-card {
		padding: 20px;
	}
	.strength-icon {
		width: 60px;
		height: 60px;
		font-size: 30px;
		margin-bottom: 20px;
	}
	.strength-title {
		font-size: 1.4rem;
	}
	.strength-text {
		font-size: 0.95rem;
	}
}
.cookie-wrapper {
	background-color: var(--dark-bg); /* Темный фон для баннера куки */
	color: var(--light-text);
	border: 1px solid var(--accent-color); /* Желтая рамка */
}

.cookie-wrapper h2 {
	color: var(--white); /* Белый заголовок */
}

.cookie-wrapper a {
	color: var(--accent-color); /* Желтая ссылка */
}

.cookie-button {
	background-color: var(--accent-color); /* Желтая кнопка */
	color: var(--dark-bg); /* Темный текст */
}

.cookie-button#declineBtn {
	background-color: var(--light-gray); /* Серый фон для кнопки "отклонить" */
	color: var(--white);
}

@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;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;

	@media (max-width: 600px) {
		width: 100%;
		border-radius: 0;
	}
}

.cookie-wrapper.show {
	/* Korrektur: .show Klasse für Sichtbarkeit */
	right: 20px;
}

.hidden {
	display: none;
}

.cookie-wrapper h2 {
	color: var(--primary); /* Violett für Cookie-Titel */
	font-weight: 600;
	text-align: center;
	margin-bottom: 10px;
}

.cookie-wrapper .data p a {
	color: var(--primary); /* Violett für Cookie-Link */
	text-decoration: none;
}

.cookie-wrapper .data p a:hover {
	text-decoration: underline;
}

.buttons {
	padding: 20px 0px 0px; /* Reduzierter Padding */
	text-align: center;
	display: flex;
	justify-content: space-around;
	gap: 10px;
}

.buttons .cookie-button {
	border: 2px solid var(--primary);
	color: #fff;
	padding: 10px 15px;
	background: var(--primary);
	cursor: pointer;
	width: calc(50% - 5px); /* Anpassung für 2 Buttons mit Gap */
	transition: all 0.5s ease;
	max-width: 180px; /* Erhöhte Max-Breite */
	border-radius: 5px; /* Abgerundete Buttons */
	font-size: 1rem;
}

.buttons #acceptBtn:hover {
	background-color: transparent;
	color: var(--primary);
}

#declineBtn {
	background-color: var(--white);
	color: var(--primary);
}

#declineBtn:hover {
	background-color: var(--primary);
	color: var(--white);
}

/* Footer styles */
/* Footer styles */
.footer {
	padding-top: 4rem;
	background-color: var(--dark-bg); /* Dunklerer Violettton für Footer */
	color: var(--light-text); /* Heller Text im Footer */
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, var(--accent), var(--auxiliary));
}

.footer .brand-link {
	font-size: 28px; /* Größeres Logo im Footer */
	font-weight: 700;
	color: var(--light); /* Weiß im Footer-Logo */
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: all 0.3s ease;
	margin-bottom: 20px; /* Abstand nach dem Logo */
}

.footer .brand-link:hover {
	color: var(--accent);
	transform: translateX(0); /* Keine Verschiebung beim Hover */
}

.footer .contact-email {
	color: var(--light-text); /* Heller Text für E-Mail im Footer */
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	transition: all 0.3s ease;
	cursor: pointer;
	margin-top: 15px;
	margin-bottom: 20px; /* Abstand nach der E-Mail */
}

.footer .contact-email:hover {
	transform: translateX(5px);
	color: var(--accent);
}

.footer .footer_links {
	display: flex;
	flex-direction: column; /* Links untereinander anordnen */
	align-items: flex-start; /* Links linksbündig ausrichten */
	margin-top: 20px; /* Abstand zu den oberen Elementen */
}

.footer .btn.btn-link {
	display: block;
	text-align: left;
	color: var(--light-text); /* Heller Text für Footer-Links */
	text-decoration: none;
	padding: 8px 0; /* Vertikales Padding für Links */
	transition: all 0.3s ease;
	position: relative;
	padding-left: 0;
	margin: 0; /* Entfernen Sie den globalen Margin, da wir Gap verwenden */
	border: none; /* Entfernen Sie den Border, da er im Column-Layout stören kann */
}

.footer .btn.btn-link:hover {
	color: var(--accent);
	transform: translateX(5px);
	background-color: transparent; /* Sicherstellen, dass der Hintergrund beim Hover transparent bleibt */
	box-shadow: none;
}

.footer .copyright {
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 2rem;
	color: var(--light-text); /* Heller Text für Copyright */
	text-align: center; /* Copyright-Text zentrieren */
}

.footer .copyright a {
	color: var(--accent); /* Akzentfarbe für Links im Copyright */
}

/* Mobile-spezifische Anpassungen */
@media (max-width: 767.98px) {
	.footer {
		padding-top: 3rem;
		text-align: center; /* Alles im Footer zentrieren */
	}

	.footer .brand-link {
		margin-bottom: 1rem; /* Kleinerer Abstand auf Mobilgeräten */
		font-size: 24px; /* Etwas kleineres Logo auf Mobilgeräten */
	}

	.footer .contact-email {
		justify-content: center; /* E-Mail-Icon und Text zentrieren */
		margin-bottom: 1rem;
	}

	.footer .footer_links {
		align-items: center; /* Links zentrieren */
		margin-top: 1rem;
		padding-bottom: 20px; /* Abstand vor dem Copyright */
	}

	.footer .btn.btn-link {
		padding: 6px 0; /* Etwas weniger Padding auf Mobilgeräten */
	}

	.footer .copyright {
		margin-top: 1.5rem; /* Weniger Abstand zum Copyright */
	}

	/* Sicherstellen, dass die Bootstrap-Spalten auf kleinen Bildschirmen vollständig gestapelt werden */
	.footer .col-md-6,
	.footer .col-lg-6,
	.footer .col-md-12 {
		width: 100%;
		margin-bottom: 20px; /* Zusätzlicher Platz zwischen den gestapelten Abschnitten */
	}

	.footer .col-md-6:last-of-type,
	.footer .col-lg-6:last-of-type,
	.footer .col-md-12:last-of-type {
		margin-bottom: 0; /* Kein zusätzlicher Abstand für das letzte Element */
	}
}

/* new styles */
/* Styles généraux */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700; /* Stärkere Überschriften */
	line-height: 1.3;
	color: var(--dark-text); /* Dunkler Text für Überschriften */
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--primary); /* Violett für Abschnittstitel */
}

.lead {
	font-size: 1.1rem;
	color: var(--dark-text);
	opacity: 0.8;
}

.btn-accent {
	background-color: var(--accent-color);
	color: white !important;
	border: none;
	transition: var(--transition);
	text-transform: uppercase;
	font-size: 15px; /* Etwas größere Schrift */
	letter-spacing: 1.5px; /* Mehr Buchstabenabstand */
	font-weight: 600; /* Kräftigerer Font */
	padding: 14px 35px; /* Mehr Padding */
	border-radius: 8px; /* Stärker abgerundet */
}

.btn-accent:hover {
	background-color: var(--accent-hover);
	color: white;
	transform: translateY(-3px); /* Etwas stärkerer Hover-Effekt */
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Schatten beim Hover */
}

/* Styles pour le bloc principal (hero) */
.hero-section {
	background-color: var(--white);
	padding: 120px 0 80px 0; /* Anpassung des Paddings */
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: 600px;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 45%; /* Etwas breiter */
	height: 100%;
	background-color: var(--light-accent);
	clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: left;
}

.hero-title {
	font-size: 3.5rem; /* Größerer Titel */
	font-weight: 800; /* Sehr kräftig */
	margin-bottom: 1.5rem;
	line-height: 1.1;
	color: var(--dark-text);
}

.hero-subtitle {
	font-size: 1.3rem; /* Größere Untertitel */
	margin-bottom: 2.5rem; /* Mehr Abstand */
	font-weight: 400;
	max-width: 650px;
	color: var(--text-color);
}

.hero-title span,
.highlight {
	color: var(--accent-color); /* Violett-Akzent */
	position: relative;
}

.hero-image-container {
	position: relative;
	z-index: 2;
	padding-left: 30px; /* Abstand zum Text */
}

.hero-pattern {
	position: absolute;
	width: 250px; /* Größerer Kreis */
	height: 250px;
	background-color: var(--light-accent);
	border-radius: 50%;
	top: -50px; /* Etwas höher */
	left: -50px; /* Etwas weiter links */
	z-index: -1;
	opacity: 0.7; /* Etwas transparenter */
}

.hero-image {
	border-radius: 12px; /* Stärker abgerundete Ecken */
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Stärkerer Schatten */
	position: relative;
	z-index: 2;
}

@media (max-width: 991.98px) {
	.hero-section {
		padding: 100px 0;
		text-align: center;
	}

	.hero-section::before {
		width: 100%;
		clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0 100%);
		height: 50%;
		top: auto;
		bottom: 0;
	}

	.hero-title {
		font-size: 3rem;
	}

	.hero-image-container {
		margin-top: 3rem;
		padding-left: 0;
	}
}

@media (max-width: 767.98px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.hero-section {
		padding: 160px 0 80px 0; /* Anpassung für mobile Ansicht */
	}
}

/* Advantages Section */
.advantages-section {
	padding: 80px 0;
	background-color: var(--light-bg);
}

.advantages-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.advantages-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px; /* Abstand zwischen den Elementen */
}

.advantage-item {
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: var(--shadow);
	padding: 30px;
	text-align: center;
	flex: 1 1 calc(33.333% - 40px); /* 3 Elemente pro Reihe mit Abstand */
	max-width: calc(33.333% - 40px);
	display: flex;
	flex-direction: column;
	align-items: center;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.advantage-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
	font-size: 3.5rem; /* Größere Icons */
	color: var(--accent-color);
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: var(--light-accent);
}

.advantage-text h4 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: var(--primary);
}

.advantage-text p {
	font-size: 1rem;
	color: var(--dark-text);
}

@media (max-width: 991.98px) {
	.advantage-item {
		flex: 1 1 calc(50% - 30px); /* 2 Elemente pro Reihe auf Tablets */
		max-width: calc(50% - 30px);
	}
}

@media (max-width: 767.98px) {
	.advantages-section {
		padding: 60px 0;
	}
	.advantage-item {
		flex: 1 1 100%; /* 1 Element pro Reihe auf Mobilgeräten */
		max-width: 100%;
	}
	.advantage-icon {
		font-size: 3rem;
		width: 70px;
		height: 70px;
	}
	.advantage-text h4 {
		font-size: 1.3rem;
	}
}

/* Pricing Section */
.pricing-section {
	padding: 80px 0;
	background-color: var(--white);
}

.pricing-card {
	background-color: var(--light-bg);
	border-radius: 10px;
	box-shadow: var(--shadow);
	padding: 40px;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	border: 1px solid var(--light-gray);
}

.pricing-card.featured {
	background-color: var(--primary);
	color: var(--white);
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	border-color: var(--primary);
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-subtitle,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-price span,
.pricing-card.featured .pricing-feature div {
	color: var(--white);
}

.pricing-card.featured .pricing-feature-icon {
	color: var(--light); /* Helles Icon auf dunklem Hintergrund */
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.pricing-header {
	margin-bottom: 30px;
}

.pricing-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--primary);
}

.pricing-card.featured .pricing-title {
	color: var(--white);
}

.pricing-subtitle {
	font-size: 1rem;
	color: var(--dark-text);
	margin-bottom: 20px;
}

.pricing-card.featured .pricing-subtitle {
	color: var(--light-text);
}

.pricing-price {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 20px;
}

.pricing-card.featured .pricing-price {
	color: var(--white);
}

.pricing-price span {
	font-size: 1rem;
	font-weight: 400;
	color: var(--text-color);
}

.pricing-card.featured .pricing-price span {
	color: var(--light-text);
}

.pricing-features {
	text-align: left;
	margin-bottom: 30px;
}

.pricing-feature {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-size: 1.05rem;
	color: var(--dark-text);
}

.pricing-card.featured .pricing-feature {
	color: var(--light-text);
}

.pricing-feature-icon {
	color: var(--primary);
	margin-right: 10px;
	font-size: 1.3rem;
}

.pricing-card.featured .pricing-feature-icon {
	color: var(--light);
}

.pricing-cta .btn {
	width: 100%;
	padding: 12px 0;
	font-size: 1.1rem;
}

.pricing-cta .btn-outline-secondary {
	border-color: var(--primary);
	color: var(--primary);
	background-color: transparent;
}

.pricing-cta .btn-outline-secondary:hover {
	background-color: var(--primary);
	color: var(--white);
}

/* CTA Section */
.cta-section {
	padding: 80px 0;
	background-color: var(--background-color);
}

.cta-section .row {
	margin-bottom: 60px; /* Abstand zwischen den CTA-Blöcken */
}

.cta-section .row:last-child {
	margin-bottom: 0;
}

.cta-image-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.cta-image {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.cta-image:hover {
	transform: scale(1.02);
}

.cta-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cta-text {
	padding: 20px;
}

.cta-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.cta-description {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	color: var(--dark-text);
}

.cta-section.image-right .cta-image-container {
	order: 2;
}

.cta-section.image-right .cta-content {
	order: 1;
}

@media (max-width: 991.98px) {
	.cta-section .row {
		flex-direction: column;
	}
	.cta-section.image-right .cta-image-container,
	.cta-section.image-right .cta-content {
		order: unset; /* Setzt die Reihenfolge zurück für mobile Ansicht */
	}
	.cta-text {
		text-align: center;
		padding: 0;
		margin-top: 30px;
	}
	.cta-image-container {
		padding: 0;
	}
}

/* Testimonials Section */
.testimonials-section {
	padding: 80px 0;
	background-color: var(--light-bg);
}

.testimonial-card {
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: var(--shadow);
	padding: 30px;
	margin-bottom: 30px;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.testimonial-author-img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
	border: 3px solid var(--accent-color);
}

.testimonial-author-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-author-name {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary);
}

.testimonial-author-title {
	font-size: 0.9rem;
	color: var(--dark-text);
	opacity: 0.7;
}

.testimonial-rating {
	margin-bottom: 15px;
}

.rating-star {
	color: #ffd700; /* Goldfarbe für Sterne */
	font-size: 1.2rem;
}

.testimonial-text {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-color);
}

/* Contact Section */
.contact-section {
	padding: 80px 0;
	background-color: var(--white);
}

.form-container {
	background-color: var(--light-bg);
	border-radius: 10px;
	box-shadow: var(--shadow);
	padding: 40px;
}

.form-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 30px;
	text-align: center;
	color: var(--primary);
}

.form-floating {
	margin-bottom: 20px;
}

.form-control {
	border-radius: 5px;
	border: 1px solid var(--light-gray);
	padding: 15px;
	font-size: 1rem;
	color: var(--dark-text);
}

.form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25); /* Leichter violett Schatten */
}

.form-floating label {
	color: var(--dark-text);
	opacity: 0.7;
}

.btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
	font-weight: 600;
	letter-spacing: 1px;
	padding: 15px 0;
}

.btn-primary:hover {
	background-color: var(--accent-hover);
	border-color: var(--accent-hover);
}

/* Styles pour le bloc À propos de nous */
.about-section {
	padding: 100px 0;
	position: relative;
}

.about-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background-color: var(--light-accent);
	clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 70%);
	z-index: 1;
}

.about-content {
	position: relative;
	z-index: 2;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
}

.about-card {
	background-color: white;
	border-radius: 8px;
	box-shadow: var(--shadow);
	padding: 30px;
	height: 100%;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.about-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.about-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background-color: var(--accent-color);
}

.about-card-title {
	font-size: 1.5rem;
	margin-bottom: 1.2rem;
	font-weight: 600;
	color: var(--text-color);
}

.about-card-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	color: var(--accent-color);
	opacity: 0.15;
	font-size: 3rem;
}

/* Styles pour le bloc Nos programmes */
.programs-section {
	padding: 100px 0;
	background-color: white;
	position: relative;
}

.programs-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
	height: 150px;
	background-color: var(--light-accent);
	border-radius: 50%;
	z-index: 1;
}

.programs-section::after {
	content: '';
	position: absolute;
	bottom: 50px;
	left: 50px;
	width: 100px;
	height: 100px;
	background-color: var(--light-accent);
	border-radius: 50%;
	z-index: 1;
}

.program-card {
	border-radius: 8px;
	background-color: var(--background-color);
	box-shadow: var(--shadow);
	transition: var(--transition);
	height: 100%;
	position: relative;
	z-index: 2;
}

.program-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.program-card-header {
	background-color: var(--accent-color);
	color: white;
	padding: 20px;
	border-radius: 8px 8px 0 0;
	position: relative;
}

.program-card-header h3 {
	margin: 0;
	font-size: 1.5rem;
	color: white;
}

.program-card-body {
	padding: 25px;
}

.program-feature {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.program-feature-icon {
	color: var(--accent-color);
	margin-right: 15px;
	font-size: 1.25rem;
}

.program-feature-text h4 {
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.program-feature-text p {
	margin: 0;
	font-size: 0.95rem;
}

.program-number {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: rgba(255, 255, 255, 0.2);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 700;
	font-size: 1.2rem;
}

.program-cta {
	margin-top: 20px;
	text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.about-section,
	.programs-section {
		padding: 70px 0;
	}

	.section-title {
		font-size: 2.2rem;
	}

	.about-card {
		margin-bottom: 30px;
	}

	.program-card {
		margin-bottom: 30px;
	}
}

@media (max-width: 767.98px) {
	.section-title {
		font-size: 2rem;
	}

	.about-card-title {
		font-size: 1.3rem;
	}

	.program-card-header h3 {
		font-size: 1.3rem;
	}
}

/* Styles pour le bloc Nos formules d'abonnement */
.pricing-section {
	padding: 100px 0;
	background-color: var(--background-color);
	position: relative;
}

.pricing-card {
	background-color: white;
	border-radius: 12px;
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: var(--transition);
	height: 100%;
	position: relative;
	z-index: 2;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
	border: 2px solid var(--accent-color);
	transform: scale(1.05);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-10px);
}

.pricing-header {
	padding: 30px 25px;
	text-align: center;
	position: relative;
}

.pricing-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.pricing-subtitle {
	color: var(--accent-color);
	font-weight: 500;
	margin-bottom: 20px;
}

.pricing-img-container {
	width: 100%;
	height: 180px;
	overflow: hidden;
	position: relative;
}

.pricing-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.pricing-card:hover .pricing-img {
	transform: scale(1.05);
}

.pricing-price {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin: 25px 0 15px;
}

.pricing-price span {
	font-size: 1rem;
	font-weight: 400;
	opacity: 0.7;
}

.pricing-features {
	padding: 30px 25px;
}

.pricing-feature {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.pricing-feature:last-child {
	margin-bottom: 0;
}

.pricing-feature-icon {
	color: var(--accent-color);
	margin-right: 15px;
	flex-shrink: 0;
}

.pricing-cta {
	padding: 0 25px 30px;
	text-align: center;
}

.pricing-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: var(--accent-color);
	color: white;
	font-size: 0.8rem;
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: 500;
	z-index: 2;
}

/* Styles pour le bloc Témoignages */
.testimonials-section {
	padding: 100px 0;
	background-color: white;
	position: relative;
}

.testimonial-card {
	background-color: var(--background-color);
	border-radius: 12px;
	padding: 30px 30px;
	box-shadow: var(--shadow);
	position: relative;
	transition: var(--transition);
	height: 100%;
	margin: 1rem 0;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
	font-size: 3rem;
	color: var(--accent-color);
	opacity: 0.2;
	position: absolute;
	top: 20px;
	left: 20px;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.8;
	font-style: italic;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.testimonial-author-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
	border: 2px solid var(--accent-color);
}

.testimonial-author-name {
	font-weight: 600;
	margin-bottom: 3px;
}

.testimonial-author-title {
	font-size: 0.9rem;
	opacity: 0.7;
}

.testimonial-rating {
	display: flex;
	margin-bottom: 15px;
}

.rating-star {
	color: var(--accent-color);
	margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.pricing-section,
	.testimonials-section {
		padding: 70px 0;
	}

	.pricing-card.featured {
		transform: scale(1);
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.pricing-card.featured:hover {
		transform: translateY(-10px);
	}
}

@media (max-width: 767.98px) {
	.pricing-price {
		font-size: 2rem;
	}

	.pricing-title {
		font-size: 1.3rem;
	}

	.testimonial-card {
		margin-bottom: 30px;
	}
}

/* Styles pour le bloc Avantages */
.advantages-section {
	padding: 100px 0;
	position: relative;
	background-color: white;
}

.advantages-section::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-color: var(--light-accent);
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.advantages-content {
	position: relative;
	z-index: 2;
}

.advantages-image-container {
	position: relative;
	margin-bottom: 30px;
}

.advantages-image {
	border-radius: 10px;
	box-shadow: var(--shadow);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.advantages-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	background-color: var(--auxiliary);
	color: var(--light);
	border-radius: 2rem;
	padding: 3rem;
}

.advantage-item {
	display: flex;
	align-items: flex-start;
	background-color: var(--dark-text);
	padding: 2rem;
	border-radius: 2rem;
}

.advantage-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 50%;
	background-color: var(--background-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.advantage-icon span {
	color: var(--accent-color);
	font-size: 1.5rem;
}

.advantage-text h4 {
	color: var(--light);
	font-size: 1.1rem;
	margin-bottom: 8px;
	font-weight: 600;
}

.advantage-text p {
	color: var(--light);
	margin: 0;
	line-height: 1.6;
}

/* Styles pour le bloc Appel à l'action */
.cta-section {
	padding: 100px 0;
	background-color: var(--background-color);
	position: relative;
}

.cta-content {
	position: relative;
	z-index: 2;
}

.cta-image-container {
	position: relative;
	z-index: 2;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.cta-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-section.image-right .cta-text {
	margin-right: -50px;
}

.cta-section.image-left .cta-text {
	margin-left: -50px;
}

.cta-title {
	font-size: 2rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.cta-description {
	margin-bottom: 30px;
	font-size: 1.1rem;
}

/* Styles pour le bloc Contacts */
.contact-section {
	padding: 100px 0;
	background-color: white;
	position: relative;
}

.contact-info {
	margin-bottom: 30px;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 50%;
	background-color: var(--light-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.contact-icon span {
	color: var(--accent-color);
	font-size: 1.5rem;
}

.contact-details h4 {
	font-size: 1.1rem;
	margin-bottom: 5px;
	font-weight: 600;
}

.contact-details p,
.contact-details a {
	margin: 0;
	line-height: 1.6;
	color: var(--text-color);
	text-decoration: none;
	transition: var(--transition);
}

.contact-details a:hover {
	color: var(--accent-color);
}

.social-links {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--light-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: var(--transition);
	color: var(--accent-color);
	text-decoration: none;
}

.social-link:hover {
	background-color: var(--accent-color);
	color: white;
	transform: translateY(-3px);
}

/* Styles pour le formulaire */
.form-section {
	padding: 0 0 100px;
	background-color: white;
}

.form-container {
	background-color: var(--background-color);
	border-radius: 10px;
	padding: 40px;
	box-shadow: var(--shadow);
}

.form-title {
	margin-bottom: 30px;
	font-size: 1.5rem;
	font-weight: 600;
	position: relative;
	padding-bottom: 15px;
}

.form-floating {
	margin-bottom: 20px;
}

.form-control {
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 12px 15px;
	height: auto;
	font-size: 1rem;
}

.form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.25rem rgba(138, 101, 13, 0.25);
}

.btn-primary {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	transition: var(--transition);
}

.btn-primary:hover {
	background-color: var(--accent-hover);
	border-color: var(--accent-hover);
	transform: translateY(-2px);
}

/* Media queries */
@media (max-width: 991.98px) {
	.advantages-section,
	.cta-section,
	.contact-section,
	.form-section {
		padding: 70px 0;
	}

	.advantages-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.cta-section.image-right .cta-text,
	.cta-section.image-left .cta-text {
		margin-right: 0;
		margin-left: 0;
		margin-top: 30px;
	}

	.cta-image-container {
		height: 300px;
	}
}

@media (max-width: 767.98px) {
	.cta-title {
		font-size: 1.8rem;
	}

	.form-container {
		padding: 30px 20px;
	}
}

.footer_links {
	display: flex;
	flex-direction: row;
}

/* Advantages Section */
.advantages-section {
	padding: 80px 0;
	background-color: var(--light-bg);
}

.advantages-list-column {
	/* New class for the column layout container */
	display: flex;
	flex-direction: column; /* Stack items vertically */
	gap: 25px; /* Spacing between stacked items */
}

.advantage-item-column {
	/* New class for each item in the column */
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: var(--shadow);
	padding: 30px;
	display: flex; /* Use flexbox for icon and text alignment */
	align-items: center; /* Vertically align icon and text */
	text-align: left; /* Align text to the left */
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	width: 100%; /* Make each item take full width of its parent column */
}

.advantage-item-column:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
	font-size: 3.5rem;
	color: var(--accent-color);
	margin-right: 25px; /* Add margin to the right of the icon */
	min-width: 80px; /* Ensure icon has a fixed width */
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: var(--light-accent);
	flex-shrink: 0; /* Prevent icon from shrinking */
}

.advantage-text h4 {
	font-size: 1.5rem;
	margin-bottom: 8px; /* Slightly reduced margin for tighter text */
	color: var(--primary);
}

.advantage-text p {
	font-size: 1rem;
	color: var(--dark-text);
	line-height: 1.6; /* Improved line height for readability */
}

@media (max-width: 767.98px) {
	.advantages-section {
		padding: 60px 0;
	}
	.advantage-item-column {
		flex-direction: column; /* Stack icon and text on very small screens */
		text-align: center;
		padding: 25px;
	}
	.advantage-icon {
		font-size: 3rem;
		width: 70px;
		height: 70px;
		margin-right: 0; /* Remove right margin for stacking */
		margin-bottom: 15px; /* Add bottom margin for stacking */
	}
	.advantage-text h4 {
		font-size: 1.3rem;
	}
}
