/* Reset et styles de base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #1e293b;
	background-color: #ffffff;
}

/* Remove list bullets globally */
ul {
	list-style: none;
}

li {
	list-style: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Variables CSS */
:root {
	--primary-color: #99e90e;
	--background-color: #ffffff;
	--text-color: #263b1e;
	--popup-color: #54b722;
	--secondary-color: #d2eac6;
	--transition: all 0.3s ease;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%) translateY(100%);
	max-width: 800px;
	width: 90%;
	background: var(--popup-color);
	color: white;
	padding: 20px;
	z-index: 1000;
	border-radius: 15px;
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
}

.cookie-popup.show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
	visibility: visible;
}

.cookie-content {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 0 20px;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	align-items: center;
}

.cookie-link {
	color: var(--primary-color);
	text-decoration: underline;
}

.cookie-accept {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: var(--transition);
}

.cookie-accept:hover {
	background: #0284c7;
}

/* Header */
.header {
	background: var(--background-color);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}

.navbar {
	padding: 1rem 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-icon {
	width: 40px;
	height: 40px;
}

.nav-logo h1 {
	color: var(--primary-color);
	font-size: 2rem;
	font-weight: bold;
	margin: 0;
}

.logo-link {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

.logo-link:hover {
	color: #0284c7;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-link {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: var(--transition);
	position: relative;
	padding: 8px 12px;
	border-radius: 6px;
}

.nav-link:hover {
	color: var(--primary-color);
	background: rgba(197, 197, 197, 0.1);
}

.nav-link.active {
	color: var(--primary-color);
	background: rgba(14, 165, 233, 0.15);
	font-weight: 600;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: var(--transition);
}

.nav-link.active::after {
	width: 100%;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.bar {
	width: 25px;
	height: 3px;
	background: var(--text-color);
	margin: 3px 0;
	transition: var(--transition);
}

/* Hero Section */
.hero {
	/* background: linear-gradient(135deg, var(--primary-color) 0%, #0284C7 100%); */
	background-image: url(../images/trava-boke.jpg);
	background-size: cover;
	background-position: center;
	color: white;
	padding: 120px 0 80px;
	text-align: center;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	font-weight: bold;
	color: #374151;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	color: #374151;
}

.hero-subtitle {
	font-size: 1rem;
	margin-bottom: 2rem;
	max-width: 650px;
	opacity: 0.9;
	line-height: 1.6;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	background: white;
	color: var(--primary-color);
	padding: 15px 30px;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.section::before {
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	width: 200%;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--primary-color),
		transparent
	);
	opacity: 0.3;
}

.alt-bg {
	background: var(--secondary-color);
	border-radius: 0;
}

.section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--text-color);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.section h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 2px;
}

.section-icon {
	width: 40px;
	height: 40px;
	filter: drop-shadow(0 3px 6px rgba(14, 165, 233, 0.3));
	transition: var(--transition);
}

.section h2:hover .section-icon {
	transform: scale(1.1) rotate(5deg);
}

/* Content blocks styling */
.content-block {
	background: white;
	padding: 3rem;
	margin: 2rem 0;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	border-left: 4px solid var(--primary-color);
	transition: var(--transition);
}

.content-block:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.content-block h3 {
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.content-block .block-icon {
	width: 32px;
	height: 32px;
	filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.3));
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.content-item {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
	text-align: center;
}

.content-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.content-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 1rem;
	display: block;
	filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.2));
}

.content-item h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.content-item p {
	line-height: 1.8;
	text-align: left;
}

/* Pricing */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.pricing-card {
	background: white;
	padding: 2.5rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
	position: relative;
}

.pricing-card.featured {
	transform: scale(1.05);
	border: 3px solid var(--primary-color);
}

.pricing-card.featured::before {
	content: 'Populaire';
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary-color);
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: bold;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.price {
	font-size: 3rem;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}

.program-description {
	font-size: 0.95rem;
	color: var(--text-color);
	margin-bottom: 1.5rem;
	line-height: 1.5;
	opacity: 0.8;
	font-style: italic;
}

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

.features li {
	padding: 0.8rem 0;
	border-bottom: 1px solid var(--secondary-color);
	position: relative;
	padding-left: 25px;
	transition: var(--transition);
}

.features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
	font-size: 1.1rem;
}

.features li:hover {
	color: var(--primary-color);
	padding-left: 30px;
}

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

