.section-title-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.unidrama-content-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

/* --- FAQ Accordion Styles --- */
.faq-container {
    text-align: left;
    margin-bottom: 60px;
}

.faq-item {
    background-color: #e6e6e6;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.faq-item[open] {
    background-color: #fdd835;
}

.faq-question {
    font-size: 1.1em;
    font-weight: 900;
    padding: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '';
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    background-image: url('/resources/images/unidrama/arrow_down.png');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 60px 20px 20px; 
    line-height: 1.6;
    color: #333;
    font-weight: 500;
}

.contact-title {
    font-weight: 900;
    font-size: 1.4em;
    margin-bottom: 20px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    border: none;
    background-color: #f0f0f0;
    border-radius: 12px;
    font-size: 1em;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
    margin-bottom: 20px;
}

.contact-form button {
    width: 100%;
    padding: 18px;
    border: none;
    background-color: #ff007f;
    color: white;
    font-size: 1.2em;
    font-weight: 900;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.contact-form button:hover {
    background-color: #e60072;
}

@media (max-width: 768px) {
    .unidrama-content-wrapper {
        margin: 20px auto;
        padding: 0 10px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
}