/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 12px;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 420px; /* A5 width in pixels */
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 16px;
}

.cause-area {
    margin-bottom: 40px;
}

.cause-area img {
    width: 50%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

h2 {
    font-size: 12px;
    margin-bottom: 10px;
}

.famous-people {
    margin-bottom: 40px;
}

.famous-people h2 {
    font-size: 12px;
    margin-bottom: 10px;
}

.famous-people-images {
    display: flex;
    justify-content: space-between;
}

.famous-people figure {
    width: 30%;
    text-align: center;
}

.famous-people img {
    width: 100%;
    height: auto;
    border-radius: 50%; /* Add this line to make the images circular */
}

.famous-people figcaption {
    font-size: 10px;
    margin-top: 5px;
}


.successful-interventions {
    margin-top: 20px;
    margin-bottom: 40px;
}

.successful-interventions h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.successful-interventions ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
}

.successful-interventions li {
    margin-left: 10px; /* Add this line to enforce a minimal horizontal space on the left */
    margin-right: 10px; /* Add this line to enforce a minimal horizontal space on the right */
    margin-bottom: 15px;
}

.successful-interventions h3 {
    font-size: 12px;
    margin-bottom: 5px;
}

/* Print styles */
@media print {
    @page {
        size: A6;
        margin: 10mm;
    }

    body {
        max-width: 100%;
    }

    .successful-interventions {
        break-before: page;
    }
}