.pricing-btn {
	background: var(--primary-color);
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 25px;
	font-weight: bold;
	cursor: pointer;
	transition: var(--transition);
	width: 100%;
}

.pricing-btn:hover {
	background: #0284c7;
	transform: translateY(-2px);
}

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.gallery-item {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

.gallery-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.gallery-content {
	padding: 2rem;
}

.gallery-content h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

.gallery-content p {
	line-height: 1.7;
	color: var(--text-color);
}

/* Testimonials */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.testimonial {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.testimonial p {
	font-style: italic;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.testimonial-author {
	margin-top: 1rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--primary-color);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}

.author-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.author-info strong {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.author-info span {
	color: var(--accent-color);
	font-size: 0.9rem;
	font-weight: 500;
}

.testimonial-author strong {
	color: var(--primary-color);
	display: block;
	margin-bottom: 0.5rem;
}

/* Form */
.form-container {
	max-width: 600px;
	margin: 0 auto;
	background: white;
	padding: 3rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid var(--secondary-color);
	border-radius: 8px;
	font-size: 1rem;
	transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.checkbox-group input[type='checkbox'] {
	width: auto;
	margin-top: 2px;
}

.checkbox-group label {
	margin-bottom: 0;
	font-weight: normal;
}

.error-message {
	color: #ef4444;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: block;
}

.submit-btn {
	background: var(--primary-color);
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: var(--transition);
	width: 100%;
}

.submit-btn:hover {
	background: #0284c7;
	transform: translateY(-2px);
}

.submit-btn:disabled {
	background: #94a3b8;
	cursor: not-allowed;
	transform: none;
}

/* Contact */
.contact-content {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.contact-info h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.contact-item {
	margin: 1rem 0;
	font-size: 1.1rem;
}

.contact-item a {
	color: var(--primary-color);
	text-decoration: none;
}

.contact-item a:hover {
	text-decoration: underline;
}

/* Footer */
.footer {
	background: var(--text-color);
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.footer-section h3 {
	font-size: 40px;
}

.footer-section ul {
	list-style: none;
	padding: 0;
}

.footer-section ul li {
	margin-bottom: 0.8rem;
	position: relative;
	padding-left: 20px;
	transition: var(--transition);
}

.footer-section ul li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-size: 0.9rem;
	transition: var(--transition);
}

.footer-section ul li:hover::before {
	transform: translateX(3px);
}

.footer-section a {
	color: white;
	text-decoration: none;
	transition: var(--transition);
}

.footer-section a:hover {
	color: var(--primary-color);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #374151;
}

/* Additional visual enhancements */
.hero {
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>')
		repeat;
	pointer-events: none;
}

/* Improved section transitions */
.section {
	position: relative;
	z-index: 1;
}

.section.alt-bg {
	background: linear-gradient(135deg, var(--secondary-color) 0%, #e2e8f0 100%);
}

/* Enhanced content item styling */
.content-item {
	position: relative;
	overflow: hidden;
}

.content-item::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(14, 165, 233, 0.05) 0%,
		transparent 70%
	);
	transform: scale(0);
	transition: transform 0.6s ease;
	pointer-events: none;
}

.content-item:hover::before {
	transform: scale(1);
}

/* FAQ Styles */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border-radius: 12px;
	margin-bottom: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	border-left: 4px solid var(--primary-color);
	overflow: hidden;
	transition: var(--transition);
}

.faq-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
	padding: 1.5rem 2rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	transition: var(--transition);
}

.faq-question:hover {
	background: var(--secondary-color);
}

.faq-question h3 {
	margin: 0;
	color: var(--primary-color);
	font-size: 1.1rem;
	font-weight: 600;
}

.faq-toggle {
	font-size: 1.5rem;
	color: var(--primary-color);
	font-weight: bold;
	transition: var(--transition);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--secondary-color);
}

.faq-item.active .faq-toggle {
	background: var(--primary-color);
	color: white;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-answer.active {
	max-height: 500px;
}

.faq-answer p {
	padding: 0 2rem 1.5rem;
	margin: 0;
	color: var(--text-color);
	line-height: 1.6;
}

/* Success Modal Styles */
.success-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.success-modal.show {
	opacity: 1;
	visibility: visible;
}

.success-modal-content {
	background: white;
	padding: 3rem 2rem;
	border-radius: 15px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	transform: translateY(-20px);
	transition: transform 0.3s ease;
}

.success-modal.show .success-modal-content {
	transform: translateY(0);
}

.success-icon {
	width: 80px;
	height: 80px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: white;
	margin: 0 auto 1.5rem;
	font-weight: bold;
}

.success-modal h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.success-modal p {
	color: var(--text-color);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.success-btn {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.success-btn:hover {
	background: var(--accent-color);
	transform: translateY(-2px);
}

/* Expertise Styles */
.expertise-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.expertise-card {
	background: white;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	border-left: 4px solid var(--primary-color);
	transition: var(--transition);
	text-align: center;
}

.expertise-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
	margin-bottom: 1.5rem;
}

.method-icon {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.expertise-content h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.4rem;
	font-weight: 600;
}

.expertise-content p {
	color: var(--text-color);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.expertise-stats {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding-top: 1rem;
	border-top: 2px solid var(--secondary-color);
}

.stat-number {
	font-size: 2rem;
	font-weight: bold;
	color: var(--primary-color);
	line-height: 1;
}

.stat-label {
	font-size: 0.9rem;
	color: var(--accent-color);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Method Steps Styles */
.method-content {
	max-width: 1000px;
	margin: 0 auto;
}

.method-intro {
	text-align: center;
	margin-bottom: 3rem;
}

.lead-text {
	font-size: 1.2rem;
	line-height: 1.6;
	color: var(--text-color);
	max-width: 800px;
	margin: 0 auto 1.5rem;
}

.method-subtitle {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-color);
	max-width: 850px;
	margin: 0 auto;
	opacity: 0.9;
	font-style: italic;
}

.method-steps {
	display: grid;
	gap: 2rem;
}

.step-card {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	padding: 2rem;
	background: white;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	border-left: 4px solid var(--primary-color);
	transition: var(--transition);
}

.step-card:hover {
	transform: translateX(10px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	flex-shrink: 0;
}

.step-content h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.step-content p {
	color: var(--text-color);
	line-height: 1.6;
	margin: 0;
}

/* Resources Grid Styles */
.resources-grid {
	display: grid;
	gap: 3rem;
	margin-top: 3rem;
}

.resource-item {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	padding: 2.5rem;
	background: white;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	border-left: 4px solid var(--primary-color);
	transition: var(--transition);
}

.resource-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.resource-image {
	flex-shrink: 0;
}

.resource-icon {
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.resource-content h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

.resource-content p {
	color: var(--text-color);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.resource-detail {
	font-size: 0.95rem;
	color: var(--text-color);
	opacity: 0.9;
	font-style: italic;
	margin-bottom: 1.5rem;
	padding-left: 1rem;
	border-left: 3px solid var(--secondary-color);
}

.resource-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.resource-features li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--text-color);
}

.resource-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
	.section h2 {
		font-size: 2rem;
		flex-direction: column;
		gap: 10px;
	}

	.section-icon {
		width: 32px;
		height: 32px;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: var(--transition);
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu.active .nav-link.active {
		background: var(--primary-color);
		color: white;
		border-radius: 8px;
		padding: 12px 20px;
		margin: 5px 20px;
	}

	.nav-menu.active .nav-link.active::after {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

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

	.content-grid,
	.pricing-grid,
	.testimonials-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.pricing-card.featured {
		transform: none;
	}

	.pricing-card.featured:hover {
		transform: translateY(-10px);
	}

	.form-container {
		padding: 2rem;
		margin: 0 20px;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-buttons {
		justify-content: center;
	}

	/* New sections responsive */
	.expertise-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.expertise-card {
		padding: 2rem;
	}

	.method-icon {
		width: 50px;
		height: 50px;
	}

	.stat-number {
		font-size: 1.5rem;
	}

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

	.step-number {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}

	.resource-item {
		flex-direction: column;
		text-align: center;
		padding: 2rem;
		gap: 1.5rem;
	}

	.resource-icon {
		width: 60px;
		height: 60px;
		margin: 0 auto;
	}

	.lead-text {
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.section {
		padding: 60px 0;
	}

	.content-item,
	.pricing-card,
	.testimonial {
		padding: 1.5rem;
	}

	.form-container {
		padding: 1.5rem;
	}
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.content-item,
.pricing-card,
.testimonial {
	animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
	/* outline: 2px solid var(--primary-color); */
	outline-offset: 2px;
}

/* Print styles */
@media print {
	.header,
	.cookie-popup,
	.cta-button,
	.pricing-btn,
	.submit-btn {
		display: none;
	}

	body {
		font-size: 12pt;
		line-height: 1.4;
	}

	.section {
		padding: 20px 0;
	}
}
