body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to the top */
    min-height: 100vh;
}

.poster-container {
    width: 800px; /* Adjust as needed for poster size */
    background-color: #5d0f62; /* Dark purple background */
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden; /* To contain elements like the illustration */
}

/* Header Section */
.poster-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.poster-header h1 {
    font-size: 2em;
    margin-bottom: 10px;
    line-height: 1.2;
}

.disappearance-section {
    background-color: #f7931e; /* Orange background */
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
}

.disappearance-section h2 {
    font-size: 2.5em;
    margin: 0;
    color: white;
    font-weight: bold;
}

.inmujer-logo {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px; /* Adjust size as needed */
    height: auto;
}

/* Victim Definition Section */
.victim-definition {
    background-color: #7b2c80; /* Slightly lighter purple */
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.victim-definition .label {
    background-color: white;
    color: #5d0f62;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 15px;
    font-size: 1.1em;
    white-space: nowrap; /* Prevent "Víctima" from wrapping */
}

.victim-definition p {
    margin: 0;
    font-size: 1em;
    line-height: 1.4;
}

/* Rights Section */
.rights-section h2 {
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 20px;
    color: #f7931e; /* Orange for title */
}

.rights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to next line */
    justify-content: space-between; /* Distributes items horizontally */
}

.rights-list li {
    background-color: #7b2c80; /* Slightly lighter purple */
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95em;
    line-height: 1.4;
    width: 48%; /* Roughly half width for two columns */
    box-sizing: border-box; /* Include padding in width */
}

.rights-list li img {
    width: 30px; /* Size of the icon */
    height: 30px;
    margin-right: 15px;
    flex-shrink: 0; /* Prevent icon from shrinking */
    /* Background for placeholder icons */
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.illustration-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    background-color: #7b2c80; /* Background for this specific part */
    border-radius: 8px;
    padding: 20px;
}

.main-illustration {
    width: 40%; /* Adjust size of the illustration */
    height: auto;
    display: block;
    margin-right: 20px;
    /* Placeholder background for the illustration */
    background-color:a;
    min-height: 200px; /* To make placeholder visible */
}

.additional-right {
    width: 55%; /* Adjust width for the text next to illustration */
    font-size: 1em;
    line-height: 1.5;
    background-color: #924596; /* A different shade for this text box */
    padding: 15px;
    border-radius: 8px;
}

/* Contact Section */
.contact-section {
    margin-top: 30px;
    text-align: center;
}

.contact-section h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: #f7931e; /* Orange for title */
}

.phone-numbers {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.phone-group {
    background-color: #7b2c80; /* Slightly lighter purple */
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    flex: 1; /* Allows groups to grow and shrink */
    min-width: 200px; /* Minimum width for each phone group */
}

.phone-group .label {
    font-size: 0.8em;
    margin-bottom: 5px;
    line-height: 1.3;
}

.phone-group .number {
    font-size: 1.8em;
    font-weight: bold;
    color: #f7931e; /* Orange for numbers */
    margin: 5px 0;
}

.phone-group .extension {
    font-size: 0.9em;
}

.phone-group.emergency {
    background-color: #d9534f; /* Red for emergency */
}

.phone-group.emergency .number {
    color: white; /* White for emergency number */
}

.additional-contacts {
    text-align: left;
    background-color: #7b2c80;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.additional-contacts p {
    margin: 5px 0;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.additional-contacts .small-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    /* Placeholder background for small icons */
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

/* Footer Section */
.poster-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-logo {
    width: 100px; /* Adjust size of logos */
    height: auto;
    filter: brightness(1.2); /* Slightly brightens logos if they are dark */
    /* Placeholder background for logos */
    background-color: rgba(255, 255, 255, 0.3);
    min-height: 50px;
}
