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

:root {
    --primary-color: #0066cc;
    --secondary-color: #4a90e2;
    --accent-color: #ff6b35;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --border-color: #dee2e6;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f5f7fa;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem 0;
    box-shadow: var(--shadow);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Navigation */
.main-nav {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: var(--primary-color);
    color: white;
}

/* Main Content */
main {
    padding: 2rem 0;
    min-height: calc(100vh - 400px);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.page-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.hero h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
}

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

.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.card.highlight {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff, #f0f7ff);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.card p {
    color: #666;
    margin-bottom: 1rem;
}

.preview-list {
    list-style: none;
    margin: 1rem 0;
}

.preview-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.preview-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: 2px solid var(--border-color);
}

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

.btn-detail {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Info Section */
.info-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.info-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.info-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Search */
.search-quick {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.search-quick input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.search-quick input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

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

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Aide Cards */
.aides-container {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.aide-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.aide-card:hover {
    box-shadow: var(--shadow-hover);
}

.aide-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.aide-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.aide-montant {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.badge-gratuit {
    background: var(--success-color);
}

.badge-financement {
    background: var(--warning-color);
    color: var(--dark-color);
}

.badge-variable {
    background: var(--secondary-color);
}

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

.aide-body {
    padding: 1.5rem;
}

.aide-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.aide-criteres,
.aide-contact {
    margin: 1.5rem 0;
}

.aide-criteres h4,
.aide-contact h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.aide-criteres ul,
.aide-contact ul {
    list-style: none;
    padding-left: 0;
}

.aide-criteres li,
.aide-contact li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.aide-criteres li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.aide-contact p {
    margin: 0.5rem 0;
}

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

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

/* Transport Sections */
.transport-section {
    margin-bottom: 3rem;
}

.section-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.section-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.transport-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.transport-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.transport-header h4 {
    color: var(--primary-color);
    margin: 0;
}

.transport-body {
    padding: 1.5rem;
}

.avantages h5,
.services-box h5 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem 0;
}

.avantages ul,
.services-box ul {
    list-style: none;
    padding-left: 0;
}

.avantages li,
.services-box li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.avantages li:before,
.services-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Lignes Grid */
.lignes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

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

.ligne-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.ligne-numero {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.ligne-card h4 {
    margin: 0;
    color: var(--dark-color);
}

/* Aide Transport Grid */
.aide-transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.aide-transport-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.aide-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.aide-transport-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.aide-transport-card ul {
    list-style: none;
    padding-left: 0;
}

.aide-transport-card li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.aide-transport-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Badges */
.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-regional {
    background: var(--primary-color);
    color: white;
}

.badge-projet {
    background: var(--warning-color);
    color: var(--dark-color);
}

.badge-futur {
    background: var(--secondary-color);
    color: white;
}

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

.badge-service {
    background: var(--success-color);
    color: white;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Highlight sections */
.highlight-section {
    background: linear-gradient(135deg, #ffffff, #f0f7ff);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.transport-info {
    background: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1.5rem;
}

.transport-info h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Tarif Box */
.tarif-box {
    background: linear-gradient(135deg, var(--success-color), #20c997);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1rem 0;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

/* Highlight Info */
.highlight-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
}

.highlight-info strong {
    font-size: 1.2rem;
}

/* Location sections */
.location-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

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

.vehicule-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.vehicule-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.vehicule-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vehicule-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.disponibilite {
    color: var(--success-color);
    font-weight: 600;
}

.conditions-box,
.prescription-box {
    background: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.conditions-box h4,
.prescription-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.conditions-box ul,
.prescription-box ul {
    list-style: none;
    padding-left: 0;
}

.conditions-box li,
.prescription-box li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.conditions-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.prescription-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Info pratiques */
.info-pratiques {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.info-pratiques h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.info-pratique-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
}

.info-pratique-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-pratique-card ol,
.info-pratique-card ul {
    padding-left: 1.5rem;
}

.info-pratique-card li {
    margin: 0.5rem 0;
}

/* Types de véhicules */
.vehicules-types {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.vehicules-types h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.type-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.type-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.type-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.type-card h4 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.type-card p {
    color: #666;
    text-align: center;
    margin-bottom: 1rem;
}

.avantages-list {
    list-style: none;
    padding-left: 0;
}

.avantages-list li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.avantages-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Financement */
.financement-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.financement-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.financement-card {
    background: linear-gradient(135deg, #f0f7ff, #e0efff);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.financement-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.financement-card ul {
    list-style: none;
    padding-left: 0;
}

.financement-card li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.financement-card li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Contact sections */
.contact-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

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

.contact-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

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

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

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

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

.contact-card-large {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 1.5rem;
}

/* Mission Locale */
.mission-locale-card {
    background: linear-gradient(135deg, #ffffff, #f0f7ff);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.ml-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ml-header h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.ml-services,
.office-services,
.face-services,
.petr-services {
    margin: 1.5rem 0;
}

.ml-services h5,
.office-services h5,
.face-services h5,
.petr-services h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ml-services ul,
.office-services ul,
.face-services ul,
.petr-services ul {
    list-style: none;
    padding-left: 0;
}

.ml-services li,
.office-services li,
.face-services li,
.petr-services li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.ml-services li:before,
.office-services li:before,
.face-services li:before,
.petr-services li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.ml-antennes {
    margin: 1.5rem 0;
}

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

.antenne {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
}

/* Structures grid */
.structures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.structure-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
}

.structure-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.structure-info {
    margin: 1rem 0;
}

.structure-info p {
    margin: 0.5rem 0;
}

/* Decision tree */
.help-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.help-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.decision-tree {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.decision-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.decision-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.decision-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.decision-card p {
    margin: 0.5rem 0;
}

/* Conseils */
.horaires-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.horaires-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.conseil-card {
    background: linear-gradient(135deg, #f0f7ff, #e0efff);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.conseil-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.conseil-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Animations */
.animation-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.animation-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.animation-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
}

.animation-header h4 {
    margin: 0;
    font-size: 1.3rem;
}

.animation-body {
    padding: 1.5rem;
}

.services-list {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.acces-info {
    background: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 1rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.acces-info h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

.prescripteur {
    background: white;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.concept-description {
    font-size: 1.1rem;
    color: #555;
    padding: 1rem;
    background: #f0f7ff;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.public-box {
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.public-box h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

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

.contact-block {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.contact-block p {
    margin: 0.5rem 0;
}

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

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

/* PETR Actions */
.petr-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.action-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.action-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.action-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.action-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Calendrier */
.calendrier-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.calendrier-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.evenement-card {
    background: linear-gradient(135deg, #fff3cd, #ffe8a1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--warning-color);
}

.evenement-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.evenement-card p {
    margin: 0.5rem 0;
}

.evenement-card strong {
    color: var(--primary-color);
}

/* Financement animations */
.financement-animations {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.financement-animations h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.financeur-card {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--success-color);
}

.financeur-card h4 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.financeur-card ul {
    list-style: none;
    padding-left: 0;
}

.financeur-card li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.financeur-card li:before {
    content: "€";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Participer section */
.participer-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.participer-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.step-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    padding-top: 3rem;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: var(--shadow);
}

.step-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: var(--shadow-hover);
}

.cta-section h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta-section .btn-primary:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
}

.cta-section .btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.centered {
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav a {
        border-bottom: 1px solid var(--border-color);
    }

    .page-header h2 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .cards-grid,
    .info-grid,
    .vehicules-grid,
    .types-grid,
    .contacts-grid,
    .lignes-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .aide-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons button {
        width: 100%;
    }
}

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

.card,
.aide-card,
.transport-card {
    animation: fadeIn 0.5s ease-out;
}

/* Hidden class for filtering */
.hidden {
    display: none !important;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.large-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
