:root {
    --button: #2ddb9e;
    --button-hover: #26ab8e;
    --light-blue: #eff6ff;
    --dark-gray: #1f2937;
    --medium-gray: #4b5563;
    --light-gray: #f3f6f5;
    --border-gray: #e5e7eb;
    --success-green: #059669;
    --error-red: #dc2626;
    --question: #bba5ff; 
    --question-hover: #a385fc; 
    --answer: #fad4fa; 
    --background: ;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-gray);
}

.faq-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h1 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.125rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-gray);
    overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
    .faq-item {
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }
}

.faq-question {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-gray);
    background: var(--question);
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
}

.faq-question:hover {
    background-color: var(--question-hover);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-left: 1rem;
}

@media (prefers-reduced-motion: no-preference) {
    .faq-icon {
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: var(--answer);
}

@media (prefers-reduced-motion: no-preference) {
    .faq-answer {
        transition: max-height 0.4s ease;
    }
}

.faq-answer-content {
    margin-top: 10px;
    padding: 0 1.25rem 1.25rem;
    color: var(--medium-gray);
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-top: 0.75rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.contact-section {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    background: #fffdb4;
    border-radius: 1rem;
    border: 1px solid var(--border-gray);
}

.contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.contact-section p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.contact-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--button);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
}

@media (prefers-reduced-motion: no-preference) {
    .contact-button {
        transition: background-color 0.3s ease;
    }
}

.contact-button:hover {
    background-color: var(--button-hover);
}

@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1rem;
    }
}


/* Poster Gallery */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.poster-gallery {
    padding: 4rem 0;
}

.poster-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.poster-card {
    flex: 1;
    max-width: 350px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.poster-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: white;
}

.poster-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    color: white;
}

@media (prefers-reduced-motion: no-preference) {
    .poster-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .poster-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }
}

.poster-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.poster-lightbox.active {
    display: flex;
}

.poster-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    cursor: default;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #5dcfb1;
}

@media screen and (max-width: 768px) {
    .poster-cards {
        flex-direction: column;
        align-items: center;
    }
    .poster-card {
        max-width: 100%;
        width: 100%;
    }
}