 /* --- PNEUPRO UTILITY PAGES GLOBAL STYLES --- */
/* For: Mentions Légales, Livraison, Modes de paiement, Garantie, Politique de Retour */

:root {
    --pneu-blue: #2B70FF;
    --pneu-dark: #1F2937;
    --pneu-muted: #6B7280;
    --border-gray: #E5E7EB;
    --bg-subtle: #F9FAFB;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color: var(--pneu-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.policy-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 24px;
}

.policy-header {
    text-align: center;
    margin-bottom: 80px;
}

.policy-header h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.update-tag {
    font-size: 13px;
    color: var(--pneu-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--pneu-blue);
    margin: 32px auto 0;
    border-radius: 2px;
}

.policy-section {
    margin-bottom: 64px;
}

.section-label {
    color: var(--pneu-blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    display: block;
}

.policy-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.policy-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4B5563;
}

.check-list {
    list-style: none;
    margin: 24px 0;
    background: var(--bg-subtle);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pneu-blue);
    font-weight: 900;
}

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

.grid-item {
    background: var(--bg-subtle);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
}

.grid-item strong {
    display: block;
    color: var(--pneu-blue);
    margin-bottom: 5px;
}

.help-card {
    background: var(--pneu-dark);
    color: white;
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    margin-top: 80px;
}

.help-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.help-card p {
    color: #9CA3AF;
    margin-bottom: 24px;
}

.contact-btn {
    display: inline-block;
    background: var(--pneu-blue);
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(43, 112, 255, 0.2);
}

@media (max-width: 640px) {
    .policy-container {
        margin: 60px auto;
    }
    .policy-header h1 {
        font-size: 32px;
    }
    .help-card {
        padding: 32px 20px;
    }
}
