
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #7a0d81;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

li{
    color: white;
}

.poster-container {
    width: 650px; /* Adjust as needed for poster size */
    background-color: #5d0f62; /* White background for the main poster */
    color: #333; /* Dark gray text */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Header Section */
.poster-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.poster-header h1 {
    font-size: 2em;
    line-height: 1.1;
    margin: 0;
    color: #5d0f62; /* Dark purple */
    font-weight: bold;
    text-transform: uppercase;
}

.poster-header h1:first-line {
    color: #f7931e; /* Orange for "IDENTIFICA Y EVITA LAS" */
}

.inmujer-logo-header {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px; /* Adjust size as needed */
    height: auto;
}

/* Content Section (Two Columns) */
.content-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.text-column {
    flex: 2; /* Takes up more space */
    text-align: left;
}

.violence-type {
    margin-bottom: 20px;
}

.violence-type h2 {
    font-size: 1.2em;
    color: #f7931e; /* Orange for violence types */
    margin-bottom: 8px;
    border-bottom: 2px solid #f7931e;
    padding-bottom: 5px;
    display: inline-block;
}

.violence-type ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.violence-type li {
    font-size: 0.95em;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.violence-type li::before {
    content: '•'; /* Bullet point */
    color: #5d0f62; /* Dark purple bullet */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

.illustration-column {
    flex: 1; /* Takes up less space */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.illustration-column img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    /* Placeholder background for illustration */
    background-color: #ccc;
    min-height: 250px; /* To make placeholder visible */
    object-fit: contain;
}

.denuncia-box {
    background-color: #ed217c; /* Pink background */
    color: white;
    padding: 15px 10px;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    width: 90%; /* Adjust width to fit */
    box-sizing: border-box;
}

/* Hashtag */
.hashtag {
    background-color: #f7931e; /* Orange background */
    color: white;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    width: fit-content; /* Adjust width to content */
    margin-left: auto;
    margin-right: auto;
    display: block; /* Center the block element */
}

/* Contact Info Section */
.contact-info {
    text-align: center;
    margin-bottom: 25px;
    background-color: #b7e0e7; /* Light blue background */
    padding: 15px;
    border-radius: 10px;
    color: #555;
}

.contact-info p {
    margin: 8px 0;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping for long lines */
}

.contact-info p span {
    display: flex;
    align-items: center;
    margin-right: 5px; /* Space between icon and text */
}

.contact-info img {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    /* Placeholder background for icons */
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.contact-info .separator {
    margin: 0 10px;
    color: rgba(0, 0, 0, 0.3);
}

/* Footer Section */
.poster-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-logo {
    width: 90px; /* Adjust size of logos */
    height: auto;
    filter: brightness(0.7); /* Make logos a bit darker */
    /* Placeholder background for logos */
    background-color: rgba(0, 0, 0, 0.1);
    min-height: 40px;
    object-fit: contain;
}