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

body {
    background: #ececec;
    font-family: Arial, Helvetica, sans-serif;
    color: #2f2f2f;
}

.document-actions {
    width: 100%;
    padding: 8px 0 22px;
}

.action-header {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #556f44, #435d35);
    padding: 10px 18px;
    border-radius: 0 0 0 20px;
    width: fit-content;
}

.logo img,
.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1;
}

.logo a,
.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.action-btn {
    background: #5b1486;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.action-btn:hover {
    background: #4c0f6f;
}

header,
.document-header {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 20px;
    text-align: center;
}

header h1,
.document-header h1 {
    color: #35158a;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 8px;
}

header h2,
.document-header h2 {
    color: #35158a;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

/* CONTENU BIEN CENTRÉ */
main,
.document-content {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.section-separator {
    width: 100%;
    height: 2px;
    background: #6a2296;
    margin: 34px 0 28px;
}

section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 30px;
}

section h2,
section h3 {
    position: relative;
    color: #35158a;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    padding-left: 14px;
}

section h2::before,
section h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 4px;
    height: 32px;
    background: #e15ce4;
    border-radius: 2px;
}

p,
li {
    font-size: 16px;
    line-height: 1.7;
    color: #2f2f2f;
}

p {
    margin-bottom: 14px;
}

ul {
    margin: 8px 0 14px 30px;
}

li {
    margin-bottom: 6px;
}

strong {
    font-weight: 700;
}

a {
    color: #0b38d1;
    text-decoration: underline;
}

.signature {
    margin-top: 30px;
}