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

/* Styles pour la page Privacy Policy */
.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.privacy-title {
    font-size: 42px;
    font-weight: 700;
    color: #151F39;
    margin-bottom: 10px;
    line-height: 1.2;
}

.privacy-updated {
    color: rgba(21, 31, 57, 0.6);
    font-size: 16px;
    font-style: italic;
}

.privacy-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #151F39;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(21, 31, 57, 0.1);
}

.privacy-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #151F39;
    margin: 25px 0 15px;
}

.privacy-section p {
    margin-bottom: 15px;
    color: rgba(21, 31, 57, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.privacy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
    color: rgba(21, 31, 57, 0.8);
    line-height: 1.5;
}

.contact-info {
    background: #F6F9FF;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 5px;
}

/* Responsive pour la page Privacy */
@media (max-width: 768px) {
    .privacy-title {
        font-size: 32px;
    }
    
    .privacy-content {
        padding: 25px;
    }
    
    .privacy-section h2 {
        font-size: 24px;
    }
    
    .privacy-section h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 28px;
    }
    
    .privacy-content {
        padding: 20px;
    }
    
    .privacy-section h2 {
        font-size: 22px;
    }
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F6F9FF;
}

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

/* Header */
.header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-banner {
    background: linear-gradient(135deg, #8BC34A, #689F38);
    color: white;
    text-align: center;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 500;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.attention-icon {
    width: 20.31px;
    height: 22.18px;
    flex-shrink: 0;
}

.navbar {
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

.phone-btn {
    background: #F6F9FF;
    color: #6F7688;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: #E8EDF7;
    transform: translateY(-2px);
}

.phone-icon {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(8%) saturate(1076%) hue-rotate(202deg) brightness(95%) contrast(92%);
}

/* Main content */
.main-content {
    padding: 20px 0;
}

/* Hero section */
.hero {
    text-align: center;
    margin-bottom: 20px;
}

.stars {
    margin-bottom: 15px;
}

.stars-img {
    height: 60px;
    width: auto;
}

.hero-car-icon {
    width: 60px;
    height: auto;
    margin-top: 10px;
}

.hero-title {
    margin-bottom: 25px;
}

.subtitle {
    display: block;
    font-size: 24px;
    color: rgba(21, 31, 57, 0.6);
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: 'Manrope', sans-serif;
}

.main-title {
    display: block;
    font-size: 48px;
    font-weight: 600;
    color: #151F39;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: 'Manrope', sans-serif;
}

.price {
    color: #78C143;
}

.highlight {
    color: #78C143;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    display: inline;
    font-family: 'Manrope', sans-serif;
}

.savings {
    font-size: 48px;
    font-weight: 600;
    color: #151F39;
    line-height: 1.1;
    letter-spacing: -0.02em;
    display: inline;
    font-family: 'Manrope', sans-serif;
}

.car-icon {
    width: 100px;
    height: auto;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(21, 31, 57, 0.6);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
}

.hero-description p {
    margin-bottom: 2px;
}

/* Form section */
.form-section {
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: #151F39;
    margin-bottom: 15px;
    font-family: 'Manrope', sans-serif;
}

.form-container {
    background: #FFFFFF;
    border: 1px solid #E3E7EE;
    border-radius: 20px;
    padding: 24px;
    max-width: 500px;
    margin: 0 auto;
}

.form-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6F7688;
    font-family: 'Manrope', sans-serif;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #78C143;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 12px;
    height: 12px;
    background: rgba(120, 193, 67, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.chrono-icon {
    width: 16px;
    height: 16px;
}

.age-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.age-btn {
    background: #0368C3;
    color: #FFFFFF;
    border: none;
    padding: 24px 60px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 70px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.age-btn:hover {
    background: #025aa3;
    transform: translateY(-2px);
}

.age-btn:active {
    transform: translateY(0px);
}

.age-btn.selected {
    background: #8BC34A;
}

/* Success message */
.success-message {
    background: linear-gradient(135deg, #8BC34A, #689F38);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
    animation: slideIn 0.5s ease-out;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-message p {
    font-size: 16px;
    opacity: 0.9;
}

/* Loading state */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    color: #666;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2196F3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Help section */
.help-section {
    margin-bottom: 60px;
}

.help-container {
    background: #FFFFFF;
    border: 1px solid #E3E7EE;
    border-radius: 20px;
    padding: 24px;
    max-width: 500px;
    margin: 0 auto;
}

.help-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.help-avatar {
    flex-shrink: 0;
}

.avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.help-info {
    flex: 1;
}

.help-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(21, 31, 57, 0.6);
    margin-bottom: 4px;
    font-family: 'Manrope', sans-serif;
}

.help-subtitle {
    font-size: 12px;
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
}

.agent-name {
    font-weight: 500;
    color: rgba(21, 31, 57, 0.6);
}

.agent-title {
    font-weight: 400;
    color: rgba(21, 31, 57, 0.6);
}

.help-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars-img {
    height: 60px;
    width: auto;
}

.rating-stars {
    height: 14px;
    width: auto;
}

.calls-handled {
    color: rgba(21, 31, 57, 0.6);
    font-size: 10px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    text-decoration: underline;
}

.help-phone-container {
    border: 1px solid #E3E7EE;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.help-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
}

.phone-icon-img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(8%) saturate(1076%) hue-rotate(202deg) brightness(95%) contrast(92%);
}

.phone-number {
    color: rgba(21, 31, 57, 0.6);
    font-size: 11.24px;
    font-weight: 600;
}

.rating-text {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.rating-score {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 5px;
}

.help-phone {
    margin-top: 10px;
}

.phone-btn-help {
    background: white;
    border: 1px solid #E3E7EE;
    color: #6F7688;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 200px;
    height: 28px;
    justify-content: center;
}

.phone-btn-help:hover {
    background: #f8f9fa;
    border-color: #d1d5db;
}

.phone-icon-small {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(47%) sepia(8%) saturate(1679%) hue-rotate(201deg) brightness(93%) contrast(87%);
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Colonne gauche */
.footer-left .logo {
    margin-bottom: 15px;
}

.footer-copyright {
    color: rgba(21, 31, 57, 0.6);
    font-size: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    gap: 10px;
}

.badge-img {
    width: 85.1px;
    height: 30.29px;
}

/* Colonne centre */
.footer-center {
    padding: 0 20px;
}

.footer-description {
    color: rgba(21, 31, 57, 0.6);
    font-size: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

/* Colonne droite */
.footer-right h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

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

.footer-right li {
    margin-bottom: 8px;
}

.footer-right a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #0368C3;
}

/* ============================================= */
/* RESPONSIVE DESIGN - OPTIMISÉ POUR TOUS MOBILES */
/* ============================================= */

/* Tablettes et petits écrans */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 22px;
    }
    
    .highlight, .savings {
        font-size: 36px;
    }
    
    .form-section {
        padding: 16px;
        margin: 0 16px 40px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .help-container {
        margin: 0 16px;
    }
}

/* Tablettes portrait et grands mobiles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header responsive */
    .top-banner {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .banner-content {
        padding: 0 15px;
        flex-wrap: wrap;
    }
    
    .attention-icon {
        display: none;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .navbar .container {
        justify-content: center;
    }
    
    .nav-contact {
        display: none;
    }
    
    .logo-img {
        height: 36px;
    }
    
    /* Hero section responsive */
    .hero {
        padding: 0 10px;
        margin-bottom: 30px;
    }
    
    .stars {
        margin-bottom: 8px;
    }
    
    .stars-img {
        height: 50px;
    }
    
    .hero-car-icon {
        width: 50px;
        margin-top: 5px;
    }
    
    .subtitle {
        display: none;
    }
    
    .main-title {
        font-size: 32px;
        margin-bottom: 12px;
        line-height: 1.1;
        font-weight: 600;
        font-family: 'Manrope', sans-serif;
    }
    
    .main-title.mobile-format {
        white-space: pre-line;
    }
    
    .highlight, .savings {
        display: none;
    }
    
    .hero-description {
        font-size: 15px;
        padding: 0 10px;
    }
    
    /* Form section responsive */
    .form-section {
        padding: 20px 15px;
        margin: 0 10px 30px;
    }
    
    .form-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .form-container {
        background: transparent;
        border: none;
        padding: 20px;
        border-radius: 16px;
    }
    
    .form-stats {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }
    
    .stat-item {
        font-size: 13px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .age-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        padding: 0; /* Suppression du padding qui décalait */
        justify-items: stretch; /* Étirement des boutons */
        margin: 0 auto;
        width: 100%; /* S'assurer que le conteneur prend toute la largeur */
    }
    
    .age-btn {
        padding: 32px 25px;
        font-size: 24px;
        min-height: 85px;
        border-radius: 12px;
        width: 100%;
        max-width: none;
        margin: 0;
    }
    /* Help section responsive */
    .help-section {
        margin-bottom: 40px;
    }
    
    .help-container {
        background: transparent;
        border: none;
        margin: 0 10px;
        padding: 20px;
        border-radius: 16px;
        text-align: center;
    }
    
    .help-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .avatar-img {
        width: 80px;
        height: 80px;
    }
    
    .help-info {
        text-align: center;
    }
    
    .help-title {
        font-size: 28px;
        font-weight: 600;
        color: rgba(21, 31, 57, 0.8);
        margin-bottom: 4px;
        font-family: 'Manrope', sans-serif;
        order: -2;
    }
    
    .help-subtitle {
        font-size: 16px;
        font-weight: 400;
        color: rgba(21, 31, 57, 0.6);
        margin-bottom: 10px;
        font-family: 'Manrope', sans-serif;
        order: -2;
    }
    
    .help-rating {
        justify-content: center;
        margin-bottom: 2px;
        order: -1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .stars-img {
        height: 45px;
        margin-bottom: 4px;
    }
    
    .rating-stars {
        height: 12px;
        margin-bottom: 4px;
    }
    
    .calls-handled {
        font-size: 14px;
        font-weight: 400;
        color: rgba(21, 31, 57, 0.6);
        text-decoration: underline;
        display: block;
        margin-bottom: 12px;
        order: -1;
        margin-top: 0;
    }
    
    .help-info {
        display: flex;
        flex-direction: column;
    }
    
    .help-phone-container {
        background: white;
        border: 1px solid #E3E7EE;
        padding: 12px;
        border-radius: 12px;
    }
    
    .phone-number {
        font-size: 18px;
        font-weight: 600;
        color: rgba(21, 31, 57, 0.8);
    }
    
    /* Footer responsive */
    .footer {
        padding: 50px 0 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
        margin-right: 15px;
        padding: 0 20px;
    }
    
    .footer-left {
        order: 1;
        text-align: left;
    }
    
    .footer-left .logo {
        margin-bottom: 20px;
    }
    
    .footer-copyright {
        margin-bottom: 20px;
    }
    
    .footer-badges {
        justify-content: flex-start;
        gap: 15px;
    }
    
    .footer-center {
        order: 2;
        padding: 0;
        text-align: left;
    }
    
    .footer-description {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
        color: rgba(21, 31, 57, 0.6);
        margin-bottom: 30px;
    }
    
    .footer-right {
        order: 3;
        text-align: left;
    }
    
    .footer-right h4 {
        font-size: 18px;
        font-weight: 600;
        color: #151F39;
        margin-bottom: 20px;
    }
    
    .footer-right ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .footer-right li {
        margin-bottom: 0;
    }
    
    .footer-right a {
        font-size: 14px;
        color: rgba(21, 31, 57, 0.6);
        text-decoration: none;
    }
    
    .badge-img {
        width: 120px;
        height: auto;
    }
}

/* Mobiles moyens */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Header mobile */
    .top-banner {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .banner-content {
        padding: 0 12px;
        gap: 6px;
    }
    
    .attention-icon {
        width: 16px;
        height: 18px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo-img {
        height: 32px;
    }
    
    /* Hero mobile */
    .hero {
        padding: 0 8px;
        margin-bottom: 25px;
    }
    
    .stars {
        margin-bottom: 6px;
    }
    
    .stars-img {
        height: 45px;
    }
    
    .hero-car-icon {
        width: 45px;
        margin-top: 3px;
    }
    
    .subtitle {
        display: none;
    }
    
    .main-title {
        font-size: 38px;
        margin-bottom: 10px;
        line-height: 1.1;
        font-weight: 600;
        font-family: 'Manrope', sans-serif;
    }
    
    .main-title.mobile-format {
        white-space: pre-line;
    }
    
    .highlight, .savings {
        display: none;
    }
    
    .hero-description {
        font-size: 14px;
        padding: 0 8px;
    }
    
    /* Form mobile */
    .form-section {
        padding: 16px 12px;
        margin: 0 8px 25px;
    }
    
    .form-title {
        font-size: 24px;
        margin-bottom: 18px;
        line-height: 1.3;
    }
    
    .form-container {
        background: transparent;
        border: none;
        padding: 18px;
        border-radius: 14px;
    }
    
    .form-stats {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    
    .stat-item {
        font-size: 12px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
  .age-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0; /* Pas de padding */
        justify-items: stretch;
        margin: 0 auto;
        width: 100%;
    }
    
    .age-btn {
        padding: 30px 20px;
        font-size: 22px;
        min-height: 80px;
        border-radius: 10px;
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    /* Success message mobile */
    .success-message {
        padding: 24px;
        border-radius: 12px;
    }
    
    .success-icon {
        font-size: 40px;
    }
    
    .success-message h3 {
        font-size: 20px;
    }
    
    .success-message p {
        font-size: 14px;
    }
    
    /* Help mobile */
    .help-container {
        background: transparent;
        border: none;
        margin: 0 8px;
        padding: 16px;
        border-radius: 14px;
        text-align: center;
    }
    
    .help-header {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
    }
    
    .avatar-img {
        width: 70px;
        height: 70px;
    }
    
    .help-info {
        text-align: center;
    }
    
    .help-title {
        font-size: 24px;
        font-weight: 600;
        color: rgba(21, 31, 57, 0.8);
        margin-bottom: 3px;
        font-family: 'Manrope', sans-serif;
        order: -2;
    }
    
    .help-subtitle {
        font-size: 14px;
        font-weight: 400;
        color: rgba(21, 31, 57, 0.6);
        margin-bottom: 8px;
        font-family: 'Manrope', sans-serif;
        order: -2;
    }
    
    .help-rating {
        justify-content: center;
        margin-bottom: 2px;
        order: -1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .stars-img {
        height: 40px;
        margin-bottom: 3px;
    }
    
    .rating-stars {
        height: 10px;
        margin-bottom: 3px;
    }
    
    .calls-handled {
        font-size: 12px;
        font-weight: 400;
        color: rgba(21, 31, 57, 0.6);
        text-decoration: underline;
        display: block;
        margin-bottom: 10px;
        order: -1;
        margin-top: 0;
    }
    
    .help-info {
        display: flex;
        flex-direction: column;
    }
    
    .help-phone-container {
        background: white;
        border: 1px solid #E3E7EE;
        padding: 10px;
        border-radius: 10px;
    }
    
    .phone-number {
        font-size: 16px;
        font-weight: 600;
        color: rgba(21, 31, 57, 0.8);
    }
    
    /* Footer mobile */
    .footer {
        padding: 40px 0 40px;
    }
    
    .footer-content {
        gap: 25px;
        margin-right: 12px;
        padding: 0 15px;
    }
    
    .footer-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .footer-right h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-right ul {
        gap: 12px;
    }
    
    .footer-right a {
        font-size: 13px;
    }
    
    .badge-img {
        width: 100px;
    }
    
    .footer-copyright {
        font-size: 10px;
        margin-bottom: 12px;
    }
    
    .footer-badges {
        gap: 6px;
    }
    
    .badge-img {
        width: 65px;
    }
    
    .footer-description {
        font-size: 10px;
        line-height: 1.4;
        padding: 0 5px;
    }
    
    .footer-right h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .footer-right ul {
        gap: 15px;
    }
    
    .footer-right a {
        font-size: 11px;
    }
}

/* Très petits mobiles */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header très petit mobile */
    .top-banner {
        font-size: 11px;
        padding: 5px 0;
    }
    
    .banner-content {
        padding: 0 10px;
        gap: 4px;
    }
    
    .attention-icon {
        width: 14px;
        height: 16px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    /* Hero très petit mobile */
    .hero {
        padding: 0 6px;
        margin-bottom: 20px;
    }
    
    .stars {
        margin-bottom: 4px;
    }
    
    .stars-img {
        height: 40px;
    }
    
    .hero-car-icon {
        width: 40px;
        margin-top: 2px;
    }
    
    .subtitle {
        display: none;
    }
    
    .main-title {
        font-size: 24px;
        margin-bottom: 8px;
        line-height: 1.1;
        font-weight: 600;
        font-family: 'Manrope', sans-serif;
    }
    
    .main-title.mobile-format {
        white-space: pre-line;
    }
    
    .highlight, .savings {
        display: none;
    }
    
    .hero-description {
        font-size: 13px;
        padding: 0 6px;
    }
    
    /* Form très petit mobile */
    .form-section {
        padding: 14px 10px;
        margin: 0 6px 20px;
    }
    
    .form-title {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .form-container {
        background: transparent;
        border: none;
        padding: 16px;
        border-radius: 12px;
    }
    
    .form-stats {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 18px;
    }
    
    .stat-item {
        font-size: 11px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .age-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0;
        justify-items: stretch;
        margin: 0 auto;
        width: 100%;
    }
    
    .age-btn {
        padding: 28px 15px;
        font-size: 21px;
        min-height: 75px;
        border-radius: 8px;
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    /* Help très petit mobile */
    .help-container {
        background: transparent;
        border: none;
        margin: 0 6px;
        padding: 14px;
        border-radius: 12px;
        text-align: center;
    }
    
    .help-header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .avatar-img {
        width: 60px;
        height: 60px;
    }
    
    .help-info {
        text-align: center;
    }
    
    .help-title {
        font-size: 20px;
        font-weight: 600;
        color: rgba(21, 31, 57, 0.8);
        margin-bottom: 2px;
        font-family: 'Manrope', sans-serif;
        order: -2;
    }
    
    .help-subtitle {
        font-size: 12px;
        font-weight: 400;
        color: rgba(21, 31, 57, 0.6);
        margin-bottom: 6px;
        font-family: 'Manrope', sans-serif;
        order: -2;
    }
    
    .help-rating {
        justify-content: center;
        margin-bottom: 1px;
        order: -1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .stars-img {
        height: 35px;
        margin-bottom: 2px;
    }
    
    .rating-stars {
        height: 8px;
        margin-bottom: 2px;
    }
    
    .calls-handled {
        font-size: 10px;
        font-weight: 400;
        color: rgba(21, 31, 57, 0.6);
        text-decoration: underline;
        display: block;
        margin-bottom: 8px;
        order: -1;
        margin-top: 0;
    }
    
    .help-info {
        display: flex;
        flex-direction: column;
    }
    
    .help-phone-container {
        background: white;
        border: 1px solid #E3E7EE;
        padding: 8px;
        border-radius: 8px;
    }
    
    .phone-number {
        font-size: 14px;
        font-weight: 600;
        color: rgba(21, 31, 57, 0.8);
    }
    
    /* Footer très petit mobile */
    .footer {
        padding: 35px 0 35px;
    }
    
    .footer-content {
        gap: 20px;
        margin-right: 10px;
        padding: 0 12px;
    }
    
    .footer-description {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .footer-right h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-right ul {
        gap: 10px;
    }
    
    .footer-right a {
        font-size: 12px;
    }
    
    .badge-img {
        width: 85px;
    }
    
    .footer-copyright {
        font-size: 9px;
        margin-bottom: 10px;
    }
    
    .footer-badges {
        gap: 4px;
    }
    
    .badge-img {
        width: 55px;
    }
    
    .footer-description {
        font-size: 9px;
        line-height: 1.3;
        padding: 0 3px;
    }
    
    .footer-right h4 {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .footer-right ul {
        gap: 12px;
    }
    
    .footer-right a {
        font-size: 10px;
    }
}

/* Mobiles en mode paysage */
@media (max-width: 812px) and (orientation: landscape) {
    .main-content {
        padding: 15px 0;
    }
    
    .hero {
        margin-bottom: 20px;
    }
    
    .form-section {
        margin-bottom: 25px;
    }
    
    .help-section {
        margin-bottom: 30px;
    }
    
    .footer {
        padding: 40px 0 40px;
    }
}

/* Optimisations pour les écrans tactiles */
@media (hover: none) and (pointer: coarse) {
    .age-btn {
        min-height: 75px;
        min-width: 140px;
        padding: 28px 25px;
    }
    
    .phone-btn {
        min-height: 44px;
        padding: 12px 16px;
    }
    
    .help-phone-btn {
        min-height: 44px;
        padding: 12px 16px;
    }
    
    /* Augmenter la taille des zones tactiles */
    .footer-right a {
        padding: 8px 4px;
        display: inline-block;
    }
}

/* Corrections pour les très hautes résolutions mobiles */
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
    .logo-img {
        height: 34px;
    }
    
    .stars-img {
        height: 50px;
    }
    
    .hero-car-icon {
        width: 48px;
    }
    
    .attention-icon {
        width: 18px;
        height: 20px;
    }
}

/* Styles pour la table de données dans la page Privacy Policy */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.data-table th,
.data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.data-table th {
    background-color: #0368C3;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

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

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

.data-table tr:hover {
    background-color: #e9f5ff;
}

@media (max-width: 768px) {
    .data-table {
        display: block;
        overflow-x: auto;
    }
    
    .data-table th,
    .data-table td {
        padding: 12px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .data-table th,
    .data-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
}