/* ==========================================
   SERVME - PAGES PUBLIC DESKTOP LEGAL
   Legal pages desktop - DESKTOP uniquement
   Extrait de legal-pages.css (hors @media mobile)
   ========================================== */

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    font-family: var(--font-family) !important;
}

body {
    /* font-family hérite de design-system.css via var(--font-family) */
    line-height: 1.6;
    color: #222;
    background: #ffffff;
    min-height: 100vh;
    padding: 0;
}

/* Hero styles moved to sections/desktop/hero-pages.css */

/* Header styles moved to layout/desktop/header.css */

.contact-logo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: white;
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1.2;
}

.contact-cta {
    display: flex;
    gap: 16px;
}

.contact-btn {
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.contact-btn-primary {
    background: white;
    color: #FF385C;
}

.contact-btn-primary:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.contact-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Container principal */
.contact-main {
    padding: 0;
    margin: 0;
}

.contact-container {
    max-width: 800px;
    margin: -80px auto 4rem;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 10;
}

.contact-container h1 {
    color: #222;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #222222;
}

.contact-container h2:first-of-type {
    margin-top: 0;
}

.contact-container p {
    line-height: 1.6;
    color: #666666;
    margin-bottom: 1rem;
}

.contact-container section {
    margin-bottom: 3rem;
}

.contact-container a {
    color: #FF385C;
    text-decoration: none;
}

.contact-container a:hover {
    text-decoration: underline;
}

/* S'assurer que le footer a de l'espace */
.servme-footer {
    margin-top: 2rem !important;
}

