:root {
    --primary-black: #000000;
    --primary-dark: #1a1a1a;
    --accent-gold: #c9a961;
    --text-dark: #000000;
    --text-gray: #4a5568;
    --text-light: #718096;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-cream: #fefdfb;
    --border-color: #d1d5db;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-black);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-gold);
}

strong {
    font-weight: 700;
    color: var(--primary-black);
    font-size: 1.05em;
}

h1 strong, 
h2 strong, 
h3 strong, 
h4 strong {
    font-weight: 800;
    color: var(--primary-black);
    font-size: 1.15em;
}

header {
    display: none;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

[class*="col-"] {
    padding: 0 12px;
    width: 100%;
}

.col-12 { width: 100%; }
.col-4 { width: 33.333%; }
.col-8 { width: 66.666%; }

.col-md-4 { width: 33.333%; }
.col-md-6 { width: 50%; }
.col-lg-6 { width: 50%; }
.col-lg-8 { width: 66.666%; }

.justify-content-center {
    justify-content: center;
}

@media (min-width: 768px) {
    .col-md-4 { width: 33.333%; }
    .col-md-6 { width: 50%; }
}

@media (min-width: 992px) {
    .col-lg-6 { width: 50%; }
    .col-lg-8 { width: 66.666%; }
}

main {
    padding: 30px 0 60px 0;
    background: var(--bg-cream);
}

h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.4;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.4;
}

h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    padding: 0 0 2rem 0;
    margin-bottom: 2rem;
}

.cta-form-container {
    margin-bottom: 2rem;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
}

.badge-icon {
    width: 28px;
    height: 28px;
    background: var(--accent-gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.badge-text {
    font-size: 1.063rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.badge-text strong {
    color: var(--primary-black);
    font-weight: 700;
    font-size: 1.125rem;
}

.cta-process {
    margin-bottom: 2.5rem;
}

.process-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.25rem;
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.step-number {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: var(--primary-black);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 3px solid var(--accent-gold);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1.063rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

#v824909e974d {
    background: var(--bg-white);
    padding: 45px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 2rem;
    border: 3px solid var(--primary-black);
    position: relative;
    overflow: hidden;
}

#v824909e974d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
}

.card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.card-header {
    padding: 1.5rem 1.75rem;
    background: var(--primary-black);
    color: var(--bg-white);
    border-bottom: 3px solid var(--accent-gold);
}

.card-header h3,
.card-header .h5 {
    color: var(--bg-white);
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    margin-bottom: 1rem;
    color: var(--primary-black);
    font-weight: 700;
    font-size: 1.25rem;
}

.card .row.g-0 {
    margin: 0;
    height: 100%;
}

.card .row.g-0 .col-4 {
    min-width: 160px;
    max-width: 160px;
    width: 160px;
    position: relative;
}

.card .row.g-0 .col-8 {
    width: calc(100% - 160px);
    flex: 1;
}

.card img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.card .row.g-0 + .card-body {
    padding: 1.5rem;
    overflow: hidden;
}

.card .row.g-0 + .card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    word-wrap: break-word;
    color: var(--primary-black);
    font-weight: 700;
}

.card .row.g-0 + .card-body .text-muted.small {
    font-size: 0.938rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--text-gray);
    line-height: 1.5;
}

.card .row.g-0 + .card-body p {
    font-size: 1rem;
    margin-bottom: 1rem;
    word-wrap: break-word;
    line-height: 1.7;
    color: var(--text-dark);
}

.card .row.g-0 + .card-body strong {
    font-weight: 700;
    color: var(--primary-black);
    font-size: 1.063rem;
}

.card-body > div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.text-warning {
    color: var(--accent-gold) !important;
    font-size: 1.25rem;
    line-height: 1;
}

.text-muted {
    color: var(--text-gray) !important;
}

small {
    font-size: 0.938rem;
    line-height: 1.5;
}

.alert {
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    line-height: 1.7;
}

.alert-light {
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    border-left: 4px solid var(--accent-gold);
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #166534;
}

.alert-success .alert-heading {
    color: #166534;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #991b1b;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.938rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn {
    display: inline-block;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.875rem;
    white-space: nowrap;
    line-height: 1.4;
}

.btn-sm {
    padding: 7px 12px;
    font-size: 0.813rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-dark {
    background: var(--primary-black);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.btn-dark:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-black);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-outline-dark:hover {
    background: var(--primary-black);
    color: var(--bg-white);
    transform: translateY(-1px);
}

.btn-outline-secondary {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--border-color);
}

.btn-outline-secondary:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-black);
}

.d-flex {
    display: flex;
}

.gap-2 {
    gap: 8px;
}

.flex-wrap {
    flex-wrap: wrap;
}

.mt-auto {
    margin-top: auto;
}

.collapse {
    display: none;
}

.horaires-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.horaires-modal.show {
    display: flex;
}

.horaires-modal-content {
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
    border: 3px solid var(--accent-gold);
}

