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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #f9fafb;
}

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

/* Variables CSS */
:root {
    --primary-color: #A0D7E6;
    --accent-color: #E94E34;
    --secondary-color: #F0F0F0;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo a {
    text-decoration: none;
	
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2px;
    background: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: var(--text-gray);
    margin: 2px 0;
    transition: 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-link-mobile {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
    color: var(--primary-color);
    background: rgba(160, 215, 230, 0.1);
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #d63e2a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(160, 215, 230, 0.1) 0%, rgba(240, 240, 240, 0.2) 100%);
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-primary {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 48rem;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card.border-accent {
    border-left-color: var(--accent-color);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-icon.accent {
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Zones d'intervention */
.zones-intervention {
    padding: 5rem 0;
    background: rgba(240, 240, 240, 0.3);
}

.zones-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.zone-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.zone-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
}

.zone-icon.accent {
    color: var(--accent-color);
}

.zone-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.zone-item p {
    color: var(--text-gray);
    line-height: 1.6;
	margin-bottom: 1.5rem;
}

.pourquoi-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.pourquoi-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.avantages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.avantage {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-check-small {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-color);
}

.avantage span {
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--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 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
	color: #e94e34;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

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

.footer-section ul li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: #9ca3af;
}

/* Icônes SVG */
.icon-shield,
.icon-check,
.icon-book,
.icon-globe {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-mobile.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .zones-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    .services-preview,
    .zones-intervention {
        padding: 3rem 0;
    }
}


/* Styles pour les pages intérieures */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(160, 215, 230, 0.1) 0%, rgba(240, 240, 240, 0.2) 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Cards */
.content-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.content-card h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.text-content p:last-child {
    margin-bottom: 0;
}

/* Sections */
.presentation {
    padding: 4rem 0;
    background: var(--white);
}

.expertise {
    padding: 4rem 0;
    background: var(--secondary-color);
}

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

.expertise-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.expertise-card.border-accent {
    border-left-color: var(--accent-color);
}

.expertise-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expertise-icon.accent {
    color: var(--accent-color);
}

.expertise-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.expertise-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Valeurs */
.valeurs {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(160, 215, 230, 0.05) 0%, rgba(233, 78, 52, 0.05) 100%);
}

.valeurs-content {
    text-align: center;
}

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

.valeur-item {
    text-align: center;
}

.valeur-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.valeur-icon.primary {
    background: var(--primary-color);
}

.valeur-icon.accent {
    background: var(--accent-color);
}

.valeur-icon svg {
    width: 2rem;
    height: 2rem;
}

.valeur-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.valeur-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Services Page */
.service-detail {
    background: var(--white);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 4rem;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-detail .service-icon {
    width: 3rem;
    height: 3rem;
}

.service-detail p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.service-features li svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.125rem;
}

.service-sidebar {
    background: linear-gradient(135deg, rgba(160, 215, 230, 0.1) 0%, rgba(160, 215, 230, 0.05) 100%);
    padding: 2rem;
    border-radius: 1rem;
}

.service-sidebar h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.product-badge {
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

/* Ressources Page */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.resource-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.resource-card-header {
    padding: 1.5rem;
}

.resource-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.resource-badge.accent {
    background: var(--accent-color);
}

.resource-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.resource-card p {
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.resource-card-footer {
    padding: 0 1.5rem 1.5rem;
}

.resource-meta {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Guides Section */
.guides-section {
    background: linear-gradient(135deg, rgba(160, 215, 230, 0.05) 0%, rgba(240, 240, 240, 0.2) 100%);
    padding: 4rem 0;
}

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

.guide-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.guide-header svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
}

.guide-header.accent svg {
    color: var(--accent-color);
}

.guide-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.guide-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-meta {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, rgba(160, 215, 230, 0.1) 0%, rgba(233, 78, 52, 0.1) 100%);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.cta-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.125rem;
}

.contact-item-content p {
    margin: 0;
    color: var(--text-gray);
}

.contact-item-content p:first-child {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.schedule-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.schedule-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-day {
    color: var(--text-gray);
}

.schedule-time {
    font-weight: 500;
    color: var(--text-dark);
}

.schedule-time.closed {
    color: var(--text-gray);
}

.schedule-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
    font-style: italic;
}

/* Newsletter */
.newsletter-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    margin: 4rem 0;
}

.newsletter-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 24rem;
    margin: 0 auto 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

.newsletter-note {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Responsive pour pages intérieures */
@media (max-width: 768px) {
	

	.nav-links {
		flex-direction: column;
		gap: 1rem;
	}

	.content-wrapper {
		padding: 2rem 1rem;
	}

	h1 {
		font-size: 2rem;
	}

	.footer-links {
		flex-direction: column;
		gap: 1rem;
	}

	.rights-grid {
		grid-template-columns: 1fr;
	}

	.data-table {
		font-size: 0.9rem;
	}
        

    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .expertise-grid,
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .valeurs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .service-detail {
        padding: 2rem;
    }
    
    .contact-form,
    .contact-details,
    .schedule-card {
        padding: 1.5rem;
    }
}


/* Boutons accent */
.btn-accent {
    background: var(--accent-color);
    color: var(--white);
}

.btn-accent:hover {
    background: #d63e2a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer links (remplace les styles inline) */


.footer a,
.footer-link{
	color: var(--primary-color);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.footer a:hover,
.footer-link:hover{
	color: #ffffff;
	text-decoration: underline;
}

.footer-section p {
	color: #bdc3c7;
	margin-bottom: 0.5rem;
}

.footer-bottom {
	border-top: 1px solid #34495e;
	padding-top: 1rem;
	text-align: center;
	color: #95a5a6;
}

.footer-bottom p{
	text-align: center;
}

.footer-legal{
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.contact-info {
	background: #f0f0f0;
	padding: 1.5rem;
	border-radius: 8px;
	margin: 1.5rem 0;
}

.contact-info h4 {
	color: #333;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.contact-info p {
	margin-bottom: 0.5rem;
}

.content-wrapper {
	background: white;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	padding: 3rem;
	margin-bottom: 2rem;
}

.info-box {
	background: linear-gradient(135deg, #a0d7e6 0%, #e0f4f8 100%);
	border-left: 4px solid #e94e34;
	padding: 1.5rem;
	margin: 2rem 0;
	border-radius: 5px;
}

.info-box strong {
	color: #e94e34;
}

.warning-box {
	background: linear-gradient(135deg, #ffe6e6 0%, #fff0f0 100%);
	border-left: 4px solid #e94e34;
	padding: 1.5rem;
	margin: 2rem 0;
	border-radius: 5px;
}

.warning-box strong {
	color: #e94e34;
}

.highlight{
  background: #A0D7E6;
  color: var(--text-dark);
  padding: .15rem .45rem;
  border: 1px solid var(--border-color);
  border-radius: 999px;
}


.presentation p {
	text-align: justify;
}

h2 {
	color: #333;
	font-size: 1.8rem;
	margin: 2.5rem 0 1rem 0;
	font-weight: 600;
	border-bottom: 2px solid #a0d7e6;
	padding-bottom: 0.5rem;
}

.content-wrapper h3 {
	color: #e94e34;
	font-size: 1.3rem;
	margin: 2rem 0 1rem 0;
	font-weight: 600;
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.data-table th {
	background: #a0d7e6;
	color: white;
	padding: 1rem;
	text-align: left;
	font-weight: 600;
}

.data-table td {
	padding: 1rem;
	border-bottom: 1px solid #eee;
}

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

.data-table tr:nth-child(even) {
	background: #f8f9fa;
}

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

.right-card {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
	border-left: 4px solid #a0d7e6;
}

.right-card h4 {
	color: #e94e34;
	margin-bottom: 0.8rem;
}