/* ===== RESET & BASE STYLES ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.6;
	color: #5a4a3a;
	background-color: #f5f2e8;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

ul {
	list-style: none;
}

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

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, #6b4423, #5a4a3a);
	color: #f5f2e8;
	box-shadow: 0 4px 15px rgba(107, 68, 35, 0.3);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #5a4a3a, #6b4423);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(107, 68, 35, 0.4);
}

.btn-secondary {
	background: transparent;
	color: #6b4423;
	border: 2px solid #6b4423;
}

.btn-secondary:hover {
	background: #6b4423;
	color: #f5f2e8;
	transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
	background: rgba(245, 242, 232, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(107, 68, 35, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.header.scrolled {
	background: rgba(245, 242, 232, 0.98);
	box-shadow: 0 4px 30px rgba(107, 68, 35, 0.15);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
}

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

.logo-img {
	width: 180px;
}

/* ===== NAVIGATION ===== */
.main-nav {
	display: flex;
	align-items: center;
}

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

.nav-menu li {
	position: relative;
}

.nav-menu > li > a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 15px;
	border-radius: 6px;
	font-weight: 500;
	font-size: 0.9rem;
	color: #5a4a3a;
	transition: all 0.3s ease;
}

.nav-menu > li > a.active,
.dropdown-menu li a.active {
	background: rgba(107, 68, 35, 0.1);
	color: #6b4423;
	font-weight: 600;
}

.nav-menu > li > a.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 2px;
	background: #6b4423;
	border-radius: 1px;
}

.nav-menu > li > a:hover {
	background: rgba(107, 68, 35, 0.1);
	color: #6b4423;
}

.nav-menu > li > a i {
	font-size: 0.8rem;
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: white;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li a {
	display: block;
	padding: 10px 20px;
	color: #5a4a3a;
	font-size: 0.85rem;
	transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
	background: rgba(107, 68, 35, 0.05);
	color: #6b4423;
	padding-left: 25px;
}

.dropdown-menu li a.active {
	background: rgba(107, 68, 35, 0.15);
	border-left: 3px solid #6b4423;
	padding-left: 22px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	gap: 4px;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #6b4423;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
	position: relative;
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f5f2e8 0%, #ede6d3 100%);
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('images/fond-bois.jpg') center/cover;
	opacity: 0.05;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-text h1 {
	font-size: 3rem;
	font-weight: 700;
	color: #6b4423;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero-text p {
	font-size: 1.1rem;
	margin-bottom: 30px;
	color: #5a4a3a;
	line-height: 1.6;
}

.hero-stats {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: #6b4423;
	line-height: 1;
}

.stat-label {
	font-size: 0.9rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.image-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
	transition: all 0.3s ease;
	height: 200px;
}

.image-card:nth-child(1) {
	grid-column: 1 / -1;
}

.image-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(139, 69, 19, 0.25);
}

.image-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

/* ===== MAIN CONTENT ===== */
.main-content {
	padding: 80px 0;
}

.site-map h2 {
	text-align: center;
	font-size: 2.5rem;
	color: #6b4423;
	margin-bottom: 60px;
	position: relative;
}

.site-map h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #6b4423, #5a4a3a);
	border-radius: 2px;
}

.site-map-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 80px;
}

.site-map-category {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(107, 68, 35, 0.1);
	transition: all 0.3s ease;
	border-top: 4px solid #6b4423;
}

.site-map-category:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(107, 68, 35, 0.15);
}

.site-map-category h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.3rem;
	color: #6b4423;
	margin-bottom: 15px;
}

.site-map-category p {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.5;
}

.site-map-category ul li {
	margin-bottom: 8px;
}

.site-map-category ul li a {
	color: #5a4a3a;
	display: flex;
	align-items: center;
	padding: 5px 0;
	transition: all 0.3s ease;
}

.site-map-category ul li a::before {
	content: '\f054';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	margin-right: 10px;
	font-size: 0.7rem;
	color: #6b4423;
	transition: all 0.3s ease;
}

.site-map-category ul li a:hover {
	color: #6b4423;
	padding-left: 10px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 4px;
	margin-left: -5px;
	padding-right: 15px;
}

.site-map-category ul li a:hover::before {
	color: #5a4a3a;
	transform: translateX(3px);
}

.site-map-category:nth-child(4) {
	grid-column: 1 / -1;
}

.site-map-category:nth-child(4) ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 15px;
	column-gap: 30px;
}

/* ===== ABOUT SECTION ===== */
.about-site {
	background: white;
	padding: 60px 40px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(107, 68, 35, 0.1);
}

.about-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-text h2 {
	font-size: 2rem;
	color: #6b4423;
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 20px;
	line-height: 1.6;
}

.contact-info {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 8px;
	border-left: 4px solid #6b4423;
}

