@page {
    size: A4;
    margin: 2.5cm;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #222;
    font-size: 12pt;
    line-height: 1.6;
}

/* HEADER */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    color: #1f7a1f;
    font-size: 26pt;
    margin-bottom: 5px;
}

.header h2 {
    font-size: 16pt;
    font-weight: normal;
    margin-top: 0;
    color: #555;
}
.header .logo {
    max-width: 120px;
    margin-bottom: 12px;
}

/* CONTENT */
.section {
    margin-bottom: 30px;
}

.box {
    border-left: 6px solid #1f7a1f;
    background: #f4fbf4;
    padding: 18px 22px;
    border-radius: 6px;
}

/* SIGNATURE */
.signature {
    margin-top: 60px;
}

.signature-row {
    margin-bottom: 25px;
}

.label {
    display: inline-block;
    width: 130px;
    font-weight: 600;
}

.line {
    display: inline-block;
    width: 300px;
    border-bottom: 1px solid #000;
}

/* FOOTER */
.footer {
    position: fixed;
    bottom: 2cm;
    left: 2.5cm;
    right: 2.5cm;
    font-size: 9pt;
    color: #777;
    text-align: center;
}

@media (max-width: 520px) {
    .signature-row {
        display: flex;
        align-items: flex-end;
        gap: 12px;
    }

    .label {
        width: 110px;
        flex: 0 0 110px;
    }

    .line {
        width: auto;
        flex: 1 1 auto;
    }
}

/* PRINT */
@media print {
    .no-print {
        display: none;
    }
}