.horaires-modal-header {
    background: var(--primary-black);
    color: var(--bg-white);
    padding: 1.75rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--accent-gold);
}

.horaires-modal-header h3 {
    margin: 0;
    font-size: 1.375rem;
    color: var(--bg-white);
    font-weight: 700;
}

.horaires-close {
    background: transparent;
    border: none;
    color: var(--bg-white);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 4px;
    line-height: 1;
}

.horaires-close:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: rotate(90deg);
}

.horaires-modal-body {
    padding: 0;
}

.horaires-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.horaires-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    border-bottom: 2px solid var(--border-color);
    transition: var(--transition);
}

.horaires-item:hover {
    background: var(--bg-light);
}

.horaires-item:last-child {
    border-bottom: none;
}

.horaires-day {
    font-weight: 700;
    color: var(--primary-black);
    font-size: 1.125rem;
}

.horaires-time {
    color: var(--text-gray);
    font-size: 1.063rem;
    text-align: right;
    font-weight: 600;
}

.horaires-item.today {
    background: rgba(201, 169, 97, 0.15);
    border-left: 5px solid var(--accent-gold);
}

.horaires-item.today .horaires-day {
    color: var(--primary-black);
    font-weight: 700;
    font-size: 1.25rem;
}

.horaires-item.today .horaires-time {
    color: var(--primary-black);
    font-weight: 700;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

thead {
    background: var(--primary-black);
    color: var(--bg-white);
}

thead th {
    padding: 1.25rem 1.125rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.063rem;
    letter-spacing: 0.3px;
}

tbody tr {
    border-bottom: 2px solid var(--border-color);
    transition: var(--transition);
}

tbody tr:hover {
    background: var(--bg-light);
}

tbody td {
    padding: 1.25rem 1.125rem;
    color: var(--text-dark);
    font-size: 1.063rem;
    line-height: 1.7;
}

tbody tr:last-child {
    border-bottom: none;
}

tbody strong {
    font-weight: 700;
    color: var(--primary-black);
}

section.card.mt-5 {
    margin-top: 3rem;
    background: var(--bg-white);
}

section.card.mt-5 .card-body {
    padding: 2.75rem;
}

section.card.mt-5 .card-body > .mt-3 {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 100%;
    column-count: unset !important;
    columns: unset !important;
    display: block;
}

section.card.mt-5 .card-body > h2.card-title {
    font-size: 2.125rem;
    margin-bottom: 1.75rem;
    color: var(--primary-black);
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-gold);
    font-weight: 800;
}

section.card.mt-5 .card-body p {
    margin-bottom: 1.75rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.125rem;
    text-align: justify;
    width: 100%;
    display: block;
}

section.card.mt-5 .card-body strong {
    color: var(--primary-black);
    font-weight: 700;
    font-size: 1.188rem;
}

section.card.mt-5 .card-body h2 {
    font-size: 1.875rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    padding-bottom: 0.875rem;
    border-bottom: 4px solid var(--accent-gold);
    font-weight: 800;
    width: 100%;
    display: block;
}

section.card.mt-5 .card-body h2:first-of-type {
    margin-top: 2rem;
}

section.card.mt-5 .card-body h2 + p {
    margin-top: 1rem;
}

section.card.mt-5 .card-body table {
    margin: 2.75rem 0;
    width: 100%;
    display: table;
}

section.card.mt-5 .card-body h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-gold);
}

section.card.mt-5 .card-body h4 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

section.card:not(.mt-5) {
    background: var(--bg-white);
    border-left: 5px solid var(--accent-gold);
}

section.card:not(.mt-5) .card-body {
    padding: 2.25rem;
}

section.card:not(.mt-5) .card-title {
    color: var(--primary-black);
    font-size: 1.625rem;
    font-weight: 700;
}

section.card:not(.mt-5) p {
    font-size: 1.063rem;
    line-height: 1.7;
}

section.card:not(.mt-5) strong {
    font-weight: 700;
    font-size: 1.125rem;
}

section.mb-5 h2 {
    color: var(--primary-black);
    font-size: 2.125rem;
    margin-bottom: 2.25rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-gold);
    font-weight: 800;
}

