.toggle-container {
    width: 100%;
    border-bottom: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px 10px 10px 0px;
    position: relative;
}

.toggle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 16px;
    color: var(--color-accent-terracotta);
}

.arrow.rotate {
    transform: rotate(180deg);
}

.toggle-content {
    display: none;
    margin-top: 10px;
    color: #333;
}