* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
    width: 100%;
}
img {
    max-width: 100%;
    height: auto;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #FFFFFF;
    color: #212121;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 65px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow-wrap: break-word;
    word-break: break-word;
    flex: 1;
}
.logo {
    width: 50px;
    height: 50px;
    margin: 40px auto;
    display: block;
}
.header-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}
.header-flex .logo {
    width: 45px;
    height: 45px;
    margin: 0;
    flex-shrink: 0;
}
.header-flex h1 {
    margin: 0;
    text-align: left;
}
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 5px 0 0 0;
}
h1 {
    color: #1976D2;
    font-size: 2.5rem;
    margin: 0;
}
.page-title {
    color: #1976D2;
    font-size: 2rem;
    margin: 0;
    flex: 1;
}
.trust-badges-header {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}
.trust-badges-header img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }
    h1 {
        font-size: 1.8rem;
    }
    .page-title {
        font-size: 1rem;
    }
    .article h2 {
        font-size: 1.5rem;
    }
    .article h3 {
        font-size: 1.2rem;
    }
    .trust-badges-header {
        gap: 12px;
    }
    .trust-badges-header img {
        width: 50px;
        height: 50px;
    }
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.card {
    background: white;
    border: 2px solid #1976D2;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: #212121;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    text-align: center;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: #0D47A1;
}
.card-title {
    color: #1976D2;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}
.widget-container {
    width: 100%;
    margin: 0 0 40px 0;
    border-radius: 12px;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.widget-container--flush {
    margin: 0;
}
.article {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.article h2 {
    color: #1976D2;
    margin: 30px 0 15px 0;
    font-size: 1.8rem;
}
.article h3 {
    color: #1976D2;
    margin: 20px 0 10px 0;
    font-size: 1.3rem;
}
.article p {
    margin: 15px 0;
    line-height: 1.8;
}
.article table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.article th,
.article td {
    padding: 1rem;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.article th {
    background: rgba(0, 0, 0, 0.03);
    font-weight: 600;
}
.article ul,
.article ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.article ul li,
.article ol li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}
.article ul {
    list-style: disc;
}
.article ol {
    list-style: decimal;
}
.businesses {
    margin: 20px 0;
}
.business-item {
    background: #f8f9fa;
    padding: 20px;
    margin: 15px 0;
    border-left: 4px solid #1976D2;
    border-radius: 8px;
}
.business-name {
    font-weight: 600;
    color: #0D47A1;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.business-address {
    color: #666;
    font-size: 0.95rem;
}
.related-section {
    margin: 60px 0 40px 0;
}
.related-title {
    font-size: 1.8rem;
    color: #1976D2;
    margin-bottom: 30px;
    text-align: center;
}
.breadcrumb {
    margin: 20px 0;
    font-size: 0.9rem;
    color: #212121;
}
.breadcrumb a {
    color: #1976D2;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb-separator {
    margin: 0 8px;
    color: #999;
}
.footer {
    background-color: #1976D2;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    font-size: 0.9rem;
}
.footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
.footer a:hover {
    text-decoration: underline;
}
.footer-links {
    margin-top: 10px;
}
/* Header sticky */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1976D2;
    font-weight: 700;
    font-size: 1.1rem;
}
.header-logo img {
    width: 35px;
    height: 35px;
}
.header-badges {
    display: flex;
    gap: 10px;
    align-items: center;
}
.header-badges img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.header-cta-btn {
    display: inline-block;
    background-color: #22C55E;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
/* CTA flottant mobile */
.cta-floating {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 15px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
}
.cta-floating-btn {
    display: block;
    width: 100%;
    background-color: #22C55E;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .header-badges {
        gap: 5px;
    }
    .header-badges img {
        width: 25px;
        height: 25px;
    }
    .header-logo span {
        display: none;
    }
    .header-cta-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    .cta-floating {
        display: block;
    }
    /* Ajouter padding en bas du body pour le CTA flottant */
    body {
        padding-bottom: 70px;
    }
}
.internal-links-block {
    background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: white;
}
.internal-links-block h3 {
    margin-top: 0;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: bold;
    color: white;
    text-shadow: none;
}
.internal-links-block p {
    line-height: 1.8;
    margin: 0;
    text-shadow: none;
}
.internal-links-block a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}
.internal-links-block a:hover {
    opacity: 0.9;
}
.article-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: block;
    margin: 30px auto;
}
.cta-button {
    display: inline-block;
    background-color: #22C55E;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: 100%;
    text-align: center;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.cta-button-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: #22C55E;
    color: white;
    padding: 25px 60px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    max-width: 100%;
    text-align: center;
}
.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.cta-subtext {
    font-size: 18px;
    font-weight: 400;
    margin-top: 8px;
    opacity: 0.95;
}
/* Cards entreprises ameliorees */
.business-card-enhanced {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-left: 4px solid #1976D2;
    transition: all 0.3s ease;
}
.business-card-enhanced:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}
.business-card-content {
    flex: 1;
}
.business-card-name {
    color: #1976D2;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}
.business-card-rating {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.business-card-category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.business-card-address {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.business-card-cta {
    display: inline-block;
    background-color: #22C55E;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.business-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
/* Hero section */
.hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
    margin: -20px -20px 30px -20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white !important;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.hero-cta {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-stat-item {
    text-align: center;
}
.hero-stat-value {
    font-size: 1.8rem;
    font-weight: bold;
}
.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}
.trust-badges-section {
    margin-bottom: 30px;
}
.cta-block {
    text-align: center;
    margin: 40px 0;
}
@media (max-width: 768px) {
    .cards-grid { grid-template-columns: 1fr; }
    .article { padding: 20px; }
    .footer { font-size: 0.85rem; padding: 15px; }
    .breadcrumb { font-size: 0.85rem; }
    .cta-button-large {
        padding: 20px 40px;
        font-size: 22px;
    }
    .cta-subtext {
        font-size: 16px;
    }
    .business-card-enhanced {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .business-card-cta {
        text-align: center;
        padding: 14px 20px;
    }
}
/* Responsive mobile 480px */
@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
        min-height: 40vh;
        margin: 0 0 20px 0;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .hero-cta {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    .hero-stats {
        gap: 15px;
    }
    .hero-stat-value {
        font-size: 1.4rem;
    }
    .hero-stat-label {
        font-size: 0.8rem;
    }
    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }
    .cta-button-large {
        padding: 16px 30px;
        font-size: 18px;
    }
    .cta-subtext {
        font-size: 14px;
    }
    .container {
        padding: 10px;
    }
    .article {
        padding: 15px;
    }
    .article table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .footer a {
        margin: 0 5px;
    }
    .header-sticky {
        padding: 8px 10px;
    }
    .business-card-cta {
        white-space: normal;
    }
}
/* Responsive mobile 375px */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.4rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .hero-stats {
        gap: 10px;
    }
    .hero-stat-value {
        font-size: 1.2rem;
    }
    h1 {
        font-size: 1.5rem;
    }
    .cta-button-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}
/* Maillage interne */
.maillage-section {
    background: #f8f9fa;
    padding: 40px 30px;
    margin: 40px 0;
    border-radius: 12px;
}
.maillage-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}
.maillage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.maillage-block {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.maillage-block h3 {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}
.maillage-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.maillage-links li {
    display: inline;
}
.maillage-links a {
    display: inline-block;
    padding: 6px 12px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.maillage-links a:hover {
    background: #e0e0e0;
}
