:root {
    --primary: #722F37;
    --primary-light: #8B4049;
    --primary-dark: #4A1F24;
    --secondary: #F5E6E8;
    --accent: #87CEEB;
    --accent-light: #E8F4F8;
    --accent-dark: #5BA3C6;
    --text: #333333;
    --text-light: #5C4033;
    --white: #ffffff;
    --bg-light: #ffffff;
    --shadow: 0 4px 15px rgba(114, 47, 55, 0.15);
    --border: #E0D0D2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

header {
    background: var(--primary);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFAF0;
}

.logo a {
    text-decoration: none;
    color: #FFFAF0;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #FFFAF0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    border: 2px solid transparent;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: #FFFAF0;
    border-color: var(--accent);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    margin: 2rem 0;
    gap: 1rem;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--accent-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content .tagline {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(114, 47, 55, 0.3);
    filter: brightness(1.05) contrast(1.02);
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    cursor: pointer;
    font-size: 1rem;
}

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

section {
    margin-bottom: 4rem;
}

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

.about {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 1rem auto 2rem;
    border-left: 4px solid var(--accent);
}

.about p {
    text-align: justify;
    max-width: 700px;
    margin: 0 auto 1rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 0 1 300px;
    max-width: 320px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    overflow: hidden;
    border-top: 4px solid var(--accent);
    margin-bottom: 0.5rem;
}

.service-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--primary);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-card .img-dog {
    object-position: 90% center !important;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.85rem;
}

.why-choose {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent);
}

.why-choose ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.why-choose li {
    padding: 0.8rem;
    color: var(--text-light);
    border-bottom: 2px solid var(--secondary);
}

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

.cta {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.page-header {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    margin: 2rem 0;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow);
}

.page-header.photo-header {
    padding: 4rem 2rem;
    background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), url('Mains sur Cheval.jpg');
    background-size: cover;
    background-position: center;
}

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

.page-header p {
    color: var(--accent-dark);
    font-weight: 500;
}

.parcours {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.parcours-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.parcours-image {
    flex: 0 0 300px;
}

.parcours-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.parcours-content {
    flex: 1;
}

.parcours-intro,
.parcours-outro {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.parcours-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--accent-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.parcours-item .year {
    flex: 0 0 60px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.parcours-details h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.parcours-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent-light);
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
}

.price-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

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

.price-card ul {
    list-style: none;
    color: var(--text-light);
}

.price-card li {
    padding: 0.5rem;
    border-bottom: 1px solid var(--secondary);
}

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.price .ttc {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-note {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.info-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
}

.first-info {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('IMG_4105.JPG');
    background-size: cover;
    background-position: center;
}

.title-background {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.title-background h2 {
    color: var(--white);
    margin: 0;
    text-align: left;
}

.info-row {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--secondary);
}

.info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    font-size: 1.2rem;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.info-item p {
    color: var(--text-light);
    padding: 0.3rem 0;
}

.info-item .note {
    font-style: italic;
    color: var(--accent-dark);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.info-item .note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

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

.info-block {
    margin-bottom: 1.5rem;
}

.info-block h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.info-block p {
    color: var(--text-light);
    padding: 0.2rem 0;
}

.info-block .note {
    font-style: italic;
    color: var(--accent-dark);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.info-block .note a,
.note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.info-block .note a:hover,
.note a:hover {
    text-decoration: underline;
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.city-list li {
    background: var(--secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text);
}

.zone-table {
    width: 100%;
    max-width: 500px;
    margin: 1rem auto;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.zone-table th {
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.zone-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--secondary);
    color: var(--text);
}

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

.zone-table tr:nth-child(even) {
    background: rgba(135, 206, 235, 0.1);
}

.zone-departments {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary);
}

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

.motif-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow);
    text-align: center;
}

.motif-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-light);
}

.motif-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.etape {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.etape-number {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.etape-content {
    flex: 1;
}

.etape-content h3 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.etape-content p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.seance-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.1), rgba(135, 206, 235, 0.1));
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    text-align: center;
    font-style: italic;
    color: var(--text);
    font-size: 1.05rem;
}