.my-5 { margin-top: 1rem; margin-bottom: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.p-2 { padding: 0.5rem; }

.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.ms-3 { margin-left: 1rem; }

.text-center { text-align: center; }
.text-white { color: var(--bg-white) !important; }
.text-light { color: var(--text-light) !important; }
.text-decoration-none { text-decoration: none; }
.h-100 { height: 100%; }
.h5 { font-size: 1.25rem; font-weight: 700; }

.bg-dark {
    background: var(--primary-black);
}

.bg-light {
    background: var(--bg-light);
}

footer {
    background: var(--primary-black);
    color: var(--bg-white);
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
    border-top: 4px solid var(--accent-gold);
}

footer p {
    margin: 0.75rem 0;
    font-size: 1.063rem;
    line-height: 1.7;
}

footer a {
    color: var(--bg-white);
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
    font-weight: 600;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

footer a:hover {
    color: var(--accent-gold);
}

footer a:hover::after {
    width: 100%;
}

footer .me-3 {
    margin-right: 1rem;
}

footer .ms-3 {
    margin-left: 1rem;
}

section.bg-light.py-5 {
    background: var(--bg-cream);
    border-top: 2px solid var(--border-color);
}

section.bg-light h2 {
    color: var(--primary-black);
    font-size: 2.125rem;
    font-weight: 800;
}

section.bg-light .row [class*="col-"] {
    width: 100% !important;
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-unstyled li {
    padding: 14px 0;
    border-bottom: 2px solid var(--border-color);
    transition: var(--transition);
}

.list-unstyled li:last-child {
    border-bottom: none;
}

.list-unstyled li:hover {
    padding-left: 12px;
    background: rgba(201, 169, 97, 0.08);
}

.list-unstyled a {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    padding-left: 28px;
    font-size: 1.063rem;
    line-height: 1.6;
}

.list-unstyled a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    opacity: 0;
    transition: var(--transition);
    font-size: 1.125rem;
}

.list-unstyled a:hover {
    color: var(--primary-black);
}

.list-unstyled a:hover::before {
    opacity: 1;
}

@media (max-width: 991px) {
    body {
        font-size: 17px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    section.card.mt-5 .card-body h2 {
        font-size: 1.625rem;
    }
    
    .col-lg-6 {
        width: 100%;
    }
    
    .col-lg-8 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 18px;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        padding-bottom: 12px;
    }
    
    h2 {
        font-size: 1.625rem;
    }
    
    h3 {
        font-size: 1.375rem;
        margin-top: 2rem;
    }
    
    h4 {
        font-size: 1.125rem;
        margin-top: 1.5rem;
    }
    
    main {
        padding: 20px 0 40px 0;
    }
    
    section.card.mt-5 .card-body {
        padding: 1.75rem;
    }
    
    section.card.mt-5 .card-body h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    section.card.mt-5 .card-body h3 {
        font-size: 1.375rem;
        margin-top: 2rem;
    }
    
    section.card.mt-5 .card-body p {
        font-size: 1.125rem;
        text-align: left;
    }
    
    .cta-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-badge {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        padding: 1.125rem 1.5rem;
    }
    
    .badge-text {
        font-size: 1.125rem;
    }
    
    .badge-text strong {
        font-size: 1.188rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .step-number {
        width: 38px;
        height: 38px;
        font-size: 1.375rem;
    }
    
    .step-content h4 {
        font-size: 1.125rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .btn {
        font-size: 0.938rem;
        padding: 9px 14px;
    }
    
    .gap-2 {
        gap: 8px;
    }
    
    .card .row.g-0 {
        flex-direction: column;
    }
    
    .card .row.g-0 .col-4,
    .card .row.g-0 .col-8 {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
    
    .card img {
        margin: 0;
        border-radius: 12px;
        min-height: 220px;
        max-height: 220px;
        margin: 15px;
        width: calc(100% - 30px);
    }
    
    .card .row.g-0 + .card-body p {
        font-size: 1.063rem;
    }
    
    .col-md-4,
    .col-md-6 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .card-header {
        padding: 1.25rem 1.5rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .horaires-modal-content {
        max-width: 100%;
        margin: 0;
        border-radius: 12px;
    }
    
    .horaires-modal-header {
        border-radius: 12px 12px 0 0;
        padding: 1.5rem;
    }
    
    .horaires-modal-header h3 {
        font-size: 1.25rem;
    }
    
    .horaires-item {
        padding: 1.25rem 1.5rem;
    }
    
    .horaires-day {
        font-size: 1.125rem;
    }
    
    .horaires-time {
        font-size: 1.063rem;
    }
    
    table {
        font-size: 1rem;
    }
    
    thead th,
    tbody td {
        padding: 1.125rem 0.875rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    main {
        padding: 15px 0 30px 0;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    #v824909e974d {
        padding: 30px 20px;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    section.card:not(.mt-5) .card-body {
        padding: 1.75rem;
    }
    
    section.card.mt-5 .card-body {
        padding: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .me-2 {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
    
    .step-content {
        text-align: center;
    }
    
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    thead th {
        white-space: nowrap;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.col-lg-6:nth-child(1) .card { animation-delay: 0.05s; }
.col-lg-6:nth-child(2) .card { animation-delay: 0.1s; }
.col-lg-6:nth-child(3) .card { animation-delay: 0.15s; }
.col-lg-6:nth-child(4) .card { animation-delay: 0.2s; }
.col-lg-6:nth-child(5) .card { animation-delay: 0.25s; }
.col-lg-6:nth-child(6) .card { animation-delay: 0.3s; }

html {
    scroll-behavior: smooth;
}

a:focus,
button:focus,
.btn:focus,
.form-control:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
}

@media print {
    header,
    footer,
    #v824909e974d,
    .cta-wrapper {
        display: none;
    }
    
    .card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
}