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

body {
    font-family: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #333;
}

/* Header */
header {
    background: #1a5276;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
}

header h1 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

header p {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    opacity: 0.85;
}

/* Main content */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Sections */
section {
    padding: 2.5rem 0;
    border-bottom: 1px solid #e8e8e8;
}

section:last-child {
    border-bottom: none;
}

section h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a5276;
    margin-bottom: 0.8rem;
}

section p {
    font-size: 1.05rem;
    color: #555;
}

/* Bouton Doctolib */
.rdv a {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.7rem 1.5rem;
    background: #107ACA;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s;
}

.rdv a:hover {
    background: #0b5ea0;
}

/* Contact */
.contact a {
    color: #1a5276;
    text-decoration: none;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #f5f5f5;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
    color: #888;
}