.vet-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(135, 206, 235, 0.15);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    color: var(--text);
}

.reviews-section {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.reviews-section h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.reviews-section > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.no-reviews {
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    margin: 0 0 2rem 0;
}

.review-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: left;
    border-top: 4px solid var(--accent);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
}

.contact-form h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.3);
}

.form-group textarea {
    resize: vertical;
}

footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 4px solid var(--accent);
}

footer p {
    margin: 0.5rem 0;
    color: var(--white);
}

footer .contact-footer {
    font-size: 1rem;
    color: var(--accent);
}

footer .location {
opacity: 0.8;
    font-size: 0.9rem;
}

/* Tablette (768px - 1024px) */
@media (max-width: 1024px) {
    .hero {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-image {
        max-width: 350px;
    }
    
    .hero-image img {
        height: 280px;
    }
    
    .about {
        padding: 2rem;
        margin: 1rem auto 3rem;
    }
    
    .services-grid {
        justify-content: center;
    }
}

/* Mobile (moins de 768px) */
@media (max-width: 768px) {
    /* Header et Navigation */
    header nav {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 1rem;
        position: relative;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .logo a {
        font-size: 1rem;
    }
    
    /* Menu Burger */
    .burger-menu {
        display: flex !important;
    }
    
    /* Navigation */
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #722F37;
        flex-direction: column;
        padding: 0;
        gap: 0;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links li {
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Hero */
    .hero {
        flex-direction: column;
        padding: 1.5rem 1rem;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        max-width: 250px;
        width: 100%;
        display: block;
        margin: 0 auto;
    }
    
    .hero-image img {
        height: 180px;
        border-radius: 25px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero .subtitle {
        font-size: 0.9rem;
    }
    
    .hero .tagline {
        font-size: 0.8rem;
    }
    
    .hero .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* About */
    .about {
        padding: 1rem;
        margin: 1rem auto 1.5rem;
    }
    
    .about p {
        font-size: 0.85rem;
        text-align: left;
    }
    
    section h2 {
        font-size: 1.3rem;
    }
    
    /* Services */
    .services {
        padding: 1.5rem 1rem;
    }
    
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        width: 100%;
        max-width: 280px;
    }
    
    .service-card img {
        height: 150px;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.75rem;
    }
    
    /* Why choose */
    .why-choose {
        padding: 1.5rem 1rem;
    }
    
    .why-choose li {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    /* CTA */
    .cta {
        padding: 2rem 1rem;
    }
    
    .cta h2 {
        font-size: 1.2rem;
    }
    
    .cta p {
        font-size: 0.85rem;
    }
    
    /* Pricing */
    .pricing {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .price-card {
        padding: 1rem;
    }
    
    .price-card h3 {
        font-size: 0.9rem;
    }
    
    .price-card .price {
        font-size: 1.1rem;
    }
    
    .pricing-note {
        font-size: 0.75rem;
    }
    
    /* Motif cards */
    .motif-grid {
        grid-template-columns: 1fr;
    }
    
    .motif-card {
        padding: 1rem;
    }
    
    .motif-card h3 {
        font-size: 0.95rem;
    }
    
    .motif-card p {
        font-size: 0.8rem;
    }
    
    /* Info sections */
    .info-section {
        padding: 1.5rem 1rem;
    }
    
    .info-section h2 {
        font-size: 1.2rem;
    }
    
    .info-item h3 {
        font-size: 1rem;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
    
    /* Page header */
    .page-header {
        padding: 1.5rem 1rem;
    }
    
    .page-header h1 {
        font-size: 1.4rem;
    }
    
    .page-header p {
        font-size: 0.85rem;
    }
    
    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.2rem;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.2rem;
    }
    
    .info-block h3 {
        font-size: 0.95rem;
    }
    
    .info-block p {
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
    /* Tableaux */
    .zone-table {
        font-size: 0.75rem;
    }
    
    .zone-table th,
    .zone-table td {
        padding: 0.5rem;
    }
    
    /* Footer */
    footer {
        padding: 1.2rem 1rem;
    }
    
    footer p {
        font-size: 0.75rem;
    }
    
    footer .contact-footer {
        font-size: 0.8rem;
    }
    
    footer .location {
        font-size: 0.7rem;
    }
}

/* Tablette (768px - 1024px) */
@media (max-width: 1024px) {
    .hero {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-image {
        max-width: 350px;
    }
    
    .hero-image img {
        height: 280px;
    }
    
    .about {
        padding: 2rem;
        margin: 1rem auto 3rem;
    }
    
    .services-grid {
        justify-content: center;
    }
}

/* Mobile (moins de 768px) */
@media (max-width: 768px) {
    /* Header et Navigation */
    header nav {
        flex-direction: column;
        padding: 0.8rem;
    }
    
    .logo {
        margin-bottom: 0.5rem;
    }
    
    .logo a {
        font-size: 1.3rem;
    }
    
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    /* Hero */
    .hero {
        flex-direction: column;
        padding: 2rem 1rem;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        max-width: 300px;
        width: 100%;
        display: block;
        margin: 0 auto;
    }
    
    .hero-image img {
        height: 220px;
        border-radius: 30px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    /* About */
    .about {
        padding: 1.5rem 1rem;
        margin: 1rem auto 2rem;
    }
    
    .about p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Services */
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        width: 100%;
        max-width: 320px;
    }
    
    /* Why choose */
    .why-choose {
        padding: 2rem 1rem;
    }
    
    .why-choose ul {
        padding-left: 0;
    }
    
    .why-choose li {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    /* CTA */
    .cta {
        padding: 2rem 1rem;
    }
    
    .cta h2 {
        font-size: 1.4rem;
    }
    
    .cta p {
        font-size: 0.9rem;
    }
    
    /* Pricing cards */
    .pricing {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .price-card {
        padding: 1.2rem;
    }
    
    .price-card h3 {
        font-size: 1rem;
    }
    
    .price-card .price {
        font-size: 1.3rem;
    }
    
    .pricing-note {
        font-size: 0.8rem;
    }
    
    /* Motif cards */
    .motif-grid {
        grid-template-columns: 1fr;
    }
    
    .motif-card {
        padding: 1.2rem;
    }
    
    /* Info sections */
    .info-section {
        padding: 2rem 1rem;
    }
    
    .info-item h3 {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 2rem 1rem;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .info-block h3 {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
    }
    
    /* Tableaux */
    .zone-table {
        font-size: 0.85rem;
    }
    
    .zone-table th,
    .zone-table td {
        padding: 0.6rem;
    }
    
    /* Etapes */
    .etape {
        flex-direction: column;
        gap: 1rem;
    }
    
    .etape-number {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    /* Footer */
    footer {
        padding: 1.5rem 1rem;
    }
    
    footer p {
        font-size: 0.85rem;
    }
    
    footer .contact-footer {
        font-size: 0.9rem;
    }
    
    footer .location {
        font-size: 0.8rem;
    }
    
    /* Menu Burger */
    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 25px;
        height: 20px;
        cursor: pointer;
        z-index: 1000;
    }
    
    .burger-menu span {
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: 0.3s;
    }
    
    @media (max-width: 768px) {
        .burger-menu {
            display: flex;
        }
        
        .nav-links {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--primary);
            flex-direction: column;
            padding: 1rem;
            gap: 0;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        
        .nav-links.active {
            display: flex;
        }
        
        .nav-links li {
            margin: 0.5rem 0;
        }
        
        .nav-links a {
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
        }
        
        .nav-links a:hover {
            background: var(--primary-light);
        }
    }
    
    /* Styles pour les animations du burger */
    .burger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Reviews */
    .reviews {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 1.2rem;
    }
    
    /* Parcours */
    .parcours-content {
        padding: 1rem;
    }
    
    .parcours-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .year {
        font-size: 0.9rem;
    }
    
    .parcours-details h3 {
        font-size: 1rem;
    }
    
    /* Formulaire avis */
    .review-form {
        padding: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    /* Info section zone */
    .info-row {
        padding: 1rem;
    }
    
    .zone-departments {
        font-size: 0.85rem;
    }
    
    .note {
        font-size: 0.8rem;
    }
}