.about-stats {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.stat-box {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.stat-box:hover {
	background: rgba(107, 68, 35, 0.1);
	transform: translateX(5px);
}

.stat-box i {
	font-size: 1.5rem;
	color: #6b4423;
	width: 30px;
}

.stat-box .number {
	font-size: 1.8rem;
	font-weight: 700;
	color: #6b4423;
}

.stat-box .label {
	font-size: 0.9rem;
	color: #666;
}

mark {
	background: linear-gradient(135deg, #ffc107, #ffb300);
	color: #333;
	padding: 2px 4px;
	border-radius: 3px;
	font-weight: 600;
}

/* ===== NORMS TABLE STYLES ===== */
.norms-table {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(107, 68, 35, 0.1);
	margin: 20px 0;
}

.norm-row {
	display: grid;
	grid-template-columns: 180px 1fr;
	border-bottom: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.norm-row:last-child {
	border-bottom: none;
}

.norm-row:hover:not(.norm-header) {
	background: rgba(107, 68, 35, 0.02);
}

.norm-header {
	background: linear-gradient(135deg, #6b4423, #5a4a3a);
	color: white;
	font-weight: 600;
}

.norm-code {
	padding: 15px 20px;
	font-weight: 600;
	background: rgba(107, 68, 35, 0.05);
	border-right: 1px solid #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.norm-header .norm-code {
	background: transparent;
	border-right-color: rgba(255, 255, 255, 0.2);
}

.norm-description {
	padding: 15px 20px;
	line-height: 1.5;
}

.new-norm {
	background: rgba(34, 139, 34, 0.02);
	border-left: 4px solid #228b22;
}

.new-norm .norm-code {
	background: rgba(34, 139, 34, 0.1);
	color: #228b22;
	font-weight: 700;
}

/* ===== IMPORTANT NOTE STYLES ===== */
.important-note {
	display: flex;
	gap: 20px;
	background: linear-gradient(135deg, #ff8c00, #ff7f00);
	color: white;
	padding: 25px;
	border-radius: 12px;
	margin: 40px 0;
}

.important-note + .navigation-section {
	margin-top: 20px;
	padding-top: 0;
	border-top: none;
}

.note-icon {
	flex-shrink: 0;
}

.note-icon i {
	font-size: 2rem;
}

.note-content h3 {
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.note-content p {
	margin-bottom: 10px;
	line-height: 1.6;
}

/* ===== NAVIGATION LINKS ===== */
.nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid rgba(107, 68, 35, 0.1);
}

.prev-page,
.next-page {
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(107, 68, 35, 0.05);
	padding: 20px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.prev-page:hover,
.next-page:hover {
	background: rgba(107, 68, 35, 0.1);
}

.prev-page i,
.next-page i {
	font-size: 1.5rem;
	color: #6b4423;
}

.prev-page h4,
.next-page h4 {
	color: #6b4423;
	margin-bottom: 5px;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.prev-page a,
.next-page a {
	color: #6b4423;
	font-weight: 600;
}

/* ===== ORGANISMS STYLES ===== */
.organisms {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.organism {
	padding: 15px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 8px;
	border-left: 3px solid #6b4423;
}

.organism h4 {
	color: #6b4423;
	margin-bottom: 5px;
	font-weight: 600;
}

.organism p {
	font-size: 0.85rem;
	line-height: 1.4;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

.cta-button {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 20px;
	background: linear-gradient(135deg, #6b4423, #5a4a3a);
	color: #f5f2e8;
	border-radius: 50px;
	box-shadow: 0 8px 25px rgba(107, 68, 35, 0.3);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background: linear-gradient(135deg, #5a4a3a, #6b4423);
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(107, 68, 35, 0.4);
}

.cta-button i {
	font-size: 1.2rem;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

.cta-button {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 20px;
	background: linear-gradient(135deg, #6b4423, #5a4a3a);
	color: #f5f2e8;
	border-radius: 50px;
	box-shadow: 0 8px 25px rgba(107, 68, 35, 0.3);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background: linear-gradient(135deg, #5a4a3a, #6b4423);
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(107, 68, 35, 0.4);
}

.cta-button i {
	font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.footer {
	background: linear-gradient(135deg, #5a4a3a, #6b4423);
	color: #f5f2e8;
	padding: 40px 0 20px;
	margin-top: 80px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	align-items: start;
	margin-bottom: 30px;
}

.footer-info {
	text-align: center;
}

.footer-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 15px;
}

.footer-logo img {
	width: 200px;
}

.footer-logo span {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.footer-column h4 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #ede6d3;
}

.footer-column ul li {
	margin-bottom: 8px;
}

.footer-column ul li a {
	color: #d4c4b0;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.footer-column ul li a:hover {
	color: #f5f2e8;
	padding-left: 5px;
}

.footer-bottom {
	border-top: 1px solid rgba(245, 242, 232, 0.2);
	padding-top: 20px;
	text-align: center;
}

.footer-bottom p {
	font-size: 0.9rem;
	color: #d4c4b0;
}

.footer-bottom a {
	color: #ede6d3;
	font-weight: 500;
}

.footer-bottom a:hover {
	color: #f5f2e8;
}

/* ===== HERO SMALL ===== */
.hero-small {
	padding: 140px 0 60px;
}

.hero-content-centered {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.hero-content-centered h1 {
	font-size: 2.8rem;
	font-weight: 700;
	color: #6b4423;
	margin-bottom: 20px;
}

.hero-content-centered p {
	font-size: 1.2rem;
	color: #5a4a3a;
}

/* ===== FORM STYLES ===== */
.form-section {
	padding: 60px 0;
}

.form-intro {
	margin-bottom: 60px;
	text-align: center;
}

.form-intro h2 {
	font-size: 2.2rem;
	color: #6b4423;
	margin-bottom: 40px;
}

.intro-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.intro-item {
	text-align: center;
	padding: 30px 20px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(107, 68, 35, 0.1);
	transition: all 0.3s ease;
}

.intro-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(107, 68, 35, 0.15);
}

.intro-item i {
	font-size: 2.5rem;
	color: #6b4423;
	margin-bottom: 20px;
}

.intro-item h3 {
	font-size: 1.2rem;
	color: #6b4423;
	margin-bottom: 15px;
}

.intro-item p {
	color: #666;
	line-height: 1.5;
}

.form-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 50px;
	align-items: start;
}

.contact-form {
	background: white;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(107, 68, 35, 0.1);
}

.contact-form h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	color: #6b4423;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(107, 68, 35, 0.1);
}

.form-group {
	margin-bottom: 25px;
}

.form-group-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #5a4a3a;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #6b4423;
	background: white;
	box-shadow: 0 0 0 3px rgba(107, 68, 35, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-group small {
	display: block;
	margin-top: 5px;
	color: #666;
	font-size: 0.85rem;
}

/* ===== CHECKBOX STYLES ===== */
.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.checkbox-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	padding: 12px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.checkbox-item:hover {
	background: rgba(107, 68, 35, 0.05);
}

.checkbox-item input[type="checkbox"] {
	display: none;
}

.checkbox-item .checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid #e0e0e0;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
	background: #6b4423;
	border-color: #6b4423;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: white;
	font-size: 12px;
}

.consent {
	padding: 20px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 8px;
	border-left: 4px solid #6b4423;
}

.consent .checkbox-item {
	padding: 8px 0;
}

.form-submit {
	text-align: center;
	margin-top: 30px;
}

.form-submit .btn {
	padding: 15px 30px;
	font-size: 1.1rem;
}

.form-note {
	margin-top: 15px;
	font-size: 0.9rem;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* ===== CONTACT SIDEBAR ===== */
.contact-info-sidebar {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.contact-card {
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(107, 68, 35, 0.1);
	border-left: 4px solid #6b4423;
}

.contact-card h4 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.1rem;
	color: #6b4423;
	margin-bottom: 15px;
}

.contact-card p {
	margin-bottom: 15px;
	line-height: 1.5;
}

.phone-number {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	color: #6b4423;
	text-decoration: none;
	margin-bottom: 5px;
}

.phone-number:hover {
	color: #5a4a3a;
}

.contact-card ul {
	list-style: none;
}

.contact-card ul li {
	padding: 5px 0;
	border-bottom: 1px solid rgba(107, 68, 35, 0.1);
}

.contact-card ul li:last-child {
	border-bottom: none;
}

.contact-card ul li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: #6b4423;
	margin-right: 10px;
}

.content-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	align-items: start;
}

.content-main {
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(107, 68, 35, 0.1);
	overflow: hidden;
}

.content-article {
	padding: 40px;
}

.content-article h2 {
	margin-top: 50px;
	margin-bottom: 20px;
}

.content-article h2:first-of-type {
	margin-top: 30px;
}

.content-intro {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 30px;
	align-items: center;
	margin-bottom: 40px;
	padding: 30px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 12px;
	border-left: 4px solid #6b4423;
}

.intro-icon {
	text-align: center;
}

.img-intro {
	width: 120px;
	height: auto;
}

.intro-text h2 {
	font-size: 1.8rem;
	color: #6b4423;
	margin-bottom: 10px;
}

.intro-text h3 {
	font-size: 1.3rem;
	color: #5a4a3a;
	margin-bottom: 15px;
	font-weight: 500;
}

.legal-framework h2,
.obligations-section h2,
.decree-section h2,
.dtu-section h2,
.prefectoral-section h2 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	color: #6b4423;
	margin: 40px 0 20px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(107, 68, 35, 0.1);
}

.law-section {
	margin-bottom: 30px;
}

.law-section h3 {
	font-size: 1.2rem;
	color: #6b4423;
	margin-bottom: 15px;
}

.law-details {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
	border-left: 3px solid #6b4423;
}

.highlight-box {
	background: linear-gradient(135deg, #6b4423, #5a4a3a);
	color: white;
	padding: 25px;
	border-radius: 12px;
	margin: 30px 0;
}

.highlight-box h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: white;
}

.obligations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.obligation-card {
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease;
	border-top: 3px solid #6b4423;
}

.obligation-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(107, 68, 35, 0.15);
}

.obligation-icon {
	width: 50px;
	height: 50px;
	background: rgba(107, 68, 35, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
}

.obligation-icon i {
	font-size: 1.3rem;
	color: #6b4423;
}

.obligation-card h4 {
	font-size: 1rem;
	color: #6b4423;
	margin-bottom: 10px;
}

.decree-box,
.dtu-box {
	background: #f9f9f9;
	padding: 25px;
	border-radius: 10px;
	border-left: 4px solid #6b4423;
	margin: 20px 0;
}

.decree-box h3,
.dtu-box h3 {
	color: #6b4423;
	margin-bottom: 15px;
}

.decree-details {
	margin-top: 20px;
}

.text-references {
	margin-top: 25px;
}

.text-references h4 {
	color: #6b4423;
	margin-bottom: 15px;
}

.text-references ul {
	list-style: none;
}

.text-references ul li {
	padding: 8px 0 8px 25px;
	position: relative;
	line-height: 1.5;
}

.text-references ul li::before {
	content: '\f054';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #6b4423;
	font-size: 0.8rem;
}

.prefectoral-content {
	margin-top: 20px;
}

.external-link {
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(107, 68, 35, 0.05);
	padding: 20px;
	border-radius: 10px;
	margin-top: 25px;
}

.external-link i {
	font-size: 1.5rem;
	color: #6b4423;
}

.external-link h4 {
	color: #6b4423;
	margin-bottom: 5px;
}

.external-link a {
	color: #6b4423;
	font-weight: 600;
}

.external-link a:hover {
	text-decoration: underline;
}

.navigation-section {
	margin-top: 20px;
	padding-top: 0;
	border-top: none;
}

.next-page {
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(107, 68, 35, 0.05);
	padding: 20px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.next-page:hover {
	background: rgba(107, 68, 35, 0.1);
}

.next-page i {
	font-size: 1.5rem;
	color: #6b4423;
}

.next-page h4 {
	color: #6b4423;
	margin-bottom: 5px;
}

.next-page a {
	color: #6b4423;
	font-weight: 600;
}

/* ===== SIDEBAR STYLES ===== */
.content-sidebar {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.sidebar-card {
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(107, 68, 35, 0.1);
	border-top: 4px solid #6b4423;
}

.sidebar-card h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.1rem;
	color: #6b4423;
	margin-bottom: 20px;
}

.sidebar-card ul {
	list-style: none;
}

.sidebar-card ul li {
	padding: 8px 0;
	border-bottom: 1px solid rgba(107, 68, 35, 0.1);
	position: relative;
	padding-left: 20px;
}

.sidebar-card ul li:last-child {
	border-bottom: none;
}

.sidebar-card ul li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #6b4423;
	font-size: 0.8rem;
}

.timeline {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.timeline-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px 0;
}

.timeline-item .date {
	background: #6b4423;
	color: white;
	padding: 5px 10px;
	border-radius: 20px;
	font-weight: 600;
	min-width: 60px;
	text-align: center;
	font-size: 0.9rem;
}

.timeline-item .event {
	font-size: 0.9rem;
	line-height: 1.4;
}

/* ===== CLASSES OVERVIEW GRID ===== */
.classification-overview {
	margin: 40px 0;
}

.classes-overview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.class-overview-card {
	background: white;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
	transition: all 0.3s ease;
	border-top: 4px solid;
	position: relative;
}

.class-overview-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(107, 68, 35, 0.15);
}

.class-1 { border-top-color: #28a745; }
.class-2 { border-top-color: #17a2b8; }
.class-3 { border-top-color: #ffc107; }
.class-4 { border-top-color: #fd7e14; }
.class-5 { border-top-color: #dc3545; }

.class-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #6b4423;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
	margin: 0 auto 15px;
}

.class-overview-card h3 {
	font-size: 1.1rem;
	color: #6b4423;
	margin-bottom: 10px;
}

.class-overview-card p {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 15px;
}

.class-icon {
	position: absolute;
	top: 15px;
	right: 15px;
	opacity: 0.2;
}

.class-icon i {
	font-size: 1.5rem;
	color: #6b4423;
}

/* ===== DETAILED CLASSES ===== */
.detailed-classes {
	margin: 50px 0;
}

.class-detail {
	background: white;
	border-radius: 12px;
	margin-bottom: 25px;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
	overflow: hidden;
	border-left: 6px solid;
}

.class-detail.class-1 { border-left-color: #28a745; }
.class-detail.class-2 { border-left-color: #17a2b8; }
.class-detail.class-3 { border-left-color: #ffc107; }
.class-detail.class-4 { border-left-color: #fd7e14; }
.class-detail.class-5 { border-left-color: #dc3545; }

.class-header {
	background: rgba(107, 68, 35, 0.05);
	padding: 20px 25px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.class-badge {
	background: #6b4423;
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.9rem;
}

.class-header h3 {
	color: #6b4423;
	margin: 0;
	font-size: 1.3rem;
}

.class-content {
	padding: 25px;
}

.class-description {
	margin-bottom: 25px;
}

.class-description p {
	margin-bottom: 10px;
	line-height: 1.6;
}

.class-subcategories {
	margin: 20px 0;
	padding: 20px;
	background: rgba(255, 193, 7, 0.1);
	border-radius: 8px;
	border-left: 4px solid #ffc107;
}

.subclass {
	margin-bottom: 15px;
}

.subclass:last-child {
	margin-bottom: 0;
}

.subclass h4 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	color: #6b4423;
}

.subclass-badge {
	background: #ffc107;
	color: #333;
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 0.8rem;
	font-weight: 600;
}

.class-examples h4 {
	color: #6b4423;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.class-examples h4::before {
	content: '\f0ae';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 0.9rem;
}

.class-examples ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 8px;
	list-style: none;
}

.class-examples ul li {
	padding: 5px 0;
	position: relative;
	padding-left: 20px;
}
.class-examples ul li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #28a745;
	font-size: 0.8rem;
}

/* =====  LOGO SECTION ===== */
.nf-logo-section {
	background: white;
	border-radius: 12px;
	padding: 30px;
	margin: 40px 0;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
	border: 2px solid #6b4423;
}

.nf-content {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 30px;
	align-items: center;
}

.nf-logo-container {
	text-align: center;
}

.nf-text h3 {
	color: #6b4423;
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.nf-text p {
	margin-bottom: 15px;
	line-height: 1.6;
}

/* ===== SIDEBAR SPECIFIC STYLES ===== */
.protection-levels {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.protection-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 8px;
}

.level {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	font-size: 0.9rem;
}

.level-1 { background: #28a745; }
.level-2 { background: #ffc107; color: #333; }
.level-3 { background: #dc3545; }

.desc {
	font-size: 0.9rem;
	font-weight: 500;
}

.risks-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.risk-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 6px;
}

.risk-item i {
	color: #6b4423;
	width: 20px;
}

.humidity-scale {
	margin-top: 15px;
}

.humidity-bar {
	height: 20px;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	margin-bottom: 10px;
}

.humidity-safe {
	background: #28a745;
	width: 40%;
}

.humidity-risk {
	background: #dc3545;
	width: 60%;
}

.humidity-labels {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	color: #666;
}

/* ===== CONSTRUCTION METHODS STYLES ===== */
.construction-methods {
	margin: 40px 0;
}

.construction-type {
	background: white;
	border-radius: 12px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
	overflow: hidden;
	border-left: 6px solid #6b4423;
}

.construction-header {
	background: rgba(107, 68, 35, 0.05);
	padding: 20px 25px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.construction-icon {
	width: 50px;
	height: 50px;
	background: #6b4423;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.construction-header h3 {
	color: #6b4423;
	margin: 0;
	font-size: 1.4rem;
	flex: 1;
}

.risk-level {
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.risk-high {
	background: #dc3545;
	color: white;
}

.risk-medium {
	background: #ffc107;
	color: #333;
}

.risk-low {
	background: #28a745;
	color: white;
}

.construction-content {
	padding: 25px;
}

.construction-description {
	margin-bottom: 25px;
}

.construction-description p {
	margin-bottom: 15px;
	line-height: 1.6;
}

.construction-description ul {
	margin: 10px 0 15px 20px;
	list-style: disc;
}

.construction-description ul li {
	margin-bottom: 5px;
	line-height: 1.5;
}

.construction-recommendation {
	background: rgba(107, 68, 35, 0.05);
	padding: 20px;
	border-radius: 8px;
	border-left: 4px solid #6b4423;
}

.recommendation-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.recommendation-badge.positive {
	background: #28a745;
	color: white;
}

.recommendation-badge.negative {
	background: #dc3545;
	color: white;
}

.recommendation-badge.excellent {
	background: #6b4423;
	color: white;
}

/* ===== PREVENTIVE METHODS STYLES ===== */
.preventive-methods {
	margin: 50px 0;
}

.methods-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 25px;
	margin-top: 30px;
}

.method-card {
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
	border-top: 4px solid #6b4423;
	transition: all 0.3s ease;
}

.method-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(107, 68, 35, 0.15);
}

.method-icon {
	width: 60px;
	height: 60px;
	background: rgba(107, 68, 35, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.method-icon i {
	font-size: 1.8rem;
	color: #6b4423;
}

.method-card h4 {
	color: #6b4423;
	margin-bottom: 15px;
	font-size: 1.2rem;
}

.method-card p {
	margin-bottom: 15px;
	line-height: 1.6;
}

.method-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.method-card ul li {
	padding: 5px 0 5px 20px;
	position: relative;
	line-height: 1.5;
}

.method-card ul li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #28a745;
	font-size: 0.8rem;
}

/* ===== MODERN SOLUTIONS STYLES ===== */
.modern-solutions {
	margin: 50px 0;
}

.solution-termifilm {
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
	overflow: hidden;
	border-left: 6px solid #17a2b8;
}

.solution-header {
	background: linear-gradient(135deg, #17a2b8, #138496);
	padding: 20px 25px;
	display: flex;
	align-items: center;
	gap: 15px;
	color: white;
}

.solution-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.solution-header h3 {
	color: white;
	margin: 0;
	font-size: 1.4rem;
	flex: 1;
}

.solution-status {
	margin-left: auto;
}

.status-badge {
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.status-badge.innovative {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.solution-content {
	padding: 30px;
}

.solution-description h4 {
	color: #6b4423;
	margin: 25px 0 15px 0;
	font-size: 1.1rem;
}

.solution-description ul {
	margin: 10px 0 20px 20px;
	list-style: disc;
}

.solution-description ul li {
	margin-bottom: 8px;
	line-height: 1.5;
}

/* ===== REGULATIONS STYLES ===== */
.current-regulations {
	margin: 50px 0 30px 0;
}

.regulation-box {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
	border-top: 4px solid #6b4423;
}

.regulation-box h3 {
	color: #6b4423;
	margin-bottom: 25px;
	font-size: 1.3rem;
}

.regulation-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.regulation-item {
	background: rgba(107, 68, 35, 0.05);
	padding: 20px;
	border-radius: 8px;
	border-left: 3px solid #6b4423;
}

.regulation-item h4 {
	color: #6b4423;
	margin-bottom: 10px;
	font-weight: 600;
}

.regulation-item p {
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}

/* ===== SIDEBAR SPECIFIC STYLES ===== */
.humidity-info {
	text-align: center;
}

.humidity-threshold {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 15px;
}

.threshold-value {
	font-size: 2.5rem;
	font-weight: 700;
	color: #dc3545;
	line-height: 1;
}

.threshold-label {
	font-size: 0.9rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.wood-species {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.species-item {
	padding: 15px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 8px;
	border-left: 3px solid #28a745;
}

.species-item h4 {
	color: #6b4423;
	margin-bottom: 8px;
	font-weight: 600;
}

.species-item p {
	font-size: 0.85rem;
	line-height: 1.4;
	margin: 0;
}

.inspection-schedule {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.inspection-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 8px;
}

.frequency {
	background: #6b4423;
	color: white;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 0.8rem;
	font-weight: 600;
	min-width: 90px;
	text-align: center;
}

/* ===== NIMP15 PAGE STYLES ===== */

/* Principles Grid */
.principles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	margin-top: 30px;
}

.principle-card {
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
	border-top: 4px solid #6b4423;
	transition: all 0.3s ease;
	text-align: center;
}

.principle-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(107, 68, 35, 0.15);
}

.principle-icon {
	width: 60px;
	height: 60px;
	background: rgba(107, 68, 35, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.principle-icon i {
	font-size: 1.8rem;
	color: #6b4423;
}

.principle-card h4 {
	color: #6b4423;
	margin-bottom: 15px;
	font-size: 1.2rem;
}

.principle-card p {
	line-height: 1.6;
	margin: 0;
}

/* Treatments Table */
.treatments-section {
	padding-top: 25px;
}
.treatments-table {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(107, 68, 35, 0.1);
	margin: 30px 0;
	overflow-x: auto;
}

.treatments-table table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Montserrat', sans-serif;
}

.treatments-table th,
.treatments-table td {
	padding: 15px 12px;
	text-align: left;
	border-bottom: 1px solid #e0e0e0;
	vertical-align: middle;
}

.treatments-table th {
	background: linear-gradient(135deg, #6b4423, #5a4a3a);
	color: white;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.treatments-table tbody tr:hover {
	background: rgba(107, 68, 35, 0.02);
}

.treatments-table tbody tr:last-child td {
	border-bottom: none;
}

/* Colonnes spécifiques */
.treatment-code-col {
	width: 80px;
	text-align: center;
	font-weight: 700;
	font-size: 1.1rem;
	background: rgba(107, 68, 35, 0.05);
}

.treatment-name-col {
	width: 180px;
	font-weight: 600;
}

.treatment-description-col {
	line-height: 1.5;
	font-size: 0.9rem;
}

.treatment-status-col {
	width: 120px;
	text-align: center;
}

/* Bordures latérales pour différencier les traitements */
.ht-treatment {
	border-left: 4px solid #28a745;
}

.mb-treatment {
	border-left: 4px solid #dc3545;
}

/* Status badges */
.status-badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.status-badge.recommended {
	background: #28a745;
	color: white;
}

.status-badge.restricted {
	background: #dc3545;
	color: white;
}

/* HT and MB specific styles */
.ht-treatment {
	border-left: 4px solid #28a745;
}

.mb-treatment {
	border-left: 4px solid #dc3545;
}

/* Marking Section */
.marking-example {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 40px;
	align-items: center;
	margin: 30px 0;
	padding: 30px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
}

.marking-visual {
	text-align: center;
}

.nimp-mark {
	width:200px;
	display: inline-block;
	border: 3px solid #333;
	border-radius: 8px;
	padding: 20px;
	background: white;
	font-family: 'Courier New', monospace;
	font-weight: bold;
}

.ippc-logo {
	font-size: 2rem;
	margin-bottom: 10px;
}

.ippc-logo img {
	height: 120px;
	object-fit: contain;
	margin-bottom: 10px;
}
.mark-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	font-size: 1.2rem;
}

.country-code,
.company-number,
.treatment-type {
	padding: 5px;
	background: #f0f0f0;
	border: 1px solid #ccc;
}

.marking-explanation h4 {
	color: #6b4423;
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.marking-explanation ul {
	margin: 15px 0 20px 20px;
	list-style: disc;
}

.marking-explanation ul li {
	margin-bottom: 8px;
	line-height: 1.5;
}

/* Exceptions Grid */
.exceptions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	margin-top: 30px;
}

.exception-card {
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
	border-left: 4px solid #28a745;
	transition: all 0.3s ease;
}

.exception-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(107, 68, 35, 0.15);
}

.exception-icon {
	width: 50px;
	height: 50px;
	background: rgba(40, 167, 69, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.exception-icon i {
	font-size: 1.5rem;
	color: #28a745;
}

.exception-card h4 {
	color: #6b4423;
	margin-bottom: 15px;
	font-size: 1.2rem;
}

/* Non-compliance Warning */
.compliance-section {
	padding-top: 50px;
}
.non-compliance-warning {
	display: flex;
	gap: 25px;
	background: linear-gradient(135deg, #dc3545, #c82333);
	color: white;
	padding: 30px;
	border-radius: 12px;
	margin: 30px 0;
}

.warning-icon {
	flex-shrink: 0;
}

.warning-icon i {
	font-size: 3rem;
}

.warning-content h4 {
	margin-bottom: 20px;
	font-size: 1.4rem;
	color: white;
}

.warning-content ul {
	margin: 0 0 0 20px;
	list-style: disc;
}

.warning-content ul li {
	margin-bottom: 10px;
	line-height: 1.6;
}

/* Organisms Grid */
.organisms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	margin-top: 30px;
}

.organism-card {
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
	border-top: 4px solid #6b4423;
	transition: all 0.3s ease;
}

.organism-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(107, 68, 35, 0.15);
}

.organism-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.organism-header i {
	font-size: 1.5rem;
	color: #6b4423;
}

.organism-header h4 {
	color: #6b4423;
	margin: 0;
	font-size: 1.3rem;
}

.organism-card p {
	margin-bottom: 10px;
	line-height: 1.6;
}

/* Sidebar specific styles for NIMP15 */
.ht-info {
	text-align: center;
}

.temperature-display,
.time-display {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 15px;
	padding: 15px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 8px;
}

.temp-value,
.time-value {
	font-size: 2rem;
	font-weight: 700;
	color: #dc3545;
	line-height: 1;
}

.temp-label,
.time-label {
	font-size: 0.9rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.packaging-types {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.packaging-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 8px;
}

.packaging-item i {
	color: #6b4423;
	width: 20px;
	font-size: 1.1rem;
}

.global-stats {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.global-stats .stat-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 8px;
}

.global-stats .stat-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: #6b4423;
	min-width: 60px;
}

.global-stats .stat-label {
	font-size: 0.9rem;
	color: #666;
}

/* ===== FAQ SPECIFIC STYLES ===== */
.faq-categories {
	margin: 40px 0;
}

.faq-category {
	background: white;
	border-radius: 12px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
	overflow: hidden;
	border-left: 6px solid #6b4423;
}

.faq-categories > h2 {
	margin-bottom: 30px;
}

.category-header {
	background: rgba(107, 68, 35, 0.05);
	padding: 20px 25px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.category-icon {
	width: 50px;
	height: 50px;
	background: #6b4423;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.category-header h3 {
	color: #6b4423;
	margin: 0;
	font-size: 1.4rem;
}

.faq-item {
	border-bottom: 1px solid rgba(107, 68, 35, 0.1);
	transition: all 0.3s ease;
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-item:hover {
	background: rgba(107, 68, 35, 0.02);
}

.faq-question {
	padding: 20px 25px 10px;
	cursor: pointer;
}

.faq-question h4 {
	color: #6b4423;
	margin: 0;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.faq-question h4 i {
	color: #5a4a3a;
	font-size: 1rem;
}

.faq-answer {
	padding: 0 25px 20px;
}

.faq-answer p {
	margin-bottom: 15px;
	line-height: 1.6;
}

.faq-answer ul {
	margin: 10px 0 15px 20px;
	list-style: disc;
}

.faq-answer ul li {
	margin-bottom: 8px;
	line-height: 1.5;
}

.comparison-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 20px 0;
}

.comparison-item {
	background: rgba(107, 68, 35, 0.05);
	padding: 20px;
	border-radius: 8px;
	border-left: 3px solid #6b4423;
}

.comparison-item h5 {
	color: #6b4423;
	margin-bottom: 15px;
	font-size: 1.1rem;
}

.comparison-item ul {
	margin: 0 0 0 15px;
	list-style: disc;
}

.help-section {
	margin: 50px 0 30px 0;
}

.help-content {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
	border-top: 4px solid #6b4423;
	text-align: center;
}

.help-content p {
	margin-bottom: 25px;
	line-height: 1.6;
	font-size: 1.1rem;
}

.help-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.alert-signs {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.alert-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	background: rgba(220, 53, 69, 0.05);
	border-radius: 6px;
	border-left: 3px solid #dc3545;
}

.alert-item i {
	color: #dc3545;
	width: 20px;
}

/* ===== WOOD SPECIES SPECIFIC STYLES ===== */
.species-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 25px;
	margin-top: 30px;
}

.species-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
	overflow: hidden;
	border-left: 4px solid #6b4423;
	transition: all 0.3s ease;
}

.species-card.highlighted {
	border-left-color: #28a745;
	box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}

.species-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(107, 68, 35, 0.15);
}

.species-header {
	background: rgba(107, 68, 35, 0.05);
	padding: 20px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.species-header h3 {
	color: #6b4423;
	margin: 0;
	font-size: 1.3rem;
	font-weight: 600;
}

.origin {
	background: rgba(107, 68, 35, 0.1);
	color: #6b4423;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 0.8rem;
	font-weight: 500;
}

.species-content {
	padding: 25px;
}

.species-content h4 {
	color: #6b4423;
	margin: 0 0 10px 0;
	font-size: 1rem;
	font-weight: 600;
}

.species-content .properties,
.species-content .durability,
.species-content .uses {
	margin-bottom: 20px;
}

.species-content .uses {
	margin-bottom: 0;
}

.species-content ul {
	margin: 10px 0 0 15px;
	list-style: disc;
}

.species-content ul li {
	margin-bottom: 5px;
	line-height: 1.4;
}

.species-content p {
	line-height: 1.5;
	margin: 10px 0 0 0;
}

.other-species-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.other-species-item {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(107, 68, 35, 0.1);
	border-left: 3px solid #6b4423;
	transition: all 0.3s ease;
}

.other-species-item.highlighted-other {
	border-left-color: #28a745;
	background: rgba(40, 167, 69, 0.02);
}

.other-species-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(107, 68, 35, 0.15);
}

.other-species-item h4 {
	color: #6b4423;
	margin: 0 0 10px 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.other-species-item p {
	line-height: 1.5;
	margin: 0;
	font-size: 0.9rem;
}

.source-box {
	background: rgba(107, 68, 35, 0.05);
	padding: 25px;
	border-radius: 12px;
	border-left: 4px solid #6b4423;
	margin: 40px 0 30px 0;
}

.source-box h3 {
	color: #6b4423;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.durability-levels {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.durability-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 8px;
	border-radius: 6px;
}

.durability-item.excellent {
	background: rgba(40, 167, 69, 0.1);
	border-left: 3px solid #28a745;
}

.durability-item.good {
	background: rgba(255, 193, 7, 0.1);
	border-left: 3px solid #ffc107;
}

.durability-item.average {
	background: rgba(255, 152, 0, 0.1);
	border-left: 3px solid #ff9800;
}

.durability-item.poor {
	background: rgba(220, 53, 69, 0.1);
	border-left: 3px solid #dc3545;
}

.durability-item .level {
	font-weight: 600;
	font-size: 0.85rem;
	min-width: 70px;
	color: #333;
}

.pest-sensitivity {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.pest-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px;
	background: rgba(220, 53, 69, 0.05);
	border-radius: 6px;
	border-left: 3px solid #dc3545;
}

.pest-item i {
	color: #dc3545;
	margin-top: 2px;
	flex-shrink: 0;
}

.pest-item strong {
	color: #dc3545;
}

.usage-categories {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.usage-item {
	padding: 12px;
	background: rgba(107, 68, 35, 0.05);
	border-radius: 6px;
	border-left: 3px solid #6b4423;
}

.usage-item h4 {
	color: #6b4423;
	margin: 0 0 8px 0;
	font-size: 0.95rem;
	font-weight: 600;
}

.usage-item p {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.4;
}

.import-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 15px;
}

.import-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
}

.import-item i {
	color: #28a745;
	font-size: 0.8rem;
}

/* ===== TEMPERATURE RANGES (minimal addition) ===== */
.temperature-ranges {
	margin-top: 20px;
}

.temp-range {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px;
	background: rgba(220, 53, 69, 0.05);
	border-radius: 8px;
	border-left: 3px solid #dc3545;
}

.temp-value {
	font-size: 1.3rem;
	font-weight: 700;
	color: #dc3545;
	line-height: 1;
}

.temp-label {
	font-size: 0.8rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.species-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(107, 68, 35, 0.1);
	justify-content: center;
}

.gallery-item {
	text-align: center;
	flex: 0 0 auto;
	min-width: 120px;
	max-width: 150px;
}

.species-gallery:has(.gallery-item:nth-child(1):last-child) .gallery-item {
	max-width: 200px;
}

.species-gallery:has(.gallery-item:nth-child(2):last-child) .gallery-item {
	max-width: 180px;
}

.species-gallery.single-image {
	justify-content: center;
}

.species-gallery.single-image .gallery-item {
	max-width: none !important;
	width: 400px !important;
}

.species-gallery.single-image .insect-photo {
	width: 400px;
	height: 300px;
}

/* Fallback pour navigateurs ne supportant pas :has() */
.species-gallery .gallery-item:only-child {
	max-width: 300px;
}

.species-gallery .gallery-item:first-child:nth-last-child(2),
.species-gallery .gallery-item:last-child:nth-child(2) {
	max-width: 180px;
}

.insect-photo {
	width: 100%;
	height: 100px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(107, 68, 35, 0.2);
	transition: all 0.3s ease;
	cursor: pointer;
}

.insect-photo:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(107, 68, 35, 0.3);
}

.photo-caption {
	display: block;
	margin-top: 8px;
	font-size: 0.8rem;
	color: #666;
	font-weight: 500;
}

/* ===== PHOTO MODAL ===== */
.photo-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.photo-modal.show {
	opacity: 1;
}

.photo-modal-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	text-align: center;
}

.photo-modal-img {
	max-width: 100%;
	max-height: 80vh;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.photo-modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	font-size: 30px;
	color: white;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.5);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.photo-modal-close:hover {
	background: rgba(0, 0, 0, 0.8);
}

.photo-modal-caption {
	color: white;
	margin-top: 15px;
	font-size: 1.1rem;
	font-weight: 500;
}

/* Amélioration des liens */
a[href^="mailto:"], a[href^="tel:"] {
	transition: all 0.3s ease;
}

a[href^="mailto:"]:hover, a[href^="tel:"]:hover {
	text-decoration: underline !important;
}

/* ===== RESPONSIVE FORMS ===== */
@media (max-width: 1024px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.main-nav {
		position: fixed;
		top: 100%;
		left: 0;
		right: 0;
		background: #f5f2e8;
		box-shadow: 0 4px 20px rgba(107, 68, 35, 0.1);
		padding: 20px;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}

	.main-nav.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-menu {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.nav-menu > li {
		width: 100%;
		border-bottom: 1px solid rgba(107, 68, 35, 0.1);
	}

	.nav-menu > li:last-child {
		border-bottom: none;
	}

	.nav-menu > li > a {
		width: 100%;
		padding: 15px 20px;
		justify-content: space-between;
		font-size: 1rem;
		border-radius: 0;
	}

	.dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: rgba(107, 68, 35, 0.05);
		border-radius: 0;
		margin-top: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
	}

	.dropdown.active .dropdown-menu {
		max-height: 500px;
	}

	.dropdown-menu li a {
		padding: 12px 40px;
		font-size: 0.9rem;
	}

	.treatment-row {
		grid-template-columns: 70px 140px 1fr 100px;
		min-height: 70px;
	}
	
	.treatment-code,
	.treatment-name,
	.treatment-description,
	.treatment-status {
		padding: 12px 8px;
		font-size: 0.85rem;
	}
	
	.treatment-code {
		font-size: 0.9rem;
	}
}

@media (max-width: 768px) {
	.form-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-form {
		padding: 25px;
	}

	.form-group-row {
		grid-template-columns: 1fr;
		gap: 15px;
	}

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

	.intro-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.intro-item {
		padding: 20px 15px;
	}

	.contact-info-sidebar {
		order: -1;
	}

	.about-site {
		padding: 40px 25px;
	}
	
	.site-map-category:nth-child(4) {
		grid-column: 1;
	}
	
	.site-map-category:nth-child(4) ul {
		grid-template-columns: 1fr;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.main-nav {
		position: fixed;
		top: 100%;
		left: 0;
		right: 0;
		background: #f5f2e8;
		box-shadow: 0 4px 20px rgba(107, 68, 35, 0.1);
		padding: 20px;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}

	.main-nav.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-menu {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.nav-menu > li {
		width: 100%;
		border-bottom: 1px solid rgba(107, 68, 35, 0.1);
	}

	.nav-menu > li:last-child {
		border-bottom: none;
	}

	.nav-menu > li > a {
		width: 100%;
		padding: 15px 20px;
		justify-content: space-between;
		font-size: 1rem;
		border-radius: 0;
	}

	.dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: rgba(107, 68, 35, 0.05);
		border-radius: 0;
		margin-top: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
	}

	.dropdown.active .dropdown-menu {
		max-height: 500px;
	}

	.dropdown-menu li a {
		padding: 12px 40px;
		font-size: 0.9rem;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 2.2rem;
	}

	.hero-images {
		grid-template-columns: 1fr;
	}

	.image-card:nth-child(1) {
		grid-column: 1;
	}

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

	.about-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.floating-cta {
		bottom: 20px;
		right: 20px;
	}

	.content-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.content-article {
		padding: 25px;
	}

	.content-intro {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 20px;
	}

	.marianne-logo {
		width: 100px;
	}

	.obligations-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.content-sidebar {
		order: -1;
	}

	.sidebar-card {
		padding: 20px;
	}
	
	.norm-row {
		grid-template-columns: 1fr;
	}
	
	.norm-code {
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
		justify-content: flex-start;
		background: rgba(107, 68, 35, 0.1);
		font-size: 0.9rem;
	}
	
	.norm-header .norm-code {
		background: rgba(255, 255, 255, 0.2);
	}
	
	.important-note {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	
	.nav-links {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.prev-page,
	.next-page {
		justify-content: center;
		text-align: center;
	}

	.classes-overview-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.class-overview-card {
		padding: 15px;
	}
	
	.class-content {
		padding: 20px;
	}
	
	.class-examples ul {
		grid-template-columns: 1fr;
	}
	
	.nf-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 20px;
	}
	
	.class-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.construction-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.construction-header h3 {
		font-size: 1.2rem;
	}

	.construction-content {
		padding: 20px;
	}

	.methods-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.method-card {
		padding: 20px;
	}

	.solution-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.solution-content {
		padding: 20px;
	}

	.regulation-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.humidity-threshold {
		margin-bottom: 10px;
	}

	.threshold-value {
		font-size: 2rem;
	}

	.inspection-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.frequency {
		min-width: auto;
		align-self: flex-start;
	}

	.principles-grid,
	.exceptions-grid,
	.organisms-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.treatments-table {
		font-size: 0.85rem;
	}
	
	.treatments-table th,
	.treatments-table td {
		padding: 12px 8px;
	}
	
	.treatment-code-col {
		width: 60px;
		font-size: 1rem;
	}
	
	.treatment-name-col {
		width: 140px;
	}
	
	.treatment-status-col {
		width: 100px;
	}
	
	.status-badge {
		padding: 4px 8px;
		font-size: 0.7rem;
	}
	
	.marking-example {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 25px;
	}
	
	.non-compliance-warning {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	
	.warning-icon i {
		font-size: 2.5rem;
	}

	.category-header {
		padding: 15px 20px;
	}
	
	.faq-question {
		padding: 15px 20px 8px;
	}
	
	.faq-answer {
		padding: 0 20px 15px;
	}
	
	.comparison-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.help-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.help-content {
		padding: 20px;
	}
	.species-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.species-card {
		margin-bottom: 0;
	}
	
	.species-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		padding: 15px 20px;
	}
	
	.species-content {
		padding: 20px;
	}
	
	.other-species-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.other-species-item {
		padding: 15px;
	}

	.species-gallery.single-image .gallery-item {
		max-width: 220px;
	}
	
	.species-gallery.single-image .insect-photo {
		height: 130px;
	}
	
	.photo-modal-content {
		max-width: 95%;
	}
	
	.photo-modal-img {
		max-height: 70vh;
	}
	
	.photo-modal-close {
		top: -35px;
		font-size: 25px;
		width: 35px;
		height: 35px;
	}

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

	section:nth-child(3) > div > div > div {
		padding: 2rem 1.5rem !important;
	}

	section:nth-child(3) div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
		grid-template-columns: 1fr !important;
	}

	section:nth-child(3) h2 {
		font-size: 1.5rem !important;
	}

	section:nth-child(3) h3 {
		font-size: 1.2rem !important;
	}
}

@media (max-width: 480px) {
	.about-site {
		padding: 30px 20px;
	}
	
	.form-section {
		padding: 40px 0;
	}

	.contact-form {
		padding: 20px;
	}

	.contact-card {
		padding: 20px;
	}

	.phone-number {
		font-size: 1.3rem;
	}
	
	.container {
		padding: 0 15px;
	}

	.logo-text h1 {
		font-size: 1.4rem;
	}

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

	.hero-text h1 {
		font-size: 1.8rem;
	}

	.hero-stats {
		gap: 20px;
	}

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

	.site-map h2 {
		font-size: 2rem;
	}

	.site-map-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.site-map-category {
		padding: 20px;
	}

	.btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
	.content-article {
		padding: 20px;
	}

	.intro-text h2 {
		font-size: 1.5rem;
	}

	.legal-framework h2,
	.obligations-section h2,
	.decree-section h2,
	.dtu-section h2,
	.prefectoral-section h2 {
		font-size: 1.3rem;
	}
	
	.norm-code,
	.norm-description {
		padding: 12px 15px;
	}
	
	.important-note {
		padding: 20px;
	}
	
	.organisms {
		gap: 10px;
	}
	
	.organism {
		padding: 12px;
	}

	.classes-overview-grid {
		grid-template-columns: 1fr;
	}
	
	.class-header {
		padding: 15px 20px;
	}
	
	.class-content {
		padding: 15px;
	}
	
	.nf-logo-section {
		padding: 20px;
	}
	
	.protection-item,
	.risk-item {
		padding: 6px;
		gap: 8px;
	}
	
	.level {
		width: 30px;
		height: 30px;
		font-size: 0.8rem;
	}

	.construction-header {
		padding: 15px 20px;
	}

	.construction-content {
		padding: 15px;
	}

	.method-card {
		padding: 15px;
	}

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

	.method-icon i {
		font-size: 1.5rem;
	}

	.solution-header {
		padding: 15px 20px;
	}

	.solution-content {
		padding: 15px;
	}

	.regulation-box {
		padding: 20px;
	}

	.regulation-item {
		padding: 15px;
	}

	.species-item {
		padding: 12px;
	}

	.principle-card,
	.exception-card,
	.organism-card {
		padding: 20px;
	}
	
	.nimp-mark {
		padding: 15px;
	}
	
	.mark-content {
		font-size: 1rem;
	}
	
	.non-compliance-warning {
		padding: 25px;
	}
	
	.warning-content h4 {
		font-size: 1.2rem;
	}

	.treatments-table {
		font-size: 0.8rem;
	}
	
	.treatments-table th,
	.treatments-table td {
		padding: 10px 6px;
	}
	
	.treatment-code-col {
		width: 50px;
		font-size: 0.9rem;
	}
	
	.treatment-name-col {
		width: 120px;
		font-size: 0.8rem;
	}
	
	.treatment-description-col {
		font-size: 0.75rem;
		line-height: 1.3;
	}
	
	.treatment-status-col {
		width: 80px;
	}

	.species-gallery {
		gap: 10px;
	}
	
	.gallery-item {
		min-width: 100px;
		max-width: 130px;
	}
	
	.species-gallery .gallery-item:only-child {
		max-width: 150px;
	}

	.species-gallery.single-image .gallery-item {
		max-width: 200px;
	}
	
	.species-gallery.single-image .insect-photo {
		height: 120px;
	}
		
	.insect-photo {
		height: 80px;
	}
}