body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.accordion {
    width: 100%;
    max-width: 600px;
    margin: 50px auto;
}

.accordion-item {
    background-color: #ff0000; /* Kırmızı zemin */
    border: 1px solid #ccc;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 15px;
    text-align: left;
    background-color: #ff0000; /* Kırmızı zemin */
    color: white; /* Beyaz yazı */
    font-weight: bold; /* Kalın yazı */
    border: none;
    cursor: pointer;
    outline: none;
    font-size: 16px;
}

.accordion-header:hover {
    background-color: #cc0000; /* Hover durumunda biraz daha koyu kırmızı */
}

.accordion-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
    color: #333;
}

.accordion-content p {
    margin: 15px 0;
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* İçeriğin maksimum yüksekliği */
}