.hero-section {
    position: relative;
    min-height: 500px;
    background-color: #000;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-question {
    position: relative;
    padding-right: 40px;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }
}

/* WYSIWYG içeriği için stiller */
.prose {
    max-width: none;
}

.prose p {
    margin-bottom: 1.5em;
}

.prose br {
    display: block;
    content: "";
    margin-top: 1em;
}

/* Hero title için beyaz renk */
.hero-section h1 {
    color: #ffffff;
}

.hero-section p {
    color: #ffffff;
} 